Mercurial > hgrepos > Python > libs > pygments-lexer-pseudocode2
comparison pygments_lexer_pseudocode2/__init__.py @ 24:f13f5ddafcf6
WS
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Tue, 21 Apr 2026 00:53:27 +0200 |
| parents | bb2fd6d4ad69 |
| children | 4a33ec6f476a |
comparison
equal
deleted
inserted
replaced
| 23:bb2fd6d4ad69 | 24:f13f5ddafcf6 |
|---|---|
| 78 include('core'), | 78 include('core'), |
| 79 (r'[a-zéàùçèÉÀÙÇÈ][a-z0-9éàùçèÉÀÙÇÈ_]*', Name.Variable), | 79 (r'[a-zéàùçèÉÀÙÇÈ][a-z0-9éàùçèÉÀÙÇÈ_]*', Name.Variable), |
| 80 include('numbers'), | 80 include('numbers'), |
| 81 (r'[\s]+', Text) | 81 (r'[\s]+', Text) |
| 82 ], | 82 ], |
| 83 'core':[ # Statements | 83 'core': [ # Statements |
| 84 (r'\b(debut|début|fin|si|alors|sinon|fin[_ ]si|tant[ _]que|tantque|fin[ _]tantque|faire|répéter' | 84 (r'\b(debut|début|fin|si|alors|sinon|fin[_ ]si|tant[ _]que|tantque|fin[ _]tantque|faire|répéter' |
| 85 r'repeter|type|structure|fin[ _]structure|fonction|procédure|procedure|retourner|renvoyer|' | 85 r'repeter|type|structure|fin[ _]structure|fonction|procédure|procedure|retourner|renvoyer|' |
| 86 r'pour|fin[ _]pour|à|déclarations?|juqsque|spécialise|specialise|comporte|super|public|privé|protégé|' | 86 r'pour|fin[ _]pour|à|déclarations?|juqsque|spécialise|specialise|comporte|super|public|privé|protégé|' |
| 87 r'classe' | 87 r'classe' |
| 88 r')\s*\b', Keyword), | 88 r')\s*\b', Keyword), |
