diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2025-04-23 15:59:22 +0100 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2025-04-23 15:59:22 +0100 |
commit | 4353f331b5ab4af157f576f54b1cc79dd08abb12 (patch) | |
tree | 2a8a9314e27bb1ed185ee5bee40ac5b0062f46da /lexer.py | |
parent | a2afd4b08dc2b7eada2f95ee95457457a3331344 (diff) |
Current state of affairs.
Diffstat (limited to 'lexer.py')
-rw-r--r-- | lexer.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,9 +7,9 @@ from pathlib import Path class SystemTLexer(OcamlLexer): name = 'System T' aliases = ['syst'] - filenames = ['*.syst'] # just to have one if you whant to use + filenames = ['*.syst'] - EXTRA_KEYWORDS = ['primrec', 'prl', 'prr', 'fold'] + EXTRA_KEYWORDS = ['primrec', 'fold', 'foldmatch', 'roll'] def get_tokens_unprocessed(self, text): for index, token, value in OcamlLexer.get_tokens_unprocessed(self, text): |