aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/Pygments/py3/pygments/lexers/unicon.py
blob: 5d5b52de1d4c1ddbe704a61c3fc9f034a2fd0a52 (plain) (blame)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
""" 
    pygments.lexers.unicon 
    ~~~~~~~~~~~~~~~~~~~~~~ 
 
    Lexers for the Icon and Unicon languages, including ucode VM. 
 
    :copyright: Copyright 2006-2021 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details. 
""" 
 
import re 
 
from pygments.lexer import RegexLexer, include, bygroups, words, using, this 
from pygments.token import Text, Comment, Operator, Keyword, Name, String, \ 
    Number, Punctuation 
 
__all__ = ['IconLexer', 'UcodeLexer', 'UniconLexer'] 
 
 
class UniconLexer(RegexLexer): 
    """ 
    For Unicon source code. 
 
    .. versionadded:: 2.4 
    """ 
 
    name = 'Unicon' 
    aliases = ['unicon'] 
    filenames = ['*.icn'] 
    mimetypes = ['text/unicon'] 
 
    flags = re.MULTILINE 
 
    tokens = { 
        'root': [ 
            (r'[^\S\n]+', Text), 
            (r'#.*?\n', Comment.Single), 
            (r'[^\S\n]+', Text), 
            (r'class|method|procedure', Keyword.Declaration, 'subprogram'), 
            (r'(record)(\s+)(\w+)', 
             bygroups(Keyword.Declaration, Text, Keyword.Type), 'type_def'), 
            (r'(#line|\$C|\$Cend|\$define|\$else|\$endif|\$error|\$ifdef|' 
             r'\$ifndef|\$include|\$line|\$undef)\b', Keyword.PreProc), 
            (r'(&null|&fail)\b', Keyword.Constant), 
            (r'&allocated|&ascii|&clock|&collections|&column|&col|&control|' 
             r'&cset|&current|&dateline|&date|&digits|&dump|' 
             r'&errno|&errornumber|&errortext|&errorvalue|&error|&errout|' 
             r'&eventcode|&eventvalue|&eventsource|&e|' 
             r'&features|&file|&host|&input|&interval|&lcase|&letters|' 
             r'&level|&line|&ldrag|&lpress|&lrelease|' 
             r'&main|&mdrag|&meta|&mpress|&mrelease|&now|&output|' 
             r'&phi|&pick|&pi|&pos|&progname|' 
             r'&random|&rdrag|&regions|&resize|&row|&rpress|&rrelease|' 
             r'&shift|&source|&storage|&subject|' 
             r'&time|&trace|&ucase|&version|' 
             r'&window|&x|&y', Keyword.Reserved), 
            (r'(by|of|not|to)\b', Keyword.Reserved), 
            (r'(global|local|static|abstract)\b', Keyword.Reserved), 
            (r'package|link|import', Keyword.Declaration), 
            (words(( 
                'break', 'case', 'create', 'critical', 'default', 'end', 'all', 
                'do', 'else', 'every', 'fail', 'if', 'import', 'initial', 
                'initially', 'invocable', 'next', 
                'repeat', 'return', 'suspend', 
                'then', 'thread', 'until', 'while'), prefix=r'\b', suffix=r'\b'), 
             Keyword.Reserved), 
            (words(( 
                'Abort', 'abs', 'acos', 'Active', 'Alert', 'any', 'Any', 'Arb', 
                'Arbno', 'args', 'array', 'asin', 'atan', 'atanh', 'Attrib', 
                'Bal', 'bal', 'Bg', 'Break', 'Breakx', 
                'callout', 'center', 'char', 'chdir', 'chmod', 'chown', 'chroot', 
                'classname', 'Clip', 'Clone', 'close', 'cofail', 'collect', 
                'Color', 'ColorValue', 'condvar', 'constructor', 'copy', 
                'CopyArea', 'cos', 'Couple', 'crypt', 'cset', 'ctime', 
                'dbcolumns', 'dbdriver', 'dbkeys', 'dblimits', 'dbproduct', 
                'dbtables', 'delay', 'delete', 'detab', 'display', 'DrawArc', 
                'DrawCircle', 'DrawCube', 'DrawCurve', 'DrawCylinder', 
                'DrawDisk', 'DrawImage', 'DrawLine', 'DrawPoint', 'DrawPolygon', 
                'DrawRectangle', 'DrawSegment', 'DrawSphere', 'DrawString', 
                'DrawTorus', 'dtor', 
                'entab', 'EraseArea', 'errorclear', 'Event', 'eventmask', 
                'EvGet', 'EvSend', 'exec', 'exit', 'exp', 'Eye', 
                'Fail', 'fcntl', 'fdup', 'Fence', 'fetch', 'Fg', 'fieldnames', 
                'filepair', 'FillArc', 'FillCircle', 'FillPolygon', 
                'FillRectangle', 'find', 'flock', 'flush', 'Font', 'fork', 
                'FreeColor', 'FreeSpace', 'function', 
                'get', 'getch', 'getche', 'getegid', 'getenv', 'geteuid', 
                'getgid', 'getgr', 'gethost', 'getpgrp', 'getpid', 'getppid', 
                'getpw', 'getrusage', 'getserv', 'GetSpace', 'gettimeofday', 
                'getuid', 'globalnames', 'GotoRC', 'GotoXY', 'gtime', 'hardlink', 
                'iand', 'icom', 'IdentityMatrix', 'image', 'InPort', 'insert', 
                'Int86', 'integer', 'ioctl', 'ior', 'ishift', 'istate', 'ixor', 
                'kbhit', 'key', 'keyword', 'kill', 
                'left', 'Len', 'list', 'load', 'loadfunc', 'localnames', 
                'lock', 'log', 'Lower', 'lstat', 
                'many', 'map', 'match', 'MatrixMode', 'max', 'member', 
                'membernames', 'methodnames', 'methods', 'min', 'mkdir', 'move', 
                'MultMatrix', 'mutex', 
                'name', 'NewColor', 'Normals', 'NotAny', 'numeric', 
                'open', 'opencl', 'oprec', 'ord', 'OutPort', 
                'PaletteChars', 'PaletteColor', 'PaletteKey', 'paramnames', 
                'parent', 'Pattern', 'Peek', 'Pending', 'pipe', 'Pixel', 
                'PlayAudio', 'Poke', 'pop', 'PopMatrix', 'Pos', 'pos', 
                'proc', 'pull', 'push', 'PushMatrix', 'PushRotate', 'PushScale', 
                'PushTranslate', 'put', 
                'QueryPointer', 
                'Raise', 'read', 'ReadImage', 'readlink', 'reads', 'ready', 
                'real', 'receive', 'Refresh', 'Rem', 'remove', 'rename', 
                'repl', 'reverse', 'right', 'rmdir', 'Rotate', 'Rpos', 
                'Rtab', 'rtod', 'runerr', 
                'save', 'Scale', 'seek', 'select', 'send', 'seq', 
                'serial', 'set', 'setenv', 'setgid', 'setgrent', 
                'sethostent', 'setpgrp', 'setpwent', 'setservent', 
                'setuid', 'signal', 'sin', 'sort', 'sortf', 'Span', 
                'spawn', 'sql', 'sqrt', 'stat', 'staticnames', 'stop', 
                'StopAudio', 'string', 'structure', 'Succeed', 'Swi', 
                'symlink', 'sys_errstr', 'system', 'syswrite', 
                'Tab', 'tab', 'table', 'tan', 
                'Texcoord', 'Texture', 'TextWidth', 'Translate', 
                'trap', 'trim', 'truncate', 'trylock', 'type', 
                'umask', 'Uncouple', 'unlock', 'upto', 'utime', 
                'variable', 'VAttrib', 
                'wait', 'WAttrib', 'WDefault', 'WFlush', 'where', 
                'WinAssociate', 'WinButton', 'WinColorDialog', 'WindowContents', 
                'WinEditRegion', 'WinFontDialog', 'WinMenuBar', 'WinOpenDialog', 
                'WinPlayMedia', 'WinSaveDialog', 'WinScrollBar', 'WinSelectDialog', 
                'write', 'WriteImage', 'writes', 'WSection', 
                'WSync'), prefix=r'\b', suffix=r'\b'), 
             Name.Function), 
            include('numbers'), 
            (r'<@|<<@|>@|>>@|\.>|->|===|~===|\*\*|\+\+|--|\.|~==|~=|<=|>=|==|'
             r'=|<<=|<<|>>=|>>|:=:|:=|->|<->|\+:=|\|', Operator),
            (r'"(?:[^\\"]|\\.)*"', String), 
            (r"'(?:[^\\']|\\.)*'", String.Character), 
            (r'[*<>+=/&!?@~\\-]', Operator), 
            (r'\^', Operator), 
            (r'(\w+)(\s*|[(,])', bygroups(Name, using(this))), 
            (r"[\[\]]", Punctuation),
            (r"<>|=>|[()|:;,.'`{}%&?]", Punctuation),
            (r'\n+', Text), 
        ], 
        'numbers': [ 
            (r'\b([+-]?([2-9]|[12][0-9]|3[0-6])[rR][0-9a-zA-Z]+)\b', Number.Hex), 
            (r'[+-]?[0-9]*\.([0-9]*)([Ee][+-]?[0-9]*)?', Number.Float), 
            (r'\b([+-]?[0-9]+[KMGTPkmgtp]?)\b', Number.Integer), 
        ], 
        'subprogram': [ 
            (r'\(', Punctuation, ('#pop', 'formal_part')), 
            (r';', Punctuation, '#pop'), 
            (r'"[^"]+"|\w+', Name.Function), 
            include('root'), 
        ], 
        'type_def': [ 
            (r'\(', Punctuation, 'formal_part'), 
        ], 
        'formal_part': [ 
            (r'\)', Punctuation, '#pop'), 
            (r'\w+', Name.Variable), 
            (r',', Punctuation), 
            (r'(:string|:integer|:real)\b', Keyword.Reserved), 
            include('root'), 
        ], 
    } 
 
 
class IconLexer(RegexLexer): 
    """ 
    Lexer for Icon. 
 
    .. versionadded:: 1.6 
    """ 
    name = 'Icon' 
    aliases = ['icon'] 
    filenames = ['*.icon', '*.ICON'] 
    mimetypes = [] 
    flags = re.MULTILINE 
 
    tokens = { 
        'root': [ 
            (r'[^\S\n]+', Text), 
            (r'#.*?\n', Comment.Single), 
            (r'[^\S\n]+', Text), 
            (r'class|method|procedure', Keyword.Declaration, 'subprogram'), 
            (r'(record)(\s+)(\w+)', 
             bygroups(Keyword.Declaration, Text, Keyword.Type), 'type_def'), 
            (r'(#line|\$C|\$Cend|\$define|\$else|\$endif|\$error|\$ifdef|' 
             r'\$ifndef|\$include|\$line|\$undef)\b', Keyword.PreProc), 
            (r'(&null|&fail)\b', Keyword.Constant), 
            (r'&allocated|&ascii|&clock|&collections|&column|&col|&control|' 
             r'&cset|&current|&dateline|&date|&digits|&dump|' 
             r'&errno|&errornumber|&errortext|&errorvalue|&error|&errout|' 
             r'&eventcode|&eventvalue|&eventsource|&e|' 
             r'&features|&file|&host|&input|&interval|&lcase|&letters|' 
             r'&level|&line|&ldrag|&lpress|&lrelease|' 
             r'&main|&mdrag|&meta|&mpress|&mrelease|&now|&output|' 
             r'&phi|&pick|&pi|&pos|&progname|' 
             r'&random|&rdrag|&regions|&resize|&row|&rpress|&rrelease|' 
             r'&shift|&source|&storage|&subject|' 
             r'&time|&trace|&ucase|&version|' 
             r'&window|&x|&y', Keyword.Reserved), 
            (r'(by|of|not|to)\b', Keyword.Reserved), 
            (r'(global|local|static)\b', Keyword.Reserved), 
            (r'link', Keyword.Declaration), 
            (words(( 
                'break', 'case', 'create', 'default', 'end', 'all', 
                'do', 'else', 'every', 'fail', 'if', 'initial', 
                'invocable', 'next', 
                'repeat', 'return', 'suspend', 
                'then', 'until', 'while'), prefix=r'\b', suffix=r'\b'), 
             Keyword.Reserved), 
            (words(( 
                'abs', 'acos', 'Active', 'Alert', 'any', 
                'args', 'array', 'asin', 'atan', 'atanh', 'Attrib', 
                'bal', 'Bg', 
                'callout', 'center', 'char', 'chdir', 'chmod', 'chown', 'chroot', 
                'Clip', 'Clone', 'close', 'cofail', 'collect', 
                'Color', 'ColorValue', 'condvar', 'copy', 
                'CopyArea', 'cos', 'Couple', 'crypt', 'cset', 'ctime', 
                'delay', 'delete', 'detab', 'display', 'DrawArc', 
                'DrawCircle', 'DrawCube', 'DrawCurve', 'DrawCylinder', 
                'DrawDisk', 'DrawImage', 'DrawLine', 'DrawPoint', 'DrawPolygon', 
                'DrawRectangle', 'DrawSegment', 'DrawSphere', 'DrawString', 
                'DrawTorus', 'dtor', 
                'entab', 'EraseArea', 'errorclear', 'Event', 'eventmask', 
                'EvGet', 'EvSend', 'exec', 'exit', 'exp', 'Eye', 
                'fcntl', 'fdup', 'fetch', 'Fg', 'fieldnames', 
                'FillArc', 'FillCircle', 'FillPolygon', 
                'FillRectangle', 'find', 'flock', 'flush', 'Font', 
                'FreeColor', 'FreeSpace', 'function', 
                'get', 'getch', 'getche', 'getenv', 
                'GetSpace', 'gettimeofday', 
                'getuid', 'globalnames', 'GotoRC', 'GotoXY', 'gtime', 'hardlink', 
                'iand', 'icom', 'IdentityMatrix', 'image', 'InPort', 'insert', 
                'Int86', 'integer', 'ioctl', 'ior', 'ishift', 'istate', 'ixor', 
                'kbhit', 'key', 'keyword', 'kill', 
                'left', 'Len', 'list', 'load', 'loadfunc', 'localnames', 
                'lock', 'log', 'Lower', 'lstat', 
                'many', 'map', 'match', 'MatrixMode', 'max', 'member', 
                'membernames', 'methodnames', 'methods', 'min', 'mkdir', 'move', 
                'MultMatrix', 'mutex', 
                'name', 'NewColor', 'Normals', 'numeric', 
                'open', 'opencl', 'oprec', 'ord', 'OutPort', 
                'PaletteChars', 'PaletteColor', 'PaletteKey', 'paramnames', 
                'parent', 'Pattern', 'Peek', 'Pending', 'pipe', 'Pixel', 
                'Poke', 'pop', 'PopMatrix', 'Pos', 'pos', 
                'proc', 'pull', 'push', 'PushMatrix', 'PushRotate', 'PushScale', 
                'PushTranslate', 'put', 
                'QueryPointer', 
                'Raise', 'read', 'ReadImage', 'readlink', 'reads', 'ready', 
                'real', 'receive', 'Refresh', 'Rem', 'remove', 'rename', 
                'repl', 'reverse', 'right', 'rmdir', 'Rotate', 'Rpos', 
                'rtod', 'runerr', 
                'save', 'Scale', 'seek', 'select', 'send', 'seq', 
                'serial', 'set', 'setenv', 
                'setuid', 'signal', 'sin', 'sort', 'sortf', 
                'spawn', 'sql', 'sqrt', 'stat', 'staticnames', 'stop', 
                'string', 'structure', 'Swi', 
                'symlink', 'sys_errstr', 'system', 'syswrite', 
                'tab', 'table', 'tan', 
                'Texcoord', 'Texture', 'TextWidth', 'Translate', 
                'trap', 'trim', 'truncate', 'trylock', 'type', 
                'umask', 'Uncouple', 'unlock', 'upto', 'utime', 
                'variable', 
                'wait', 'WAttrib', 'WDefault', 'WFlush', 'where', 
                'WinAssociate', 'WinButton', 'WinColorDialog', 'WindowContents', 
                'WinEditRegion', 'WinFontDialog', 'WinMenuBar', 'WinOpenDialog', 
                'WinPlayMedia', 'WinSaveDialog', 'WinScrollBar', 'WinSelectDialog', 
                'write', 'WriteImage', 'writes', 'WSection', 
                'WSync'), prefix=r'\b', suffix=r'\b'), 
             Name.Function), 
            include('numbers'), 
            (r'===|~===|\*\*|\+\+|--|\.|==|~==|<=|>=|=|~=|<<=|<<|>>=|>>|'
             r':=:|:=|<->|<-|\+:=|\|\||\|', Operator),
            (r'"(?:[^\\"]|\\.)*"', String), 
            (r"'(?:[^\\']|\\.)*'", String.Character), 
            (r'[*<>+=/&!?@~\\-]', Operator), 
            (r'(\w+)(\s*|[(,])', bygroups(Name, using(this))), 
            (r"[\[\]]", Punctuation),
            (r"<>|=>|[()|:;,.'`{}%\^&?]", Punctuation),
            (r'\n+', Text), 
        ], 
        'numbers': [ 
            (r'\b([+-]?([2-9]|[12][0-9]|3[0-6])[rR][0-9a-zA-Z]+)\b', Number.Hex), 
            (r'[+-]?[0-9]*\.([0-9]*)([Ee][+-]?[0-9]*)?', Number.Float), 
            (r'\b([+-]?[0-9]+[KMGTPkmgtp]?)\b', Number.Integer), 
        ], 
        'subprogram': [ 
            (r'\(', Punctuation, ('#pop', 'formal_part')), 
            (r';', Punctuation, '#pop'), 
            (r'"[^"]+"|\w+', Name.Function), 
            include('root'), 
        ], 
        'type_def': [ 
            (r'\(', Punctuation, 'formal_part'), 
        ], 
        'formal_part': [ 
            (r'\)', Punctuation, '#pop'), 
            (r'\w+', Name.Variable), 
            (r',', Punctuation), 
            (r'(:string|:integer|:real)\b', Keyword.Reserved), 
            include('root'), 
        ], 
    } 
 
 
class UcodeLexer(RegexLexer): 
    """ 
    Lexer for Icon ucode files. 
 
    .. versionadded:: 2.4 
    """ 
    name = 'ucode' 
    aliases = ['ucode'] 
    filenames = ['*.u', '*.u1', '*.u2'] 
    mimetypes = [] 
    flags = re.MULTILINE 
 
    tokens = { 
        'root': [ 
            (r'(#.*\n)', Comment), 
            (words(( 
                'con', 'declend', 'end', 
                'global', 
                'impl', 'invocable', 
                'lab', 'link', 'local', 
                'record', 
                'uid', 'unions', 
                'version'), 
                prefix=r'\b', suffix=r'\b'), 
             Name.Function), 
            (words(( 
                'colm', 'filen', 'line', 'synt'), 
                prefix=r'\b', suffix=r'\b'), 
             Comment), 
            (words(( 
                'asgn', 
                'bang', 'bscan', 
                'cat', 'ccase', 'chfail', 
                'coact', 'cofail', 'compl', 
                'coret', 'create', 'cset', 
                'diff', 'div', 'dup', 
                'efail', 'einit', 'end', 'eqv', 'eret', 
                'error', 'escan', 'esusp', 
                'field', 
                'goto', 
                'init', 'int', 'inter', 
                'invoke', 
                'keywd', 
                'lconcat', 'lexeq', 'lexge', 
                'lexgt', 'lexle', 'lexlt', 'lexne', 
                'limit', 'llist', 'lsusp', 
                'mark', 'mark0', 'minus', 'mod', 'mult', 
                'neg', 'neqv', 'nonnull', 'noop', 'null', 
                'number', 'numeq', 'numge', 'numgt', 
                'numle', 'numlt', 'numne', 
                'pfail', 'plus', 'pnull', 'pop', 'power', 
                'pret', 'proc', 'psusp', 'push1', 'pushn1', 
                'random', 'rasgn', 'rcv', 'rcvbk', 'real', 
                'refresh', 'rswap', 
                'sdup', 'sect', 'size', 'snd', 'sndbk', 
                'str', 'subsc', 'swap', 
                'tabmat', 'tally', 'toby', 'trace', 
                'unmark', 
                'value', 'var'), prefix=r'\b', suffix=r'\b'), 
             Keyword.Declaration), 
            (words(( 
                'any', 
                'case', 
                'endcase', 'endevery', 'endif', 
                'endifelse', 'endrepeat', 'endsuspend', 
                'enduntil', 'endwhile', 'every', 
                'if', 'ifelse', 
                'repeat', 
                'suspend', 
                'until', 
                'while'), 
             prefix=r'\b', suffix=r'\b'), 
             Name.Constant), 
            (r'\d+(\s*|\.$|$)', Number.Integer), 
            (r'[+-]?\d*\.\d+(E[-+]?\d+)?', Number.Float), 
            (r'[+-]?\d+\.\d*(E[-+]?\d+)?', Number.Float), 
            (r"(<>|=>|[()|:;,.'`]|[{}]|[%^]|[&?])", Punctuation), 
            (r'\s+\b', Text), 
            (r'[\w-]+', Text), 
        ], 
    } 

    def analyse_text(text):
        """endsuspend and endrepeat are unique to this language, and
        \\self, /self doesn't seem to get used anywhere else either."""
        result = 0

        if 'endsuspend' in text:
            result += 0.1

        if 'endrepeat' in text:
            result += 0.1

        if ':=' in text:
            result += 0.01

        if 'procedure' in text and 'end' in text:
            result += 0.01

        # This seems quite unique to unicon -- doesn't appear in any other
        # example source we have (A quick search reveals that \SELF appears in
        # Perl/Raku code)
        if r'\self' in text and r'/self' in text:
            result += 0.5

        return result