-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathmaxima_lexer.py
70 lines (62 loc) · 2.14 KB
/
maxima_lexer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# -*- coding: utf-8 -*-
"""
maxima_lexer
~~~~~~~~~~~~~~~~~~~~~~~
Lexer for the computer algebra system Maxima.
Derived from pygments/lexers/algebra.py.
"""
import re
from pygments.lexer import RegexLexer, bygroups, words
from pygments.token import Text, Comment, Operator, Keyword, Name, String, \
Number, Punctuation
__all__ = ['MaximaLexer']
class MaximaLexer(RegexLexer):
"""
A `Maxima <http://maxima.sourceforge.net>`_ lexer.
Derived from pygments.lexers.MuPADLexer.
"""
name = 'Maxima'
aliases = ['maxima', 'macsyma']
filenames = ['*.mac', '*.max']
terminated = r'(?=[ "()\'\n,;`])' # whitespace or terminating macro characters
tokens = {
'root': [
(r'/\*', Comment.Multiline, 'comment'),
(r'"(?:[^"\\]|\\.)*"', String),
(r'\(|\)|\[|\]|\{|\}', Punctuation),
(r'''(?x)\b(?:
if|then|else|elseif|
do|while|
repeat|until|
for|from|to|downto|step|thru
)\b''', Keyword),
(r'''(?x)\b(?:
%pi|%e|%phi|%gamma|%i|
und|ind|infinity|inf|minf|
true|false|unknown
)\b''',
Name.Constant),
(r'\.|:|=|#|\+|-|\*|/|\^|@|>|<|\||!|\'|~=', Operator),
(r'''(?x)\b(?:
and|or|not
)\b''',
Operator.Word),
(r'''(?x)
((?:[a-zA-Z_#][\w#]*|`[^`]*`)
(?:::[a-zA-Z_#][\w#]*|`[^`]*`)*)(\s*)([(])''',
bygroups(Name.Function, Text, Punctuation)),
(r'''(?x)
(?:[a-zA-Z_#%][\w#%]*|`[^`]*`)
(?:::[a-zA-Z_#%][\w#%]*|`[^`]*`)*''', Name.Variable),
(r'[-+]?\d+\.?' + terminated, Number.Integer),
(r'[-+]?(\d*\.\d+([bdefls][-+]?\d+)?|\d+(\.\d*)?[bdefls][-+]?\d+)'
+ terminated, Number.Float),
(r'.', Text)
],
'comment': [
(r'[^*/]', Comment.Multiline),
(r'/\*', Comment.Multiline, '#push'),
(r'\*/', Comment.Multiline, '#pop'),
(r'[*/]', Comment.Multiline)
]
}