# -*- coding: utf-8 -*- """ pygments.lexers.dotnet ~~~~~~~~~~~~~~~~~~~~~~ Lexers for .net languages. :copyright: Copyright 2006-2017 by the Pygments team, see AUTHORS. :license: BSD, see LICENSE for details. """ import re from pygments.lexer import RegexLexer, DelegatingLexer, bygroups, include, \ using, this, default, words from pygments.token import Punctuation, \ Text, Comment, Operator, Keyword, Name, String, Number, Literal, Other from pygments.util import get_choice_opt, iteritems from pygments import unistring as uni from pygments.lexers.html import XmlLexer __all__ = ['CSharpLexer', 'NemerleLexer', 'BooLexer', 'VbNetLexer', 'CSharpAspxLexer', 'VbNetAspxLexer', 'FSharpLexer'] class CSharpLexer(RegexLexer): """ For `C# <http://msdn2.microsoft.com/en-us/vcsharp/default.aspx>`_ source code. Additional options accepted: `unicodelevel` Determines which Unicode characters this lexer allows for identifiers. The possible values are: * ``none`` -- only the ASCII letters and numbers are allowed. This is the fastest selection. * ``basic`` -- all Unicode characters from the specification except category ``Lo`` are allowed. * ``full`` -- all Unicode characters as specified in the C# specs are allowed. Note that this means a considerable slowdown since the ``Lo`` category has more than 40,000 characters in it! The default value is ``basic``. .. versionadded:: 0.8 """ name = 'C#' aliases = ['csharp', 'c#'] filenames = ['*.cs'] mimetypes = ['text/x-csharp'] # inferred flags = re.MULTILINE | re.DOTALL | re.UNICODE # for the range of allowed unicode characters in identifiers, see # http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-334.pdf levels = { 'none': '@?[_a-zA-Z]\w*', 'basic': ('@?[_' + uni.combine('Lu', 'Ll', 'Lt', 'Lm', 'Nl') + ']' + '[' + uni.combine('Lu', 'Ll', 'Lt', 'Lm', 'Nl', 'Nd', 'Pc', 'Cf', 'Mn', 'Mc') + ']*'), 'full': ('@?(?:_|[^' + uni.allexcept('Lu', 'Ll', 'Lt', 'Lm', 'Lo', 'Nl') + '])' + '[^' + uni.allexcept('Lu', 'Ll', 'Lt', 'Lm', 'Lo', 'Nl', 'Nd', 'Pc', 'Cf', 'Mn', 'Mc') + ']*'), } tokens = {} token_variants = True for levelname, cs_ident in iteritems(levels): tokens[levelname] = { 'root': [ # method names (r'^([ \t]*(?:' + cs_ident + r'(?:\[\])?\s+)+?)' # return type r'(' + cs_ident + ')' # method name r'(\s*)(\()', # signature start bygroups(using(this), Name.Function, Text, Punctuation)), (r'^\s*\[.*?\]', Name.Attribute), (r'[^\S\n]+', Text), (r'\\\n', Text), # line continuation (r'//.*?\n', Comment.Single), (r'/[*].*?[*]/', Comment.Multiline), (r'\n', Text), (r'[~!%^&*()+=|\[\]:;,.<>/?-]', Punctuation), (r'[{}]', Punctuation), (r'@"(""|[^"])*"', String), (r'"(\\\\|\\"|[^"\n])*["\n]', String), (r"'\\.'|'[^\\]'", String.Char), (r"[0-9](\.[0-9]*)?([eE][+-][0-9]+)?" r"[flFLdD]?|0[xX][0-9a-fA-F]+[Ll]?", Number), (r'#[ \t]*(if|endif|else|elif|define|undef|' r'line|error|warning|region|endregion|pragma)\b.*?\n', Comment.Preproc), (r'\b(extern)(\s+)(alias)\b', bygroups(Keyword, Text, Keyword)), (r'(abstract|as|async|await|base|break|by|case|catch|' r'checked|const|continue|default|delegate|' r'do|else|enum|event|explicit|extern|false|finally|' r'fixed|for|foreach|goto|if|implicit|in|interface|' r'internal|is|let|lock|new|null|on|operator|' r'out|override|params|private|protected|public|readonly|' r'ref|return|sealed|sizeof|stackalloc|static|' r'switch|this|throw|true|try|typeof|' r'unchecked|unsafe|virtual|void|while|' r'get|set|new|partial|yield|add|remove|value|alias|ascending|' r'descending|from|group|into|orderby|select|thenby|where|' r'join|equals)\b', Keyword), (r'(global)(::)', bygroups(Keyword, Punctuation)), (r'(bool|byte|char|decimal|double|dynamic|float|int|long|object|' r'sbyte|short|string|uint|ulong|ushort|var)\b\??', Keyword.Type), (r'(class|struct)(\s+)', bygroups(Keyword, Text), 'class'), (r'(namespace|using)(\s+)', bygroups(Keyword, Text), 'namespace'), (cs_ident, Name), ], 'class': [ (cs_ident, Name.Class, '#pop'), default('#pop'), ], 'namespace': [ (r'(?=\()', Text, '#pop'), # using (resource) ('(' + cs_ident + r'|\.)+', Name.Namespace, '#pop'), ] } def __init__(self, **options): level = get_choice_opt(options, 'unicodelevel', list(self.tokens), 'basic') if level not in self._all_tokens: # compile the regexes now self._tokens = self.__class__.process_tokendef(level) else: self._tokens = self._all_tokens[level] RegexLexer.__init__(self, **options) class NemerleLexer(RegexLexer): """ For `Nemerle <http://nemerle.org>`_ source code. Additional options accepted: `unicodelevel` Determines which Unicode characters this lexer allows for identifiers. The possible values are: * ``none`` -- only the ASCII letters and numbers are allowed. This is the fastest selection. * ``basic`` -- all Unicode characters from the specification except category ``Lo`` are allowed. * ``full`` -- all Unicode characters as specified in the C# specs are allowed. Note that this means a considerable slowdown since the ``Lo`` category has more than 40,000 characters in it! The default value is ``basic``. .. versionadded:: 1.5 """ name = 'Nemerle' aliases = ['nemerle'] filenames = ['*.n'] mimetypes = ['text/x-nemerle'] # inferred flags = re.MULTILINE | re.DOTALL | re.UNICODE # for the range of allowed unicode characters in identifiers, see # http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-334.pdf levels = { 'none': '@?[_a-zA-Z]\w*', 'basic': ('@?[_' + uni.combine('Lu', 'Ll', 'Lt', 'Lm', 'Nl') + ']' + '[' + uni.combine('Lu', 'Ll', 'Lt', 'Lm', 'Nl', 'Nd', 'Pc', 'Cf', 'Mn', 'Mc') + ']*'), 'full': ('@?(?:_|[^' + uni.allexcept('Lu', 'Ll', 'Lt', 'Lm', 'Lo', 'Nl') + '])' + '[^' + uni.allexcept('Lu', 'Ll', 'Lt', 'Lm', 'Lo', 'Nl', 'Nd', 'Pc', 'Cf', 'Mn', 'Mc') + ']*'), } tokens = {} token_variants = True for levelname, cs_ident in iteritems(levels): tokens[levelname] = { 'root': [ # method names (r'^([ \t]*(?:' + cs_ident + r'(?:\[\])?\s+)+?)' # return type r'(' + cs_ident + ')' # method name r'(\s*)(\()', # signature start bygroups(using(this), Name.Function, Text, Punctuation)), (r'^\s*\[.*?\]', Name.Attribute), (r'[^\S\n]+', Text), (r'\\\n', Text), # line continuation (r'//.*?\n', Comment.Single), (r'/[*].*?[*]/', Comment.Multiline), (r'\n', Text), (r'\$\s*"', String, 'splice-string'), (r'\$\s*<#', String, 'splice-string2'), (r'<#', String, 'recursive-string'), (r'(<\[)\s*(' + cs_ident + ':)?', Keyword), (r'\]\>', Keyword), # quasiquotation only (r'\$' + cs_ident, Name), (r'(\$)(\()', bygroups(Name, Punctuation), 'splice-string-content'), (r'[~!%^&*()+=|\[\]:;,.<>/?-]', Punctuation), (r'[{}]', Punctuation), (r'@"(""|[^"])*"', String), (r'"(\\\\|\\"|[^"\n])*["\n]', String), (r"'\\.'|'[^\\]'", String.Char), (r"0[xX][0-9a-fA-F]+[Ll]?", Number), (r"[0-9](\.[0-9]*)?([eE][+-][0-9]+)?[flFLdD]?", Number), (r'#[ \t]*(if|endif|else|elif|define|undef|' r'line|error|warning|region|endregion|pragma)\b.*?\n', Comment.Preproc), (r'\b(extern)(\s+)(alias)\b', bygroups(Keyword, Text, Keyword)), (r'(abstract|and|as|base|catch|def|delegate|' r'enum|event|extern|false|finally|' r'fun|implements|interface|internal|' r'is|macro|match|matches|module|mutable|new|' r'null|out|override|params|partial|private|' r'protected|public|ref|sealed|static|' r'syntax|this|throw|true|try|type|typeof|' r'virtual|volatile|when|where|with|' r'assert|assert2|async|break|checked|continue|do|else|' r'ensures|for|foreach|if|late|lock|new|nolate|' r'otherwise|regexp|repeat|requires|return|surroundwith|' r'unchecked|unless|using|while|yield)\b', Keyword), (r'(global)(::)', bygroups(Keyword, Punctuation)), (r'(bool|byte|char|decimal|double|float|int|long|object|sbyte|' r'short|string|uint|ulong|ushort|void|array|list)\b\??', Keyword.Type), (r'(:>?)\s*(' + cs_ident + r'\??)', bygroups(Punctuation, Keyword.Type)), (r'(class|struct|variant|module)(\s+)', bygroups(Keyword, Text), 'class'), (r'(namespace|using)(\s+)', bygroups(Keyword, Text), 'namespace'), (cs_ident, Name), ], 'class': [ (cs_ident, Name.Class, '#pop') ], 'namespace': [ (r'(?=\()', Text, '#pop'), # using (resource) ('(' + cs_ident + r'|\.)+', Name.Namespace, '#pop') ], 'splice-string': [ (r'[^"$]', String), (r'\$' + cs_ident, Name), (r'(\$)(\()', bygroups(Name, Punctuation), 'splice-string-content'), (r'\\"', String), (r'"', String, '#pop') ], 'splice-string2': [ (r'[^#<>$]', String), (r'\$' + cs_ident, Name), (r'(\$)(\()', bygroups(Name, Punctuation), 'splice-string-content'), (r'<#', String, '#push'), (r'#>', String, '#pop') ], 'recursive-string': [ (r'[^#<>]', String), (r'<#', String, '#push'), (r'#>', String, '#pop') ], 'splice-string-content': [ (r'if|match', Keyword), (r'[~!%^&*+=|\[\]:;,.<>/?-\\"$ ]', Punctuation), (cs_ident, Name), (r'\d+', Number), (r'\(', Punctuation, '#push'), (r'\)', Punctuation, '#pop') ] } def __init__(self, **options): level = get_choice_opt(options, 'unicodelevel', list(self.tokens), 'basic') if level not in self._all_tokens: # compile the regexes now self._tokens = self.__class__.process_tokendef(level) else: self._tokens = self._all_tokens[level] RegexLexer.__init__(self, **options) class BooLexer(RegexLexer): """ For `Boo <http://boo.codehaus.org/>`_ source code. """ name = 'Boo' aliases = ['boo'] filenames = ['*.boo'] mimetypes = ['text/x-boo'] tokens = { 'root': [ (r'\s+', Text), (r'(#|//).*$', Comment.Single), (r'/[*]', Comment.Multiline, 'comment'), (r'[]{}:(),.;[]', Punctuation), (r'\\\n', Text), (r'\\', Text), (r'(in|is|and|or|not)\b', Operator.Word), (r'/(\\\\|\\/|[^/\s])/', String.Regex), (r'@/(\\\\|\\/|[^/])*/', String.Regex), (r'=~|!=|==|<<|>>|[-+/*%=<>&^|]', Operator), (r'(as|abstract|callable|constructor|destructor|do|import|' r'enum|event|final|get|interface|internal|of|override|' r'partial|private|protected|public|return|set|static|' r'struct|transient|virtual|yield|super|and|break|cast|' r'continue|elif|else|ensure|except|for|given|goto|if|in|' r'is|isa|not|or|otherwise|pass|raise|ref|try|unless|when|' r'while|from|as)\b', Keyword), (r'def(?=\s+\(.*?\))', Keyword), (r'(def)(\s+)', bygroups(Keyword, Text), 'funcname'), (r'(class)(\s+)', bygroups(Keyword, Text), 'classname'), (r'(namespace)(\s+)', bygroups(Keyword, Text), 'namespace'), (r'(?<!\.)(true|false|null|self|__eval__|__switch__|array|' r'assert|checked|enumerate|filter|getter|len|lock|map|' r'matrix|max|min|normalArrayIndexing|print|property|range|' r'rawArrayIndexing|required|typeof|unchecked|using|' r'yieldAll|zip)\b', Name.Builtin), (r'"""(\\\\|\\"|.*?)"""', String.Double), (r'"(\\\\|\\"|[^"]*?)"', String.Double), (r"'(\\\\|\\'|[^']*?)'", String.Single), (r'[a-zA-Z_]\w*', Name), (r'(\d+\.\d*|\d*\.\d+)([fF][+-]?[0-9]+)?', Number.Float), (r'[0-9][0-9.]*(ms?|d|h|s)', Number), (r'0\d+', Number.Oct), (r'0x[a-fA-F0-9]+', Number.Hex), (r'\d+L', Number.Integer.Long), (r'\d+', Number.Integer), ], 'comment': [ ('/[*]', Comment.Multiline, '#push'), ('[*]/', Comment.Multiline, '#pop'), ('[^/*]', Comment.Multiline), ('[*/]', Comment.Multiline) ], 'funcname': [ ('[a-zA-Z_]\w*', Name.Function, '#pop') ], 'classname': [ ('[a-zA-Z_]\w*', Name.Class, '#pop') ], 'namespace': [ ('[a-zA-Z_][\w.]*', Name.Namespace, '#pop') ] } class VbNetLexer(RegexLexer): """ For `Visual Basic.NET <http://msdn2.microsoft.com/en-us/vbasic/default.aspx>`_ source code. """ name = 'VB.net' aliases = ['vb.net', 'vbnet'] filenames = ['*.vb', '*.bas'] mimetypes = ['text/x-vbnet', 'text/x-vba'] # (?) uni_name = '[_' + uni.combine('Ll', 'Lt', 'Lm', 'Nl') + ']' + \ '[' + uni.combine('Ll', 'Lt', 'Lm', 'Nl', 'Nd', 'Pc', 'Cf', 'Mn', 'Mc') + ']*' flags = re.MULTILINE | re.IGNORECASE tokens = { 'root': [ (r'^\s*<.*?>', Name.Attribute), (r'\s+', Text), (r'\n', Text), (r'rem\b.*?\n', Comment), (r"'.*?\n", Comment), (r'#If\s.*?\sThen|#ElseIf\s.*?\sThen|#Else|#End\s+If|#Const|' r'#ExternalSource.*?\n|#End\s+ExternalSource|' r'#Region.*?\n|#End\s+Region|#ExternalChecksum', Comment.Preproc), (r'[(){}!#,.:]', Punctuation), (r'Option\s+(Strict|Explicit|Compare)\s+' r'(On|Off|Binary|Text)', Keyword.Declaration), (words(( 'AddHandler', 'Alias', 'ByRef', 'ByVal', 'Call', 'Case', 'Catch', 'CBool', 'CByte', 'CChar', 'CDate', 'CDec', 'CDbl', 'CInt', 'CLng', 'CObj', 'Continue', 'CSByte', 'CShort', 'CSng', 'CStr', 'CType', 'CUInt', 'CULng', 'CUShort', 'Declare', 'Default', 'Delegate', 'DirectCast', 'Do', 'Each', 'Else', 'ElseIf', 'EndIf', 'Erase', 'Error', 'Event', 'Exit', 'False', 'Finally', 'For', 'Friend', 'Get', 'Global', 'GoSub', 'GoTo', 'Handles', 'If', 'Implements', 'Inherits', 'Interface', 'Let', 'Lib', 'Loop', 'Me', 'MustInherit', 'MustOverride', 'MyBase', 'MyClass', 'Narrowing', 'New', 'Next', 'Not', 'Nothing', 'NotInheritable', 'NotOverridable', 'Of', 'On', 'Operator', 'Option', 'Optional', 'Overloads', 'Overridable', 'Overrides', 'ParamArray', 'Partial', 'Private', 'Protected', 'Public', 'RaiseEvent', 'ReadOnly', 'ReDim', 'RemoveHandler', 'Resume', 'Return', 'Select', 'Set', 'Shadows', 'Shared', 'Single', 'Static', 'Step', 'Stop', 'SyncLock', 'Then', 'Throw', 'To', 'True', 'Try', 'TryCast', 'Wend', 'Using', 'When', 'While', 'Widening', 'With', 'WithEvents', 'WriteOnly'), prefix='(?<!\.)', suffix=r'\b'), Keyword), (r'(?<!\.)End\b', Keyword, 'end'), (r'(?<!\.)(Dim|Const)\b', Keyword, 'dim'), (r'(?<!\.)(Function|Sub|Property)(\s+)', bygroups(Keyword, Text), 'funcname'), (r'(?<!\.)(Class|Structure|Enum)(\s+)', bygroups(Keyword, Text), 'classname'), (r'(?<!\.)(Module|Namespace|Imports)(\s+)', bygroups(Keyword, Text), 'namespace'), (r'(?<!\.)(Boolean|Byte|Char|Date|Decimal|Double|Integer|Long|' r'Object|SByte|Short|Single|String|Variant|UInteger|ULong|' r'UShort)\b', Keyword.Type), (r'(?<!\.)(AddressOf|And|AndAlso|As|GetType|In|Is|IsNot|Like|Mod|' r'Or|OrElse|TypeOf|Xor)\b', Operator.Word), (r'&=|[*]=|/=|\\=|\^=|\+=|-=|<<=|>>=|<<|>>|:=|' r'<=|>=|<>|[-&*/\\^+=<>\[\]]', Operator), ('"', String, 'string'), (r'_\n', Text), # Line continuation (must be before Name) (uni_name + '[%&@!#$]?', Name), ('#.*?#', Literal.Date), (r'(\d+\.\d*|\d*\.\d+)(F[+-]?[0-9]+)?', Number.Float), (r'\d+([SILDFR]|US|UI|UL)?', Number.Integer), (r'&H[0-9a-f]+([SILDFR]|US|UI|UL)?', Number.Integer), (r'&O[0-7]+([SILDFR]|US|UI|UL)?', Number.Integer), ], 'string': [ (r'""', String), (r'"C?', String, '#pop'), (r'[^"]+', String), ], 'dim': [ (uni_name, Name.Variable, '#pop'), default('#pop'), # any other syntax ], 'funcname': [ (uni_name, Name.Function, '#pop'), ], 'classname': [ (uni_name, Name.Class, '#pop'), ], 'namespace': [ (uni_name, Name.Namespace), (r'\.', Name.Namespace), default('#pop'), ], 'end': [ (r'\s+', Text), (r'(Function|Sub|Property|Class|Structure|Enum|Module|Namespace)\b', Keyword, '#pop'), default('#pop'), ] } def analyse_text(text): if re.search(r'^\s*(#If|Module|Namespace)', text, re.MULTILINE): return 0.5 class GenericAspxLexer(RegexLexer): """ Lexer for ASP.NET pages. """ name = 'aspx-gen' filenames = [] mimetypes = [] flags = re.DOTALL tokens = { 'root': [ (r'(<%[@=#]?)(.*?)(%>)', bygroups(Name.Tag, Other, Name.Tag)), (r'(<script.*?>)(.*?)(</script>)', bygroups(using(XmlLexer), Other, using(XmlLexer))), (r'(.+?)(?=<)', using(XmlLexer)), (r'.+', using(XmlLexer)), ], } # TODO support multiple languages within the same source file class CSharpAspxLexer(DelegatingLexer): """ Lexer for highlighting C# within ASP.NET pages. """ name = 'aspx-cs' aliases = ['aspx-cs'] filenames = ['*.aspx', '*.asax', '*.ascx', '*.ashx', '*.asmx', '*.axd'] mimetypes = [] def __init__(self, **options): super(CSharpAspxLexer, self).__init__(CSharpLexer, GenericAspxLexer, **options) def analyse_text(text): if re.search(r'Page\s*Language="C#"', text, re.I) is not None: return 0.2 elif re.search(r'script[^>]+language=["\']C#', text, re.I) is not None: return 0.15 class VbNetAspxLexer(DelegatingLexer): """ Lexer for highlighting Visual Basic.net within ASP.NET pages. """ name = 'aspx-vb' aliases = ['aspx-vb'] filenames = ['*.aspx', '*.asax', '*.ascx', '*.ashx', '*.asmx', '*.axd'] mimetypes = [] def __init__(self, **options): super(VbNetAspxLexer, self).__init__(VbNetLexer, GenericAspxLexer, **options) def analyse_text(text): if re.search(r'Page\s*Language="Vb"', text, re.I) is not None: return 0.2 elif re.search(r'script[^>]+language=["\']vb', text, re.I) is not None: return 0.15 # Very close to functional.OcamlLexer class FSharpLexer(RegexLexer): """ For the F# language (version 3.0). AAAAACK Strings http://research.microsoft.com/en-us/um/cambridge/projects/fsharp/manual/spec.html#_Toc335818775 .. versionadded:: 1.5 """ name = 'FSharp' aliases = ['fsharp'] filenames = ['*.fs', '*.fsi'] mimetypes = ['text/x-fsharp'] keywords = [ 'abstract', 'as', 'assert', 'base', 'begin', 'class', 'default', 'delegate', 'do!', 'do', 'done', 'downcast', 'downto', 'elif', 'else', 'end', 'exception', 'extern', 'false', 'finally', 'for', 'function', 'fun', 'global', 'if', 'inherit', 'inline', 'interface', 'internal', 'in', 'lazy', 'let!', 'let', 'match', 'member', 'module', 'mutable', 'namespace', 'new', 'null', 'of', 'open', 'override', 'private', 'public', 'rec', 'return!', 'return', 'select', 'static', 'struct', 'then', 'to', 'true', 'try', 'type', 'upcast', 'use!', 'use', 'val', 'void', 'when', 'while', 'with', 'yield!', 'yield', ] # Reserved words; cannot hurt to color them as keywords too. keywords += [ 'atomic', 'break', 'checked', 'component', 'const', 'constraint', 'constructor', 'continue', 'eager', 'event', 'external', 'fixed', 'functor', 'include', 'method', 'mixin', 'object', 'parallel', 'process', 'protected', 'pure', 'sealed', 'tailcall', 'trait', 'virtual', 'volatile', ] keyopts = [ '!=', '#', '&&', '&', '\(', '\)', '\*', '\+', ',', '-\.', '->', '-', '\.\.', '\.', '::', ':=', ':>', ':', ';;', ';', '<-', '<\]', '<', '>\]', '>', '\?\?', '\?', '\[<', '\[\|', '\[', '\]', '_', '`', '\{', '\|\]', '\|', '\}', '~', '<@@', '<@', '=', '@>', '@@>', ] operators = r'[!$%&*+\./:<=>?@^|~-]' word_operators = ['and', 'or', 'not'] prefix_syms = r'[!?~]' infix_syms = r'[=<>@^|&+\*/$%-]' primitives = [ 'sbyte', 'byte', 'char', 'nativeint', 'unativeint', 'float32', 'single', 'float', 'double', 'int8', 'uint8', 'int16', 'uint16', 'int32', 'uint32', 'int64', 'uint64', 'decimal', 'unit', 'bool', 'string', 'list', 'exn', 'obj', 'enum', ] # See http://msdn.microsoft.com/en-us/library/dd233181.aspx and/or # http://fsharp.org/about/files/spec.pdf for reference. Good luck. tokens = { 'escape-sequence': [ (r'\\[\\"\'ntbrafv]', String.Escape), (r'\\[0-9]{3}', String.Escape), (r'\\u[0-9a-fA-F]{4}', String.Escape), (r'\\U[0-9a-fA-F]{8}', String.Escape), ], 'root': [ (r'\s+', Text), (r'\(\)|\[\]', Name.Builtin.Pseudo), (r'\b(?<!\.)([A-Z][\w\']*)(?=\s*\.)', Name.Namespace, 'dotted'), (r'\b([A-Z][\w\']*)', Name), (r'///.*?\n', String.Doc), (r'//.*?\n', Comment.Single), (r'\(\*(?!\))', Comment, 'comment'), (r'@"', String, 'lstring'), (r'"""', String, 'tqs'), (r'"', String, 'string'), (r'\b(open|module)(\s+)([\w.]+)', bygroups(Keyword, Text, Name.Namespace)), (r'\b(let!?)(\s+)(\w+)', bygroups(Keyword, Text, Name.Variable)), (r'\b(type)(\s+)(\w+)', bygroups(Keyword, Text, Name.Class)), (r'\b(member|override)(\s+)(\w+)(\.)(\w+)', bygroups(Keyword, Text, Name, Punctuation, Name.Function)), (r'\b(%s)\b' % '|'.join(keywords), Keyword), (r'``([^`\n\r\t]|`[^`\n\r\t])+``', Name), (r'(%s)' % '|'.join(keyopts), Operator), (r'(%s|%s)?%s' % (infix_syms, prefix_syms, operators), Operator), (r'\b(%s)\b' % '|'.join(word_operators), Operator.Word), (r'\b(%s)\b' % '|'.join(primitives), Keyword.Type), (r'#[ \t]*(if|endif|else|line|nowarn|light|\d+)\b.*?\n', Comment.Preproc), (r"[^\W\d][\w']*", Name), (r'\d[\d_]*[uU]?[yslLnQRZINGmM]?', Number.Integer), (r'0[xX][\da-fA-F][\da-fA-F_]*[uU]?[yslLn]?[fF]?', Number.Hex), (r'0[oO][0-7][0-7_]*[uU]?[yslLn]?', Number.Oct), (r'0[bB][01][01_]*[uU]?[yslLn]?', Number.Bin), (r'-?\d[\d_]*(.[\d_]*)?([eE][+\-]?\d[\d_]*)[fFmM]?', Number.Float), (r"'(?:(\\[\\\"'ntbr ])|(\\[0-9]{3})|(\\x[0-9a-fA-F]{2}))'B?", String.Char), (r"'.'", String.Char), (r"'", Keyword), # a stray quote is another syntax element (r'@?"', String.Double, 'string'), (r'[~?][a-z][\w\']*:', Name.Variable), ], 'dotted': [ (r'\s+', Text), (r'\.', Punctuation), (r'[A-Z][\w\']*(?=\s*\.)', Name.Namespace), (r'[A-Z][\w\']*', Name, '#pop'), (r'[a-z_][\w\']*', Name, '#pop'), # e.g. dictionary index access default('#pop'), ], 'comment': [ (r'[^(*)@"]+', Comment), (r'\(\*', Comment, '#push'), (r'\*\)', Comment, '#pop'), # comments cannot be closed within strings in comments (r'@"', String, 'lstring'), (r'"""', String, 'tqs'), (r'"', String, 'string'), (r'[(*)@]', Comment), ], 'string': [ (r'[^\\"]+', String), include('escape-sequence'), (r'\\\n', String), (r'\n', String), # newlines are allowed in any string (r'"B?', String, '#pop'), ], 'lstring': [ (r'[^"]+', String), (r'\n', String), (r'""', String), (r'"B?', String, '#pop'), ], 'tqs': [ (r'[^"]+', String), (r'\n', String), (r'"""B?', String, '#pop'), (r'"', String), ], }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__init__.py | File | 10.65 KB | 0644 |
|
__init__.pyc | File | 10.55 KB | 0644 |
|
_asy_builtins.py | File | 26.68 KB | 0644 |
|
_asy_builtins.pyc | File | 32.76 KB | 0644 |
|
_cl_builtins.py | File | 13.72 KB | 0644 |
|
_cl_builtins.pyc | File | 25.25 KB | 0644 |
|
_cocoa_builtins.py | File | 39.04 KB | 0644 |
|
_cocoa_builtins.pyc | File | 45.61 KB | 0644 |
|
_csound_builtins.py | File | 21.14 KB | 0644 |
|
_csound_builtins.pyc | File | 24.04 KB | 0644 |
|
_lasso_builtins.py | File | 131.38 KB | 0644 |
|
_lasso_builtins.pyc | File | 121.02 KB | 0644 |
|
_lua_builtins.py | File | 8.14 KB | 0644 |
|
_lua_builtins.pyc | File | 10.73 KB | 0644 |
|
_mapping.py | File | 53.43 KB | 0644 |
|
_mapping.pyc | File | 77.25 KB | 0644 |
|
_mql_builtins.py | File | 24.16 KB | 0644 |
|
_mql_builtins.pyc | File | 28.95 KB | 0644 |
|
_openedge_builtins.py | File | 47.23 KB | 0644 |
|
_openedge_builtins.pyc | File | 80.1 KB | 0644 |
|
_php_builtins.py | File | 150.75 KB | 0644 |
|
_php_builtins.pyc | File | 134.8 KB | 0644 |
|
_postgres_builtins.py | File | 10.95 KB | 0644 |
|
_postgres_builtins.pyc | File | 13.06 KB | 0644 |
|
_scilab_builtins.py | File | 51.18 KB | 0644 |
|
_scilab_builtins.pyc | File | 71.95 KB | 0644 |
|
_sourcemod_builtins.py | File | 26.48 KB | 0644 |
|
_sourcemod_builtins.pyc | File | 31.43 KB | 0644 |
|
_stan_builtins.py | File | 9.88 KB | 0644 |
|
_stan_builtins.pyc | File | 11.97 KB | 0644 |
|
_stata_builtins.py | File | 24.55 KB | 0644 |
|
_stata_builtins.pyc | File | 36.1 KB | 0644 |
|
_tsql_builtins.py | File | 15.12 KB | 0644 |
|
_tsql_builtins.pyc | File | 15.99 KB | 0644 |
|
_vim_builtins.py | File | 55.75 KB | 0644 |
|
_vim_builtins.pyc | File | 62.26 KB | 0644 |
|
actionscript.py | File | 10.92 KB | 0644 |
|
actionscript.pyc | File | 11.36 KB | 0644 |
|
agile.py | File | 900 B | 0644 |
|
agile.pyc | File | 1.4 KB | 0644 |
|
algebra.py | File | 7.03 KB | 0644 |
|
algebra.pyc | File | 7.76 KB | 0644 |
|
ambient.py | File | 2.5 KB | 0644 |
|
ambient.pyc | File | 2.87 KB | 0644 |
|
ampl.py | File | 4.02 KB | 0644 |
|
ampl.pyc | File | 4.61 KB | 0644 |
|
apl.py | File | 3.09 KB | 0644 |
|
apl.pyc | File | 1.99 KB | 0644 |
|
archetype.py | File | 10.87 KB | 0644 |
|
archetype.pyc | File | 7.44 KB | 0644 |
|
asm.py | File | 24.67 KB | 0644 |
|
asm.pyc | File | 23.89 KB | 0644 |
|
automation.py | File | 19.19 KB | 0644 |
|
automation.pyc | File | 16.59 KB | 0644 |
|
basic.py | File | 19.83 KB | 0644 |
|
basic.pyc | File | 17.63 KB | 0644 |
|
bibtex.py | File | 4.61 KB | 0644 |
|
bibtex.pyc | File | 4.43 KB | 0644 |
|
business.py | File | 27.02 KB | 0644 |
|
business.pyc | File | 25.07 KB | 0644 |
|
c_cpp.py | File | 10.28 KB | 0644 |
|
c_cpp.pyc | File | 9.72 KB | 0644 |
|
c_like.py | File | 23.56 KB | 0644 |
|
c_like.pyc | File | 26.43 KB | 0644 |
|
capnproto.py | File | 2.14 KB | 0644 |
|
capnproto.pyc | File | 2.02 KB | 0644 |
|
chapel.py | File | 3.43 KB | 0644 |
|
chapel.pyc | File | 3.36 KB | 0644 |
|
clean.py | File | 10.16 KB | 0644 |
|
clean.pyc | File | 8.27 KB | 0644 |
|
compiled.py | File | 1.35 KB | 0644 |
|
compiled.pyc | File | 2.14 KB | 0644 |
|
configs.py | File | 27.6 KB | 0644 |
|
configs.pyc | File | 25.05 KB | 0644 |
|
console.py | File | 4.02 KB | 0644 |
|
console.pyc | File | 3.85 KB | 0644 |
|
crystal.py | File | 16.45 KB | 0644 |
|
crystal.pyc | File | 11.39 KB | 0644 |
|
csound.py | File | 12.25 KB | 0644 |
|
csound.pyc | File | 9.39 KB | 0644 |
|
css.py | File | 30.77 KB | 0644 |
|
css.pyc | File | 37.17 KB | 0644 |
|
d.py | File | 9.31 KB | 0644 |
|
d.pyc | File | 7.69 KB | 0644 |
|
dalvik.py | File | 4.32 KB | 0644 |
|
dalvik.pyc | File | 3.71 KB | 0644 |
|
data.py | File | 18.33 KB | 0644 |
|
data.pyc | File | 12.44 KB | 0644 |
|
diff.py | File | 4.76 KB | 0644 |
|
diff.pyc | File | 4.4 KB | 0644 |
|
dotnet.py | File | 27.02 KB | 0644 |
|
dotnet.pyc | File | 23.13 KB | 0644 |
|
dsls.py | File | 32.55 KB | 0644 |
|
dsls.pyc | File | 31.3 KB | 0644 |
|
dylan.py | File | 10.18 KB | 0644 |
|
dylan.pyc | File | 11.14 KB | 0644 |
|
ecl.py | File | 5.74 KB | 0644 |
|
ecl.pyc | File | 6.7 KB | 0644 |
|
eiffel.py | File | 2.42 KB | 0644 |
|
eiffel.pyc | File | 2.91 KB | 0644 |
|
elm.py | File | 2.93 KB | 0644 |
|
elm.pyc | File | 2.91 KB | 0644 |
|
erlang.py | File | 18.49 KB | 0644 |
|
erlang.pyc | File | 17.2 KB | 0644 |
|
esoteric.py | File | 9.27 KB | 0644 |
|
esoteric.pyc | File | 9.15 KB | 0644 |
|
ezhil.py | File | 2.95 KB | 0644 |
|
ezhil.pyc | File | 3.71 KB | 0644 |
|
factor.py | File | 17.44 KB | 0644 |
|
factor.pyc | File | 23.61 KB | 0644 |
|
fantom.py | File | 9.75 KB | 0644 |
|
fantom.pyc | File | 5.88 KB | 0644 |
|
felix.py | File | 9.19 KB | 0644 |
|
felix.pyc | File | 7.73 KB | 0644 |
|
forth.py | File | 6.98 KB | 0644 |
|
forth.pyc | File | 4.84 KB | 0644 |
|
fortran.py | File | 9.54 KB | 0644 |
|
fortran.pyc | File | 11.16 KB | 0644 |
|
foxpro.py | File | 25.62 KB | 0644 |
|
foxpro.pyc | File | 19.9 KB | 0644 |
|
functional.py | File | 698 B | 0644 |
|
functional.pyc | File | 1.08 KB | 0644 |
|
go.py | File | 3.61 KB | 0644 |
|
go.pyc | File | 3.37 KB | 0644 |
|
grammar_notation.py | File | 6.18 KB | 0644 |
|
grammar_notation.pyc | File | 5.56 KB | 0644 |
|
graph.py | File | 2.31 KB | 0644 |
|
graph.pyc | File | 2.34 KB | 0644 |
|
graphics.py | File | 25.23 KB | 0644 |
|
graphics.pyc | File | 23.52 KB | 0644 |
|
haskell.py | File | 30.49 KB | 0644 |
|
haskell.pyc | File | 23.51 KB | 0644 |
|
haxe.py | File | 30.23 KB | 0644 |
|
haxe.pyc | File | 18.35 KB | 0644 |
|
hdl.py | File | 18.26 KB | 0644 |
|
hdl.pyc | File | 18.96 KB | 0644 |
|
hexdump.py | File | 3.42 KB | 0644 |
|
hexdump.pyc | File | 2.95 KB | 0644 |
|
html.py | File | 18.82 KB | 0644 |
|
html.pyc | File | 15.04 KB | 0644 |
|
idl.py | File | 14.63 KB | 0644 |
|
idl.pyc | File | 18.94 KB | 0644 |
|
igor.py | File | 19.53 KB | 0644 |
|
igor.pyc | File | 24.74 KB | 0644 |
|
inferno.py | File | 3.04 KB | 0644 |
|
inferno.pyc | File | 2.92 KB | 0644 |
|
installers.py | File | 12.56 KB | 0644 |
|
installers.pyc | File | 10.6 KB | 0644 |
|
int_fiction.py | File | 54.47 KB | 0644 |
|
int_fiction.pyc | File | 34.88 KB | 0644 |
|
iolang.py | File | 1.86 KB | 0644 |
|
iolang.pyc | File | 1.94 KB | 0644 |
|
j.py | File | 4.42 KB | 0644 |
|
j.pyc | File | 4.2 KB | 0644 |
|
javascript.py | File | 58.72 KB | 0644 |
|
javascript.pyc | File | 41.33 KB | 0644 |
|
julia.py | File | 13.76 KB | 0644 |
|
julia.pyc | File | 11.5 KB | 0644 |
|
jvm.py | File | 65.18 KB | 0644 |
|
jvm.pyc | File | 50.73 KB | 0644 |
|
lisp.py | File | 137.38 KB | 0644 |
|
lisp.pyc | File | 205.18 KB | 0644 |
|
make.py | File | 7.16 KB | 0644 |
|
make.pyc | File | 5.37 KB | 0644 |
|
markup.py | File | 19.97 KB | 0644 |
|
markup.pyc | File | 17.25 KB | 0644 |
|
math.py | File | 700 B | 0644 |
|
math.pyc | File | 1.09 KB | 0644 |
|
matlab.py | File | 28.47 KB | 0644 |
|
matlab.pyc | File | 30.52 KB | 0644 |
|
ml.py | File | 27.23 KB | 0644 |
|
ml.pyc | File | 14.98 KB | 0644 |
|
modeling.py | File | 12.53 KB | 0644 |
|
modeling.pyc | File | 10.87 KB | 0644 |
|
modula2.py | File | 51.33 KB | 0644 |
|
modula2.pyc | File | 25.89 KB | 0644 |
|
monte.py | File | 6.16 KB | 0644 |
|
monte.pyc | File | 4.94 KB | 0644 |
|
ncl.py | File | 62.49 KB | 0644 |
|
ncl.pyc | File | 67.46 KB | 0644 |
|
nimrod.py | File | 5.05 KB | 0644 |
|
nimrod.pyc | File | 4.74 KB | 0644 |
|
nit.py | File | 2.68 KB | 0644 |
|
nit.pyc | File | 2.99 KB | 0644 |
|
nix.py | File | 3.94 KB | 0644 |
|
nix.pyc | File | 4.28 KB | 0644 |
|
oberon.py | File | 3.65 KB | 0644 |
|
oberon.pyc | File | 3.41 KB | 0644 |
|
objective.py | File | 22.22 KB | 0644 |
|
objective.pyc | File | 19.74 KB | 0644 |
|
ooc.py | File | 2.93 KB | 0644 |
|
ooc.pyc | File | 3 KB | 0644 |
|
other.py | File | 1.73 KB | 0644 |
|
other.pyc | File | 2.71 KB | 0644 |
|
parasail.py | File | 2.67 KB | 0644 |
|
parasail.pyc | File | 2.58 KB | 0644 |
|
parsers.py | File | 26.94 KB | 0644 |
|
parsers.pyc | File | 23.14 KB | 0644 |
|
pascal.py | File | 31.88 KB | 0644 |
|
pascal.pyc | File | 29.58 KB | 0644 |
|
pawn.py | File | 7.9 KB | 0644 |
|
pawn.pyc | File | 7.16 KB | 0644 |
|
perl.py | File | 31.26 KB | 0644 |
|
perl.pyc | File | 29.81 KB | 0644 |
|
php.py | File | 10.48 KB | 0644 |
|
php.pyc | File | 9.26 KB | 0644 |
|
praat.py | File | 12.26 KB | 0644 |
|
praat.pyc | File | 11.46 KB | 0644 |
|
prolog.py | File | 11.78 KB | 0644 |
|
prolog.pyc | File | 8.05 KB | 0644 |
|
python.py | File | 41.39 KB | 0644 |
|
python.pyc | File | 36.48 KB | 0644 |
|
qvt.py | File | 5.97 KB | 0644 |
|
qvt.pyc | File | 5.27 KB | 0644 |
|
r.py | File | 23.2 KB | 0644 |
|
r.pyc | File | 32.97 KB | 0644 |
|
rdf.py | File | 9.18 KB | 0644 |
|
rdf.pyc | File | 6.45 KB | 0644 |
|
rebol.py | File | 18.18 KB | 0644 |
|
rebol.pyc | File | 13.49 KB | 0644 |
|
resource.py | File | 2.86 KB | 0644 |
|
resource.pyc | File | 2.86 KB | 0644 |
|
rnc.py | File | 1.94 KB | 0644 |
|
rnc.pyc | File | 1.78 KB | 0644 |
|
roboconf.py | File | 2.02 KB | 0644 |
|
roboconf.pyc | File | 2.34 KB | 0644 |
|
robotframework.py | File | 18.3 KB | 0644 |
|
robotframework.pyc | File | 25.03 KB | 0644 |
|
ruby.py | File | 21.62 KB | 0644 |
|
ruby.pyc | File | 16.91 KB | 0644 |
|
rust.py | File | 7.51 KB | 0644 |
|
rust.pyc | File | 5.67 KB | 0644 |
|
sas.py | File | 9.23 KB | 0644 |
|
sas.pyc | File | 9.63 KB | 0644 |
|
scripting.py | File | 66.17 KB | 0644 |
|
scripting.pyc | File | 67.97 KB | 0644 |
|
shell.py | File | 30.69 KB | 0644 |
|
shell.pyc | File | 24.13 KB | 0644 |
|
smalltalk.py | File | 7.05 KB | 0644 |
|
smalltalk.pyc | File | 5.24 KB | 0644 |
|
smv.py | File | 2.74 KB | 0644 |
|
smv.pyc | File | 3.16 KB | 0644 |
|
snobol.py | File | 2.69 KB | 0644 |
|
snobol.pyc | File | 2.27 KB | 0644 |
|
special.py | File | 3.08 KB | 0644 |
|
special.pyc | File | 3.86 KB | 0644 |
|
sql.py | File | 28.75 KB | 0644 |
|
sql.pyc | File | 28.6 KB | 0644 |
|
stata.py | File | 3.54 KB | 0644 |
|
stata.pyc | File | 2.7 KB | 0644 |
|
supercollider.py | File | 3.43 KB | 0644 |
|
supercollider.pyc | File | 3.83 KB | 0644 |
|
tcl.py | File | 5.27 KB | 0644 |
|
tcl.pyc | File | 5.1 KB | 0644 |
|
templates.py | File | 71.73 KB | 0644 |
|
templates.pyc | File | 74.43 KB | 0644 |
|
testing.py | File | 10.5 KB | 0644 |
|
testing.pyc | File | 8.42 KB | 0644 |
|
text.py | File | 977 B | 0644 |
|
text.pyc | File | 1.54 KB | 0644 |
|
textedit.py | File | 5.92 KB | 0644 |
|
textedit.pyc | File | 5.79 KB | 0644 |
|
textfmts.py | File | 10.6 KB | 0644 |
|
textfmts.pyc | File | 8.41 KB | 0644 |
|
theorem.py | File | 18.59 KB | 0644 |
|
theorem.pyc | File | 20.07 KB | 0644 |
|
trafficscript.py | File | 1.51 KB | 0644 |
|
trafficscript.pyc | File | 1.8 KB | 0644 |
|
typoscript.py | File | 8.2 KB | 0644 |
|
typoscript.pyc | File | 6.41 KB | 0644 |
|
urbi.py | File | 5.62 KB | 0644 |
|
urbi.pyc | File | 5.48 KB | 0644 |
|
varnish.py | File | 7.1 KB | 0644 |
|
varnish.pyc | File | 7.15 KB | 0644 |
|
verification.py | File | 3.62 KB | 0644 |
|
verification.pyc | File | 3.9 KB | 0644 |
|
web.py | File | 918 B | 0644 |
|
web.pyc | File | 1.4 KB | 0644 |
|
webmisc.py | File | 38.96 KB | 0644 |
|
webmisc.pyc | File | 28.98 KB | 0644 |
|
whiley.py | File | 3.92 KB | 0644 |
|
whiley.pyc | File | 3.23 KB | 0644 |
|
x10.py | File | 1.92 KB | 0644 |
|
x10.pyc | File | 2.6 KB | 0644 |
|