{"version":3,"file":"app-CwcC-nzM.js","sources":["../../../node_modules/@wooorm/starry-night/lang/source.c.js","../../../node_modules/@wooorm/starry-night/lang/source.c++.js","../../../node_modules/@wooorm/starry-night/lang/source.c.platform.js","../../../node_modules/@wooorm/starry-night/lang/source.cs.js","../../../node_modules/@wooorm/starry-night/lang/source.css.js","../../../node_modules/@wooorm/starry-night/lang/source.css.less.js","../../../node_modules/@wooorm/starry-night/lang/source.css.scss.js","../../../node_modules/@wooorm/starry-night/lang/source.diff.js","../../../node_modules/@wooorm/starry-night/lang/source.go.js","../../../node_modules/@wooorm/starry-night/lang/source.graphql.js","../../../node_modules/@wooorm/starry-night/lang/source.ini.js","../../../node_modules/@wooorm/starry-night/lang/source.java.js","../../../node_modules/@wooorm/starry-night/lang/source.js.js","../../../node_modules/@wooorm/starry-night/lang/source.json.js","../../../node_modules/@wooorm/starry-night/lang/source.kotlin.js","../../../node_modules/@wooorm/starry-night/lang/source.lua.js","../../../node_modules/@wooorm/starry-night/lang/source.makefile.js","../../../node_modules/@wooorm/starry-night/lang/source.objc.js","../../../node_modules/@wooorm/starry-night/lang/source.objc.platform.js","../../../node_modules/@wooorm/starry-night/lang/source.perl.js","../../../node_modules/@wooorm/starry-night/lang/source.python.js","../../../node_modules/@wooorm/starry-night/lang/source.r.js","../../../node_modules/@wooorm/starry-night/lang/source.ruby.js","../../../node_modules/@wooorm/starry-night/lang/source.rust.js","../../../node_modules/@wooorm/starry-night/lang/source.shell.js","../../../node_modules/@wooorm/starry-night/lang/source.sql.js","../../../node_modules/@wooorm/starry-night/lang/source.swift.js","../../../node_modules/@wooorm/starry-night/lang/source.ts.js","../../../node_modules/@wooorm/starry-night/lang/source.vbnet.js","../../../node_modules/@wooorm/starry-night/lang/source.yaml.js","../../../node_modules/@wooorm/starry-night/lang/text.html.basic.js","../../../node_modules/@wooorm/starry-night/lang/text.html.php.js","../../../node_modules/@wooorm/starry-night/lang/text.md.js","../../../node_modules/@wooorm/starry-night/lang/text.xml.js","../../../node_modules/@wooorm/starry-night/lang/text.xml.svg.js","../../../node_modules/@wooorm/starry-night/lib/common.js","../../../node_modules/vscode-oniguruma/release/main.js","../../../node_modules/vscode-textmate/release/main.js","../../../node_modules/@wooorm/starry-night/lib/theme.js","../../../node_modules/@wooorm/starry-night/lib/parse.js","../../../node_modules/@wooorm/starry-night/lib/get-oniguruma.default.js","../../../node_modules/@wooorm/starry-night/lib/index.js","../../../node_modules/property-information/lib/util/schema.js","../../../node_modules/property-information/lib/util/merge.js","../../../node_modules/property-information/lib/normalize.js","../../../node_modules/property-information/lib/util/info.js","../../../node_modules/property-information/lib/util/types.js","../../../node_modules/property-information/lib/util/defined-info.js","../../../node_modules/property-information/lib/util/create.js","../../../node_modules/property-information/lib/aria.js","../../../node_modules/property-information/lib/util/case-sensitive-transform.js","../../../node_modules/property-information/lib/util/case-insensitive-transform.js","../../../node_modules/property-information/lib/html.js","../../../node_modules/property-information/lib/svg.js","../../../node_modules/property-information/lib/xlink.js","../../../node_modules/property-information/lib/xmlns.js","../../../node_modules/property-information/lib/xml.js","../../../node_modules/property-information/lib/find.js","../../../node_modules/property-information/index.js","../../../node_modules/web-namespaces/index.js","../../../node_modules/hast-util-to-dom/lib/index.js","../../../resources/js/highlighter.js"],"sourcesContent":["// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed permissive.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n dependencies: ['source.c.platform'],\n extensions: [\n '.c',\n '.cats',\n '.h',\n '.h.in',\n '.idc',\n '.opencl',\n '.upc',\n '.xbm',\n '.xpm',\n '.xs'\n ],\n names: [\n 'c',\n 'dtrace',\n 'dtrace-script',\n 'oncrpc',\n 'opencl',\n 'rpc',\n 'rpcgen',\n 'unified-parallel-c',\n 'x-bitmap',\n 'x-pixmap',\n 'xbm',\n 'xdr',\n 'xpm',\n 'xs'\n ],\n patterns: [\n {include: '#preprocessor-rule-enabled'},\n {include: '#preprocessor-rule-disabled'},\n {include: '#preprocessor-rule-other'},\n {include: '#comments'},\n {include: 'source.c.platform'},\n {\n match:\n '\\\\b(break|case|continue|default|do|else|for|goto|if|_Pragma|return|switch|while)\\\\b',\n name: 'keyword.control.c'\n },\n {\n match:\n '\\\\b(asm|__asm__|auto|bool|_Bool|char|_Complex|double|enum|float|_Imaginary|int|long|short|signed|struct|typedef|union|unsigned|void)\\\\b',\n name: 'storage.type.c'\n },\n {\n match: '\\\\b(const|extern|register|restrict|static|volatile|inline)\\\\b',\n name: 'storage.modifier.c'\n },\n {match: '\\\\bk[A-Z]\\\\w*\\\\b', name: 'constant.other.variable.mac-classic.c'},\n {\n match: '\\\\bg[A-Z]\\\\w*\\\\b',\n name: 'variable.other.readwrite.global.mac-classic.c'\n },\n {\n match: '\\\\bs[A-Z]\\\\w*\\\\b',\n name: 'variable.other.readwrite.static.mac-classic.c'\n },\n {match: '\\\\b(NULL|true|false|TRUE|FALSE)\\\\b', name: 'constant.language.c'},\n {include: '#sizeof'},\n {\n captures: {\n inc: {name: 'invalid.illegal.digit-separator-should-not-be-last.c++'}\n },\n match:\n \"(?x)\\\\b\\n\\t\\t\\t( (?i:\\n\\t\\t\\t 0x ( [0-9A-Fa-f]+ ( ' [0-9A-Fa-f]+ )* )? # Hexadecimal\\n\\t\\t\\t | 0b ( [0-1]+ ( ' [0-1]+ )* )? # Binary\\n\\t\\t\\t | 0 ( [0-7]+ ( ' [0-7]+ )* ) # Octal\\n\\t\\t\\t | ( [0-9]+ ( ' [0-9]+ )* ) # Decimal\\n\\t\\t\\t )\\n\\t\\t\\t ( ([uUfF] | u?ll? | U?LL?)\\\\b | (?') | \\\\b )\\n\\t\\t\\t| ( [0-9]+ ( ' [0-9]+ )* )?\\n\\t\\t\\t (?i:\\n\\t\\t\\t \\\\. ( [0-9]+ ( ' [0-9]+ )* ) E(\\\\+|-)? ( [0-9]+ ( ' [0-9]+ )* )\\n\\t\\t\\t | \\\\. ( [0-9]+ ( ' [0-9]+ )* )\\n\\t\\t\\t | E(\\\\+|-)? ( [0-9]+ ( ' [0-9]+ )* )\\n\\t\\t\\t )\\n\\t\\t\\t ( (?') | \\\\b )\\n\\t\\t\\t)\",\n name: 'constant.numeric.c'\n },\n {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.c'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.c'}},\n name: 'string.quoted.double.c',\n patterns: [\n {include: '#string_escaped_char'},\n {include: '#string_placeholder'}\n ]\n },\n {\n begin: \"'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.c'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.c'}},\n name: 'string.quoted.single.c',\n patterns: [{include: '#string_escaped_char'}]\n },\n {\n begin:\n '(?x)\\n \\t\\t^\\\\s*\\\\#\\\\s*(define)\\\\s+ # define\\n \\t\\t((?[a-zA-Z_][a-zA-Z0-9_]*)) # macro name\\n \\t\\t(?: # and optionally:\\n \\t\\t (\\\\() # an open parenthesis\\n \\t\\t (\\n \\t\\t \\\\s* \\\\g \\\\s* # first argument\\n \\t\\t ((,) \\\\s* \\\\g \\\\s*)* # additional arguments\\n \\t\\t (?:\\\\.\\\\.\\\\.)? # varargs ellipsis?\\n \\t\\t )\\n \\t\\t (\\\\)) # a close parenthesis\\n \\t\\t)?\\n \\t',\n beginCaptures: {\n 1: {name: 'keyword.control.import.define.c'},\n 2: {name: 'entity.name.function.preprocessor.c'},\n 4: {name: 'punctuation.definition.parameters.begin.c'},\n 5: {name: 'variable.parameter.preprocessor.c'},\n 7: {name: 'punctuation.separator.parameters.c'},\n 8: {name: 'punctuation.definition.parameters.end.c'}\n },\n end: '(?=(?://|/\\\\*))|$',\n name: 'meta.preprocessor.macro.c',\n patterns: [\n {\n match: '(?>\\\\\\\\\\\\s*\\\\n)',\n name: 'punctuation.separator.continuation.c'\n },\n {include: '$base'}\n ]\n },\n {\n begin: '^\\\\s*#\\\\s*(error|warning)\\\\b',\n captures: {1: {name: 'keyword.control.import.error.c'}},\n end: '$',\n name: 'meta.preprocessor.diagnostic.c',\n patterns: [\n {match: '(?>\\\\\\\\\\\\s*\\\\n)', name: 'punctuation.separator.continuation.c'}\n ]\n },\n {\n begin: '^\\\\s*#\\\\s*(include|import)\\\\b',\n captures: {1: {name: 'keyword.control.import.include.c'}},\n end: '(?=(?://|/\\\\*))|$',\n name: 'meta.preprocessor.c.include',\n patterns: [\n {\n match: '(?>\\\\\\\\\\\\s*\\\\n)',\n name: 'punctuation.separator.continuation.c'\n },\n {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.c'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.c'}},\n name: 'string.quoted.double.include.c'\n },\n {\n begin: '<',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.c'}},\n end: '>',\n endCaptures: {0: {name: 'punctuation.definition.string.end.c'}},\n name: 'string.quoted.other.lt-gt.include.c'\n }\n ]\n },\n {include: '#pragma-mark'},\n {\n begin:\n '^\\\\s*#\\\\s*(define|defined|elif|else|if|ifdef|ifndef|line|pragma|undef)\\\\b',\n captures: {1: {name: 'keyword.control.import.c'}},\n end: '(?=(?://|/\\\\*))|$',\n name: 'meta.preprocessor.c',\n patterns: [\n {match: '(?>\\\\\\\\\\\\s*\\\\n)', name: 'punctuation.separator.continuation.c'}\n ]\n },\n {match: '\\\\b([a-z0-9_]+_t)\\\\b', name: 'support.type.posix-reserved.c'},\n {include: '#block'},\n {\n begin:\n '(?x)\\n \\t\\t(?: ^ # begin-of-line\\n \\t\\t | \\n \\t\\t (?: (?= \\\\s ) (?]) # or type modifier before name\\n \\t\\t )\\n \\t\\t)\\n \\t\\t(\\\\s*) (?!(while|for|do|if|else|switch|catch|enumerate|return|sizeof|[cr]?iterate|(?:::)?new|(?:::)?delete)\\\\s*\\\\()\\n \\t\\t(\\n \\t\\t\\t(?: [A-Za-z_][A-Za-z0-9_]*+ | :: )++ | # actual name\\n \\t\\t\\t(?: (?<=operator) (?: [-*&<>=+!]+ | \\\\(\\\\) | \\\\[\\\\] ) ) # if it is a C++ operator\\n \\t\\t)\\n \\t\\t \\\\s*(?=\\\\()',\n beginCaptures: {\n 1: {name: 'punctuation.whitespace.function.leading.c'},\n 3: {name: 'entity.name.function.c'},\n 4: {name: 'punctuation.definition.parameters.c'}\n },\n end: '(?<=\\\\})|(?=#)|(;)',\n name: 'meta.function.c',\n patterns: [\n {include: '#comments'},\n {include: '#parens'},\n {\n match: '\\\\b(const|final|override|noexcept)\\\\b',\n name: 'storage.modifier.$1.c++'\n },\n {include: '#block'}\n ]\n }\n ],\n repository: {\n access: {\n captures: {\n 1: {name: 'punctuation.separator.variable-access.c'},\n 2: {name: 'storage.modifier.template.c++'},\n 3: {name: 'variable.other.dot-access.c'}\n },\n match:\n '(\\\\.|\\\\->)(?:\\\\s*(template)\\\\s+)?([a-zA-Z_][a-zA-Z_0-9]*)\\\\b(?!\\\\s*\\\\()'\n },\n block: {\n patterns: [\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.section.block.begin.c'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.section.block.end.c'}},\n name: 'meta.block.c',\n patterns: [{include: '#block_innards'}]\n }\n ]\n },\n block_innards: {\n patterns: [\n {include: '#preprocessor-rule-enabled-block'},\n {include: '#preprocessor-rule-disabled-block'},\n {include: '#preprocessor-rule-other-block'},\n {include: '#sizeof'},\n {include: '#access'},\n {include: 'source.c.platform#functions'},\n {include: '#c_function_call'},\n {\n captures: {\n 1: {name: 'variable.other.c'},\n 2: {name: 'punctuation.definition.parameters.c'}\n },\n match:\n '(?x)\\n\\t\\t\\t (?x)\\n\\t\\t\\t(?: \\n\\t\\t\\t (?: (?= \\\\s ) (?=+!]+ | \\\\(\\\\) | \\\\[\\\\] ) )? # if it is a C++ operator\\n\\t\\t\\t)\\n\\t\\t\\t \\\\s*(\\\\()',\n name: 'meta.initialization.c'\n },\n {include: '#block'},\n {include: '$base'}\n ]\n },\n c_function_call: {\n captures: {\n 1: {name: 'punctuation.whitespace.function-call.leading.c'},\n 2: {name: 'support.function.any-method.c'},\n 3: {name: 'punctuation.definition.parameters.c'}\n },\n match:\n '(?x) (?: (?= \\\\s ) (?:(?<=else|new|return) | (?\\\\\\\\\\\\s*\\\\n)',\n name: 'punctuation.separator.continuation.c++'\n }\n ]\n }\n ]\n }\n ]\n },\n disabled: {\n begin: '^\\\\s*#\\\\s*if(n?def)?\\\\b.*$',\n end: '^\\\\s*#\\\\s*endif\\\\b',\n patterns: [{include: '#disabled'}, {include: '#pragma-mark'}]\n },\n parens: {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.parens.begin.c'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.section.parens.end.c'}},\n name: 'meta.parens.c',\n patterns: [{include: '$base'}]\n },\n 'pragma-mark': {\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.pragma.c'},\n 3: {name: 'meta.toc-list.pragma-mark.c'}\n },\n match: '^\\\\s*(#\\\\s*(pragma\\\\s+mark)\\\\s+(.*))',\n name: 'meta.section'\n },\n 'preprocessor-rule-disabled': {\n begin: '^\\\\s*(#(if)\\\\s+(0)\\\\b).*',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.if.c'},\n 3: {name: 'constant.numeric.preprocessor.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b)',\n patterns: [\n {\n begin: '^\\\\s*(#\\\\s*(else)\\\\b)',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.else.c'}\n },\n end: '(?=^\\\\s*#\\\\s*endif\\\\b)',\n patterns: [{include: '$base'}]\n },\n {\n end: '(?=^\\\\s*#\\\\s*(else|endif)\\\\b)',\n name: 'comment.block.preprocessor.if-branch',\n patterns: [{include: '#disabled'}, {include: '#pragma-mark'}]\n }\n ]\n },\n 'preprocessor-rule-disabled-block': {\n begin: '^\\\\s*(#(if)\\\\s+(0)\\\\b).*',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.if.c'},\n 3: {name: 'constant.numeric.preprocessor.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b)',\n patterns: [\n {\n begin: '^\\\\s*(#\\\\s*(else)\\\\b)',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.else.c'}\n },\n end: '(?=^\\\\s*#\\\\s*endif\\\\b)',\n patterns: [{include: '#block_innards'}]\n },\n {\n end: '(?=^\\\\s*#\\\\s*(else|endif)\\\\b)',\n name: 'comment.block.preprocessor.if-branch.in-block',\n patterns: [{include: '#disabled'}, {include: '#pragma-mark'}]\n }\n ]\n },\n 'preprocessor-rule-enabled': {\n begin: '^\\\\s*(#(if)\\\\s+(0*1)\\\\b)',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.if.c'},\n 3: {name: 'constant.numeric.preprocessor.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b)',\n patterns: [\n {\n begin: '^\\\\s*(#\\\\s*(else)\\\\b).*',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.else.c'}\n },\n contentName: 'comment.block.preprocessor.else-branch',\n end: '(?=^\\\\s*#\\\\s*endif\\\\b)',\n patterns: [{include: '#disabled'}, {include: '#pragma-mark'}]\n },\n {end: '(?=^\\\\s*#\\\\s*(else|endif)\\\\b)', patterns: [{include: '$base'}]}\n ]\n },\n 'preprocessor-rule-enabled-block': {\n begin: '^\\\\s*(#(if)\\\\s+(0*1)\\\\b)',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.if.c'},\n 3: {name: 'constant.numeric.preprocessor.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b)',\n patterns: [\n {\n begin: '^\\\\s*(#\\\\s*(else)\\\\b).*',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.else.c'}\n },\n contentName: 'comment.block.preprocessor.else-branch.in-block',\n end: '(?=^\\\\s*#\\\\s*endif\\\\b)',\n patterns: [{include: '#disabled'}, {include: '#pragma-mark'}]\n },\n {\n end: '(?=^\\\\s*#\\\\s*(else|endif)\\\\b)',\n patterns: [{include: '#block_innards'}]\n }\n ]\n },\n 'preprocessor-rule-other': {\n begin: '^\\\\s*(#\\\\s*(if(n?def)?)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b)',\n patterns: [{include: '$base'}]\n },\n 'preprocessor-rule-other-block': {\n begin: '^\\\\s*(#\\\\s*(if(n?def)?)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b)',\n patterns: [{include: '#block_innards'}]\n },\n sizeof: {match: '\\\\b(sizeof)\\\\b', name: 'keyword.operator.sizeof.c'},\n string_escaped_char: {\n patterns: [\n {\n match:\n '\\\\\\\\(\\\\\\\\|[abefnprtv\\'\"?]|[0-3]\\\\d{0,2}|[4-7]\\\\d?|x[a-fA-F0-9]{0,2}|u[a-fA-F0-9]{0,4}|U[a-fA-F0-9]{0,8})',\n name: 'constant.character.escape.c'\n },\n {match: '\\\\\\\\.', name: 'invalid.illegal.unknown-escape.c'}\n ]\n },\n string_placeholder: {\n patterns: [\n {\n match:\n \"(?x)%\\n \\t\\t\\t\\t\\t\\t(\\\\d+\\\\$)? # field (argument #)\\n \\t\\t\\t\\t\\t\\t[#0\\\\- +']* # flags\\n \\t\\t\\t\\t\\t\\t[,;:_]? # separator character (AltiVec)\\n \\t\\t\\t\\t\\t\\t((-?\\\\d+)|\\\\*(-?\\\\d+\\\\$)?)? # minimum field width\\n \\t\\t\\t\\t\\t\\t(\\\\.((-?\\\\d+)|\\\\*(-?\\\\d+\\\\$)?)?)? # precision\\n \\t\\t\\t\\t\\t\\t(hh|h|ll|l|j|t|z|q|L|vh|vl|v|hv|hl)? # length modifier\\n \\t\\t\\t\\t\\t\\t[diouxXDOUeEfFgGaACcSspn%] # conversion type\\n \\t\\t\\t\\t\\t\",\n name: 'constant.other.placeholder.c'\n }\n ]\n }\n },\n scopeName: 'source.c'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed permissive.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n dependencies: ['source.c'],\n extensions: [\n '.asc',\n '.ash',\n '.asy',\n '.c++',\n '.cc',\n '.cp',\n '.cpp',\n '.cppm',\n '.cxx',\n '.edc',\n '.gml',\n '.h++',\n '.hh',\n '.hpp',\n '.hxx',\n '.inl',\n '.ino',\n '.ipp',\n '.ixx',\n '.metal',\n '.re',\n '.tcc',\n '.tpp',\n '.txx'\n ],\n names: [\n 'ags',\n 'ags-script',\n 'asymptote',\n 'c++',\n 'cpp',\n 'edje-data-collection',\n 'game-maker-language',\n 'metal',\n 'swig'\n ],\n patterns: [\n {include: '#special_block'},\n {include: '#strings'},\n {\n captures: {\n 1: {name: 'keyword.control.c++'},\n 2: {name: 'keyword.control.c++'}\n },\n match: '\\\\b(if)\\\\s+(constexpr)\\\\b'\n },\n {\n captures: {\n 1: {name: 'punctuation.separator.scope.c++'},\n 2: {name: 'storage.modifier.template.c++'}\n },\n match: '(::)\\\\s*(template)\\\\b'\n },\n {include: 'source.c'},\n {match: '\\\\b(friend|explicit|virtual)\\\\b', name: 'storage.modifier.$1.c++'},\n {match: '\\\\b(private|protected|public):', name: 'storage.modifier.$1.c++'},\n {\n match: '\\\\b(catch|operator|try|throw|using)\\\\b',\n name: 'keyword.control.c++'\n },\n {\n match: '\\\\bdelete\\\\b(\\\\s*\\\\[\\\\])?|\\\\bnew\\\\b(?!])',\n name: 'keyword.control.c++'\n },\n {\n match: '\\\\b(f|m)[A-Z]\\\\w*\\\\b',\n name: 'variable.other.readwrite.member.c++'\n },\n {match: '\\\\b(this|nullptr)\\\\b', name: 'variable.language.c++'},\n {match: '\\\\b(template|concept)\\\\b\\\\s*', name: 'storage.type.template.c++'},\n {\n match: '\\\\b(const_cast|dynamic_cast|reinterpret_cast|static_cast)\\\\b\\\\s*',\n name: 'keyword.operator.cast.c++'\n },\n {\n match:\n '\\\\b(co_await|co_return|co_yield|and|and_eq|bitand|bitor|compl|not|not_eq|or|or_eq|typeid|xor|xor_eq)\\\\b',\n name: 'keyword.operator.c++'\n },\n {\n match: '\\\\b(class|wchar_t|char8_t|char16_t|char32_t)\\\\b',\n name: 'storage.type.c++'\n },\n {\n match:\n '\\\\b(consteval|constinit|constexpr|export|mutable|typename|thread_local|noexcept|final|override)\\\\b',\n name: 'storage.modifier.c++'\n },\n {\n begin:\n '(?x)\\n \\t\\t\\t\\t(?: ^ # begin-of-line\\n \\t\\t\\t\\t | (?: (?',\n name: 'meta.angle-brackets.c++',\n patterns: [{include: '#angle_brackets'}, {include: '$base'}]\n },\n block: {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.section.block.begin.c'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.section.block.end.c'}},\n name: 'meta.block.c++',\n patterns: [\n {\n captures: {\n 1: {name: 'support.function.any-method.c'},\n 2: {name: 'punctuation.definition.parameters.c'}\n },\n match:\n '(?x)\\n \\t\\t\\t\\t(\\n \\t\\t\\t\\t\\t(?!while|for|do|if|else|switch|catch|return)(?: \\\\b[A-Za-z_][A-Za-z0-9_]*+\\\\b | :: )*+ # actual name\\n \\t\\t\\t\\t)\\n \\t\\t\\t\\t \\\\s*(\\\\()',\n name: 'meta.function-call.c'\n },\n {include: '$base'}\n ]\n },\n constructor: {\n patterns: [\n {\n begin:\n '(?x)\\n \\t\\t\\t\\t(?: ^\\\\s*) # begin-of-line\\n \\t\\t\\t\\t((?!while|for|do|if|else|switch|catch)[A-Za-z_][A-Za-z0-9_:]*) # actual name\\n \\t\\t\\t\\t \\\\s*(\\\\() # start bracket or end-of-line\\n \\t\\t\\t',\n beginCaptures: {\n 1: {name: 'entity.name.function.c++'},\n 2: {name: 'punctuation.definition.parameters.begin.c'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.parameters.end.c'}},\n name: 'meta.function.constructor.c++',\n patterns: [{include: '$base'}]\n },\n {\n begin:\n '(?x)\\n \\t\\t\\t\\t(:) # begin-of-line\\n \\t\\t\\t\\t((?=\\\\s*[A-Za-z_][A-Za-z0-9_:]* # actual name\\n \\t\\t\\t\\t \\\\s*(\\\\())) # start bracket or end-of-line\\n \\t\\t\\t',\n beginCaptures: {1: {name: 'punctuation.definition.parameters.c'}},\n end: '(?=\\\\{)',\n name: 'meta.function.constructor.initializer-list.c++',\n patterns: [{include: '$base'}]\n }\n ]\n },\n special_block: {\n patterns: [\n {\n begin: '\\\\b(namespace)\\\\b\\\\s*([_A-Za-z][_A-Za-z0-9]*\\\\b)?+',\n beginCaptures: {\n 1: {name: 'storage.type.c++'},\n 2: {name: 'entity.name.type.c++'}\n },\n captures: {1: {name: 'keyword.control.namespace.$2'}},\n end: '(?<=\\\\})|(?=(;|,|\\\\(|\\\\)|>|\\\\[|\\\\]|=))',\n name: 'meta.namespace-block${2:+.$2}.c++',\n patterns: [\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.scope.c++'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.scope.c++'}},\n patterns: [\n {include: '#special_block'},\n {include: '#constructor'},\n {include: '$base'}\n ]\n },\n {include: '$base'}\n ]\n },\n {\n begin:\n '\\\\b(class|struct)\\\\b\\\\s*([_A-Za-z][_A-Za-z0-9]*\\\\b)?+(\\\\s*:\\\\s*(public|protected|private)\\\\b\\\\s*([_A-Za-z][_A-Za-z0-9]*\\\\b)((\\\\s*,\\\\s*(public|protected|private)\\\\b\\\\s*[_A-Za-z][_A-Za-z0-9]*\\\\b)*))?',\n beginCaptures: {\n 1: {name: 'storage.type.c++'},\n 2: {name: 'entity.name.type.c++'},\n 4: {name: 'storage.type.modifier.c++'},\n 5: {name: 'entity.name.type.inherited.c++'},\n 6: {\n patterns: [\n {\n match: '\\\\b(public|protected|private)\\\\b',\n name: 'storage.type.modifier.c++'\n },\n {\n match: '[_A-Za-z][_A-Za-z0-9]*',\n name: 'entity.name.type.inherited.c++'\n }\n ]\n }\n },\n end: '(?<=\\\\})|(?=(;|\\\\(|\\\\)|>|\\\\[|\\\\]|=))',\n name: 'meta.class-struct-block.c++',\n patterns: [\n {include: '#angle_brackets'},\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.section.block.begin.c++'}},\n end: '(\\\\})(\\\\s*\\\\n)?',\n endCaptures: {\n 1: {name: 'punctuation.definition.invalid.c++'},\n 2: {name: 'invalid.illegal.you-forgot-semicolon.c++'}\n },\n patterns: [\n {include: '#special_block'},\n {include: '#constructor'},\n {include: '$base'}\n ]\n },\n {include: '$base'}\n ]\n },\n {\n begin: '\\\\b(extern)(?=\\\\s*\")',\n beginCaptures: {1: {name: 'storage.modifier.c++'}},\n end: '(?<=\\\\})|(?=\\\\w)',\n name: 'meta.extern-block.c++',\n patterns: [\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.section.block.begin.c'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.section.block.end.c'}},\n patterns: [{include: '#special_block'}, {include: '$base'}]\n },\n {include: '$base'}\n ]\n }\n ]\n },\n strings: {\n patterns: [\n {\n begin: '(u|u8|U|L)?\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.c++'},\n 1: {name: 'meta.encoding.c++'}\n },\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.c++'}},\n name: 'string.quoted.double.c++',\n patterns: [\n {\n match: '\\\\\\\\u[0-9A-Fa-f]{4}|\\\\\\\\U[0-9A-Fa-f]{8}',\n name: 'constant.character.escape.c++'\n },\n {\n match: '\\\\\\\\[\\'\"?\\\\\\\\abfnrtv]',\n name: 'constant.character.escape.c++'\n },\n {match: '\\\\\\\\[0-7]{1,3}', name: 'constant.character.escape.c++'},\n {match: '\\\\\\\\x[0-9A-Fa-f]+', name: 'constant.character.escape.c++'}\n ]\n },\n {\n begin: '(u|u8|U|L)?R\"(?:([^ ()\\\\\\\\\\\\t]{0,16})|([^ ()\\\\\\\\\\\\t]*))\\\\(',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.c++'},\n 1: {name: 'meta.encoding.c++'},\n 3: {name: 'invalid.illegal.delimiter-too-long.c++'}\n },\n end: '\\\\)\\\\2(\\\\3)\"',\n endCaptures: {\n 0: {name: 'punctuation.definition.string.end.c++'},\n 1: {name: 'invalid.illegal.delimiter-too-long.c++'}\n },\n name: 'string.quoted.double.raw.c++'\n }\n ]\n }\n },\n scopeName: 'source.c++'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed permissive.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [],\n names: [],\n patterns: [\n {\n match: '\\\\bkAudioUnitSubType_3DMixer\\\\b',\n name: 'invalid.deprecated.10.10.support.constant.c'\n },\n {\n match:\n '\\\\bkCF(?:CalendarUnitWeek|Gregorian(?:AllUnits|Units(?:Days|Hours|M(?:inutes|onths)|Seconds|Years)))\\\\b',\n name: 'invalid.deprecated.10.10.support.constant.cf.c'\n },\n {\n match: '\\\\bLS(?:ApplicationParameters|LaunchFSRefSpec)\\\\b',\n name: 'invalid.deprecated.10.10.support.type.c'\n },\n {\n match: '\\\\bCFGregorian(?:Date|Units)\\\\b',\n name: 'invalid.deprecated.10.10.support.type.cf.c'\n },\n {\n match:\n '\\\\bkLSItem(?:ContentType|Display(?:Kind|Name)|Extension(?:IsHidden)?|File(?:Creator|Type)|IsInvisible|QuarantineProperties|RoleHandlerDisplayName)\\\\b',\n name: 'invalid.deprecated.10.10.support.variable.c'\n },\n {\n match:\n '\\\\bk(?:AudioUnitProperty_(?:3DMixer(?:AttenuationCurve|Distance(?:Atten|Params)|RenderingFlags)|D(?:istanceAttenuationData|opplerShift)|ReverbPreset)|CT(?:Adobe(?:CNS1CharacterCollection|GB1CharacterCollection|Japan(?:1CharacterCollection|2CharacterCollection)|Korea1CharacterCollection)|CenterTextAlignment|Font(?:A(?:lertHeaderFontType|pplicationFontType)|ControlContentFontType|DefaultOrientation|EmphasizedSystem(?:DetailFontType|FontType)|HorizontalOrientation|LabelFontType|M(?:e(?:nu(?:Item(?:CmdKeyFontType|FontType|MarkFontType)|TitleFontType)|ssageFontType)|ini(?:EmphasizedSystemFontType|SystemFontType))|NoFontType|P(?:aletteFontType|ushButtonFontType)|S(?:mall(?:EmphasizedSystemFontType|SystemFontType|ToolbarFontType)|ystem(?:DetailFontType|FontType))|Tool(?:TipFontType|barFontType)|U(?:serF(?:ixedPitchFontType|ontType)|tilityWindowTitleFontType)|V(?:erticalOrientation|iewsFontType)|WindowTitleFontType)|IdentityMappingCharacterCollection|JustifiedTextAlignment|LeftTextAlignment|NaturalTextAlignment|RightTextAlignment)|LS(?:HandlerOptions(?:Default|IgnoreCreator)|ItemInfo(?:App(?:IsScriptable|Prefers(?:Classic|Native))|ExtensionIsHidden|Is(?:A(?:liasFile|pplication)|C(?:lassicApp|ontainer)|Invisible|NativeApp|P(?:ackage|lainFile)|Symlink|Volume))|Launch(?:InClassic|StartClassic)|Request(?:A(?:ll(?:Flags|Info)|ppTypeFlags)|BasicFlagsOnly|Extension(?:FlagsOnly)?|IconAndKind|TypeCreator)))\\\\b',\n name: 'invalid.deprecated.10.11.support.constant.c'\n },\n {\n match: '\\\\b(?:AUDistanceAttenuationData|LSItemInfoRecord)\\\\b',\n name: 'invalid.deprecated.10.11.support.type.c'\n },\n {\n match:\n '\\\\bk(?:C(?:F(?:FTPResource(?:Group|Link|Mod(?:Date|e)|Name|Owner|Size|Type)|Stream(?:NetworkServiceTypeVoIP|Property(?:FTP(?:AttemptPersistentConnection|F(?:etchResourceInfo|ileTransferOffset)|P(?:assword|roxy(?:Host|P(?:assword|ort)|User)?)|ResourceSize|Use(?:PassiveMode|rName))|HTTP(?:AttemptPersistentConnection|Final(?:Request|URL)|Proxy(?:Host|Port)?|Re(?:questBytesWrittenCount|sponseHeader)|S(?:Proxy(?:Host|Port)|houldAutoredirect)))))|GImagePropertyExifSubsecTimeOrginal|TCharacterShapeAttributeName)|IOSurfaceIsGlobal|LSSharedFileList(?:Favorite(?:Items|Volumes)|Item(?:BeforeFirst|Hidden|Last)|LoginItemHidden|Recent(?:ApplicationItems|DocumentItems|ItemsMaxAmount|ServerItems)|SessionLoginItems|Volumes(?:ComputerVisible|NetworkVisible))|SecUseNoAuthenticationUI)\\\\b',\n name: 'invalid.deprecated.10.11.support.variable.c'\n },\n {\n match: '\\\\bkLSLaunch(?:HasUntrustedContents|InhibitBGOnly|NoParams)\\\\b',\n name: 'invalid.deprecated.10.12.support.constant.c'\n },\n {\n match: '\\\\bOSSpinLock\\\\b',\n name: 'invalid.deprecated.10.12.support.type.c'\n },\n {\n match:\n '\\\\bkSC(?:EntNetPPTP|NetworkInterfaceTypePPTP|ValNetInterfaceSubTypePPTP)\\\\b',\n name: 'invalid.deprecated.10.12.support.variable.c'\n },\n {\n match:\n '\\\\bkCF(?:StreamSocketSecurityLevelSSLv(?:2|3)|URL(?:CustomIconKey|EffectiveIconKey|LabelColorKey))\\\\b',\n name: 'invalid.deprecated.10.12.support.variable.cf.c'\n },\n {\n match:\n '\\\\bk(?:C(?:FNetDiagnostic(?:Connection(?:Down|Indeterminate|Up)|Err|NoErr)|TFontManagerAutoActivationPromptUser)|SecAccessControlTouchID(?:Any|CurrentSet))\\\\b',\n name: 'invalid.deprecated.10.13.support.constant.c'\n },\n {\n match: '\\\\bCFNetDiagnosticStatus\\\\b',\n name: 'invalid.deprecated.10.13.support.type.c'\n },\n {\n match:\n '\\\\bkS(?:CPropNetInterfaceSupportsModemOnHold|SLSessionConfig_(?:3DES_fallback|RC4_fallback|TLSv1_(?:3DES_fallback|RC4_fallback)|default)|ecTrustCertificateTransparencyWhiteList)\\\\b',\n name: 'invalid.deprecated.10.13.support.variable.c'\n },\n {\n match:\n '\\\\bk(?:CVOpenGL(?:Buffer(?:Height|InternalFormat|MaximumMipmapLevel|PoolM(?:aximumBufferAgeKey|inimumBufferCountKey)|Target|Width)|TextureCacheChromaSamplingMode(?:Automatic|BestPerformance|HighestQuality|Key))|SecAttrAccessibleAlways(?:ThisDeviceOnly)?)\\\\b',\n name: 'invalid.deprecated.10.14.support.variable.c'\n },\n {\n match:\n '\\\\bk(?:DTLSProtocol1(?:2)?|S(?:SL(?:Aborted|C(?:l(?:ient(?:Cert(?:None|Re(?:jected|quested)|Sent)|Side)|osed)|onnected)|DatagramType|Handshake|Idle|Protocol(?:2|3(?:Only)?|All|Unknown)|S(?:e(?:rverSide|ssionOption(?:Allow(?:Renegotiation|ServerIdentityChange)|BreakOn(?:C(?:ertRequested|lient(?:Auth|Hello))|ServerAuth)|EnableSessionTickets|Fal(?:lback|seStart)|SendOneByteRecord))|treamType))|ecDataAccessEvent(?:Mask)?)|TLSProtocol(?:1(?:1|2|3|Only)?|MaxSupported))\\\\b',\n name: 'invalid.deprecated.10.15.support.constant.c'\n },\n {\n match:\n '\\\\bk(?:MIDIPropertyNameConfiguration|S(?:CPropNetPPP(?:AuthEAPPlugins|Plugins)|SLSessionConfig_(?:ATSv1(?:_noPFS)?|TLSv1_fallback|anonymous|legacy(?:_DHE)?|standard)))\\\\b',\n name: 'invalid.deprecated.10.15.support.variable.c'\n },\n {\n match: '\\\\bkCGColorSpace(?:DisplayP3_PQ_EOTF|ITUR_2020_PQ_EOTF)\\\\b',\n name: 'invalid.deprecated.10.16.support.variable.quartz.c'\n },\n {\n match: '\\\\bkMIDIProperty(?:FactoryPatchNameFile|UserPatchNameFile)\\\\b',\n name: 'invalid.deprecated.10.2.support.variable.c'\n },\n {\n match: '\\\\bkCFNetServiceFlagIsRegistrationDomain\\\\b',\n name: 'invalid.deprecated.10.4.support.constant.c'\n },\n {\n match:\n '\\\\bk(?:MDItemFS(?:Exists|Is(?:Readable|Writeable))|S(?:CPropUsersConsoleUser(?:GID|Name|UID)|KLanguageTypes))\\\\b',\n name: 'invalid.deprecated.10.4.support.variable.c'\n },\n {\n match: '\\\\bkMDItemSupportFileType\\\\b',\n name: 'invalid.deprecated.10.5.support.variable.c'\n },\n {\n match:\n '\\\\b(?:CM(?:2(?:Header|ProfileHandle)|4Header|A(?:daptationMatrixType|ppleProfileHeader)|B(?:itmap(?:C(?:allBack(?:ProcPtr|UPP)|olorSpace))?|ufferLocation)|C(?:MY(?:Color|KColor)|hromaticAdaptation|o(?:lor|ncat(?:CallBack(?:ProcPtr|UPP)|ProfileSet))|urveType)|D(?:at(?:aType|eTime(?:Type)?)|evice(?:I(?:D|nfoPtr)|Profile(?:ArrayPtr|I(?:D|nfo)|Scope)|State)|isplayIDType)|F(?:ixedXY(?:Color|ZColor)|loatBitmap)|GrayColor|H(?:LSColor|SVColor|andleLocation)|I(?:ntentCRDVMSize|terateDevice(?:InfoProcPtr|ProfileProcPtr))|L(?:ab(?:Color|ToLabProcPtr)|u(?:t(?:16Type|8Type)|vColor))|M(?:I(?:nfo|terate(?:ProcPtr|UPP))|akeAndModel(?:Type)?|easurementType|ulti(?:Funct(?:CLUTType|LutB2AType)|LocalizedUniCode(?:EntryRec|Type)|channel(?:5Color|6Color|7Color|8Color)))|Na(?:medColor(?:2(?:EntryType|Type)|Type)?|tiveDisplayInfo(?:Type)?)|P(?:S2CRDVMSizeType|a(?:rametricCurveType|thLocation)|rof(?:Loc|ile(?:Iterate(?:Data|ProcPtr|UPP)|Location|MD5(?:Ptr)?|Ref|SequenceDescType)))|RGBColor|S(?:15Fixed16ArrayType|creening(?:ChannelRec|Type)|ignatureType)|T(?:ag(?:ElemTable|Record)|ext(?:DescriptionType|Type))|U(?:16Fixed16ArrayType|Int(?:16ArrayType|32ArrayType|64ArrayType|8ArrayType)|crBgType|nicodeTextType)|Vi(?:deoCardGamma(?:Formula|T(?:able|ype))?|ewingConditionsType)|WorldRef|XYZType|YxyColor)|NCM(?:ConcatProfileS(?:et|pec)|DeviceProfileInfo))\\\\b',\n name: 'invalid.deprecated.10.6.support.type.c'\n },\n {\n match:\n '\\\\bkC(?:FStream(?:PropertySSLPeerCertificates|SSLAllows(?:AnyRoot|Expired(?:Certificates|Roots)))|VImageBufferTransferFunction_(?:EBU_3213|SMPTE_C))\\\\b',\n name: 'invalid.deprecated.10.6.support.variable.c'\n },\n {\n match:\n '\\\\b(?:AudioFileFDFTable(?:Extended)?|C(?:E_(?:A(?:ccessDescription|uthority(?:InfoAccess|KeyID))|BasicConstraints|C(?:RLDist(?:PointsSyntax|ributionPoint)|ertPolicies|rl(?:Dist(?:ReasonFlags|ributionPointNameType)|Reason))|D(?:ata(?:AndType)?|istributionPointName)|General(?:Name(?:s)?|Subtree(?:s)?)|I(?:nhibitAnyPolicy|ssuingDistributionPoint)|KeyUsage|N(?:ame(?:Constraints|RegistrationAuthorities)|etscapeCertType)|OtherName|Policy(?:Constraints|Information|Mapping(?:s)?|QualifierInfo)|QC_Statement(?:s)?|S(?:emanticsInformation|ubjectKeyID))|SSM_(?:A(?:C(?:CESS_CREDENTIALS(?:_PTR)?|L_(?:E(?:DIT(?:_PTR)?|NTRY_(?:IN(?:FO(?:_PTR)?|PUT(?:_PTR)?)|PROTOTYPE(?:_PTR)?))|OWNER_PROTOTYPE(?:_PTR)?|SUBJECT_CALLBACK|VALIDITY_PERIOD(?:_PTR)?))|PI_M(?:EMORY_FUNCS(?:_PTR)?|oduleEventHandler)|UTHORIZATIONGROUP(?:_PTR)?)|BASE_CERTS(?:_PTR)?|C(?:ALLBACK|ERT(?:GROUP(?:_PTR)?|_(?:BUNDLE(?:_(?:HEADER(?:_PTR)?|PTR))?|PAIR(?:_PTR)?))|HALLENGE_CALLBACK|ONTEXT(?:_(?:ATTRIBUTE(?:_PTR)?|PTR))?|R(?:L(?:GROUP(?:_PTR)?|_PAIR(?:_PTR)?)|YPTO_DATA(?:_PTR)?)|SP_OPERATIONAL_STATISTICS(?:_PTR)?)|D(?:AT(?:A_PTR|E(?:_PTR)?)|B(?:INFO(?:_PTR)?|_(?:ATTRIBUTE_(?:DATA(?:_PTR)?|INFO(?:_PTR)?)|INDEX_INFO(?:_PTR)?|PARSING_MODULE_INFO(?:_PTR)?|RECORD_(?:ATTRIBUTE_(?:DATA(?:_PTR)?|INFO(?:_PTR)?)|INDEX_INFO(?:_PTR)?)|SCHEMA_(?:ATTRIBUTE_INFO(?:_PTR)?|INDEX_INFO(?:_PTR)?)|UNIQUE_RECORD(?:_PTR)?))|L_DB_(?:HANDLE(?:_PTR)?|LIST(?:_PTR)?))|E(?:NCODED_C(?:ERT(?:_PTR)?|RL(?:_PTR)?)|VIDENCE(?:_PTR)?)|F(?:IELD(?:GROUP(?:_PTR)?|_PTR)?|UNC_NAME_ADDR(?:_PTR)?)|GUID(?:_PTR)?|K(?:E(?:A_DERIVE_PARAMS(?:_PTR)?|Y(?:HEADER(?:_PTR)?|_(?:PTR|SIZE(?:_PTR)?))?)|R(?:SUBSERVICE(?:_PTR)?|_(?:NAME|P(?:OLICY_(?:INFO(?:_PTR)?|LIST_ITEM(?:_PTR)?)|ROFILE(?:_PTR)?)|WRAPPEDPRODUCT_INFO(?:_PTR)?)))|LIST(?:_(?:ELEMENT|PTR))?|M(?:ANAGER_(?:EVENT_NOTIFICATION(?:_PTR)?|REGISTRATION_INFO(?:_PTR)?)|EMORY_FUNCS(?:_PTR)?|ODULE_FUNCS(?:_PTR)?)|N(?:AME_LIST(?:_PTR)?|ET_ADDRESS(?:_PTR)?)|OID_PTR|P(?:ARSED_C(?:ERT(?:_PTR)?|RL(?:_PTR)?)|KCS(?:1_OAEP_PARAMS(?:_PTR)?|5_PBKDF(?:1_PARAMS(?:_PTR)?|2_PARAMS(?:_PTR)?)))|QUERY(?:_(?:LIMITS(?:_PTR)?|PTR|SIZE_DATA(?:_PTR)?))?|R(?:ANGE(?:_PTR)?|ESOURCE_CONTROL_CONTEXT(?:_PTR)?)|S(?:AMPLE(?:GROUP(?:_PTR)?|_PTR)?|ELECTION_PREDICATE(?:_PTR)?|PI_(?:AC_FUNCS(?:_PTR)?|C(?:L_FUNCS(?:_PTR)?|SP_FUNCS(?:_PTR)?)|DL_FUNCS(?:_PTR)?|KR_FUNCS(?:_PTR)?|ModuleEventHandler|TP_FUNCS(?:_PTR)?)|TATE_FUNCS(?:_PTR)?|UBSERVICE_UID(?:_PTR)?)|T(?:P_(?:A(?:PPLE_EVIDENCE_INFO|UTHORITY_ID(?:_PTR)?)|C(?:ALLERAUTH_CONTEXT(?:_PTR)?|ERT(?:CHANGE_(?:INPUT(?:_PTR)?|OUTPUT(?:_PTR)?)|ISSUE_(?:INPUT(?:_PTR)?|OUTPUT(?:_PTR)?)|NOTARIZE_(?:INPUT(?:_PTR)?|OUTPUT(?:_PTR)?)|RECLAIM_(?:INPUT(?:_PTR)?|OUTPUT(?:_PTR)?)|VERIFY_(?:INPUT(?:_PTR)?|OUTPUT(?:_PTR)?))|ONFIRM_RESPONSE(?:_PTR)?|RLISSUE_(?:INPUT(?:_PTR)?|OUTPUT(?:_PTR)?))|POLICYINFO(?:_PTR)?|RE(?:QUEST_SET(?:_PTR)?|SULT_SET(?:_PTR)?)|VERIF(?:ICATION_RESULTS_CALLBACK|Y_CONTEXT(?:_(?:PTR|RESULT(?:_PTR)?))?))|UPLE(?:GROUP(?:_PTR)?|_PTR)?)|UPCALLS(?:_(?:CALLOC|FREE|MALLOC|PTR|REALLOC))?|VERSION(?:_PTR)?|WRAP_KEY(?:_PTR)?|X509(?:EXT_(?:BASICCONSTRAINTS(?:_PTR)?|P(?:AIR(?:_PTR)?|OLICY(?:INFO(?:_PTR)?|QUALIFIER(?:INFO(?:_PTR)?|S(?:_PTR)?)))|TAGandVALUE(?:_PTR)?)|_(?:ALGORITHM_IDENTIFIER_PTR|EXTENSION(?:S(?:_PTR)?|_PTR)?|NAME(?:_PTR)?|R(?:DN(?:_PTR)?|EVOKED_CERT_(?:ENTRY(?:_PTR)?|LIST(?:_PTR)?))|S(?:IGN(?:ATURE(?:_PTR)?|ED_C(?:ERTIFICATE(?:_PTR)?|RL(?:_PTR)?))|UBJECT_PUBLIC_KEY_INFO_PTR)|T(?:BS_CERT(?:IFICATE(?:_PTR)?|LIST(?:_PTR)?)|IME(?:_PTR)?|YPE_VALUE_PAIR(?:_PTR)?)|VALIDITY(?:_PTR)?))))|MDS_(?:DB_HANDLE|FUNCS(?:_PTR)?)|cssm_(?:ac(?:cess_credentials|l_(?:e(?:dit|ntry_(?:in(?:fo|put)|prototype))|owner_prototype|validity_period))|base_certs|c(?:ert(?:_(?:bundle(?:_header)?|pair)|group)|ontext(?:_attribute)?|r(?:l(?:_pair|group)|ypto_data))|d(?:b(?:_(?:attribute_(?:data|info)|index_info|parsing_module_info|record_(?:attribute_(?:data|info)|index_info)|schema_attribute_info|unique_record)|info)|l_db_list)|e(?:ncoded_c(?:ert|rl)|vidence)|field(?:group)?|k(?:e(?:a_derive_params|y(?:header)?)|r(?:_(?:p(?:olicy_(?:info|list_item)|rofile)|wrappedproductinfo)|subservice))|list_element|m(?:anager_(?:event_notification|registration_info)|odule_funcs)|net_address|pkcs(?:1_oaep_params|5_pbkdf(?:1_params|2_params))|query(?:_limits)?|resource_control_context|s(?:ample(?:group)?|election_predicate|pi_(?:ac_funcs|c(?:l_funcs|sp_funcs)|dl_funcs|kr_funcs|tp_funcs)|tate_funcs|ubservice_uid)|t(?:p_(?:authority_id|c(?:allerauth_context|ert(?:change_(?:input|output)|issue_(?:input|output)|notarize_(?:input|output)|reclaim_(?:input|output)|verify_(?:input|output))|onfirm_response|rlissue_(?:input|output))|policyinfo|request_set|verify_context(?:_result)?)|uplegroup)|upcalls|x509(?:_(?:extension(?:TagAndValue|s)?|name|r(?:dn|evoked_cert_(?:entry|list))|sign(?:ature|ed_c(?:ertificate|rl))|t(?:bs_cert(?:ificate|list)|ime|ype_value_pair))|ext_(?:basicConstraints|p(?:air|olicy(?:Info|Qualifier(?:Info|s))))))|mds_funcs|x509_validity)\\\\b',\n name: 'invalid.deprecated.10.7.support.type.c'\n },\n {\n match:\n '\\\\b(?:CSSMOID_(?:A(?:D(?:C_CERT_POLICY|_(?:CA_(?:ISSUERS|REPOSITORY)|OCSP|TIME_STAMPING))|NSI_(?:DH_(?:EPHEM(?:_SHA1)?|HYBRID(?:1(?:_SHA1)?|2(?:_SHA1)?|_ONEFLOW)|ONE_FLOW(?:_SHA1)?|PUB_NUMBER|STATIC(?:_SHA1)?)|MQV(?:1(?:_SHA1)?|2(?:_SHA1)?))|PPLE(?:ID_(?:CERT_POLICY|SHARING_CERT_POLICY)|_(?:ASC|CERT_POLICY|E(?:CDSA|KU_(?:CODE_SIGNING(?:_DEV)?|ICHAT_(?:ENCRYPTION|SIGNING)|P(?:ASSBOOK_SIGNING|ROFILE_SIGNING)|QA_PROFILE_SIGNING|RESOURCE_SIGNING|SYSTEM_IDENTITY)|XTENSION(?:_(?:A(?:AI_INTERMEDIATE|DC_(?:APPLE_SIGNING|DEV_SIGNING)|PPLE(?:ID_(?:INTERMEDIATE|SHARING)|_SIGNING))|CODE_SIGNING|DEVELOPER_AUTHENTICATION|ESCROW_SERVICE|I(?:NTERMEDIATE_MARKER|TMS_INTERMEDIATE)|MACAPPSTORE_RECEIPT|P(?:ASSBOOK_SIGNING|ROVISIONING_PROFILE_SIGNING)|S(?:ERVER_AUTHENTICATION|YSINT2_INTERMEDIATE)|WWDR_INTERMEDIATE))?)|FEE(?:D(?:EXP)?|_(?:MD5|SHA1))?|ISIGN|TP_(?:APPLEID_SHARING|C(?:ODE_SIGN(?:ING)?|SR_GEN)|E(?:AP|SCROW_SERVICE)|I(?:CHAT|P_SEC)|LOCAL_CERT_GEN|M(?:ACAPPSTORE_RECEIPT|OBILE_STORE)|P(?:A(?:CKAGE_SIGNING|SSBOOK_SIGNING)|CS_ESCROW_SERVICE|KINIT_(?:CLIENT|SERVER)|RO(?:FILE_SIGNING|VISIONING_PROFILE_SIGNING))|QA_PROFILE_SIGNING|RE(?:SOURCE_SIGN|VOCATION(?:_(?:CRL|OCSP))?)|S(?:MIME|SL|W_UPDATE_SIGNING)|T(?:EST_MOBILE_STORE|IMESTAMPING))|X509_BASIC))|liasedEntryName|uthority(?:InfoAccess|KeyIdentifier|RevocationList))|B(?:asicConstraints|iometricInfo|usinessCategory)|C(?:ACertificate|SSMKeyStruct|ert(?:Issuer|i(?:com(?:EllCurve)?|ficate(?:Policies|RevocationList)))|hallengePassword|lientAuth|o(?:llective(?:FacsimileTelephoneNumber|InternationalISDNNumber|Organization(?:Name|alUnitName)|P(?:hysicalDeliveryOfficeName|ost(?:OfficeBox|al(?:Address|Code)))|St(?:ateProvinceName|reetAddress)|Tele(?:phoneNumber|x(?:Number|TerminalIdentifier)))|mmonName|ntentType|unt(?:erSignature|ryName))|r(?:l(?:DistributionPoints|Number|Reason)|ossCertificatePair))|D(?:ES_CBC|H|NQualifier|OTMAC_CERT(?:_(?:E(?:MAIL_(?:ENCRYPT|SIGN)|XTENSION)|IDENTITY|POLICY|REQ(?:_(?:ARCHIVE_(?:FETCH|LIST|REMOVE|STORE)|EMAIL_(?:ENCRYPT|SIGN)|IDENTITY|SHARED_SERVICES|VALUE_(?:ASYNC|HOSTNAME|IS_PENDING|PASSWORD|RENEW|USERNAME)))?))?|SA(?:_(?:CMS|JDK))?|e(?:ltaCrlIndicator|s(?:cription|tinationIndicator))|istinguishedName|omainComponent)|E(?:CDSA_WithS(?:HA(?:1|2(?:24|56)|384|512)|pecified)|KU_IPSec|TSI_QCS_QC_(?:COMPLIANCE|LIMIT_VALUE|RETENTION|SSCD)|mail(?:Address|Protection)|nhancedSearchGuide|xtended(?:CertificateAttributes|KeyUsage(?:Any)?|UseCodeSigning))|FacsimileTelephoneNumber|G(?:enerationQualifier|ivenName)|Ho(?:ldInstructionCode|useIdentifier)|I(?:n(?:hibitAnyPolicy|itials|ternationalISDNNumber|validityDate)|ssu(?:erAltName|ingDistributionPoint(?:s)?))|K(?:ERBv5_PKINIT_(?:AUTH_DATA|DH_KEY_DATA|KP_(?:CLIENT_AUTH|KDC)|RKEY_DATA)|eyUsage|nowledgeInformation)|LocalityName|M(?:ACAPPSTORE_(?:CERT_POLICY|RECEIPT_CERT_POLICY)|D(?:2(?:WithRSA)?|4(?:WithRSA)?|5(?:WithRSA)?)|OBILE_STORE_SIGNING_POLICY|e(?:mber|ssageDigest)|icrosoftSGC)|N(?:ame(?:Constraints)?|etscape(?:Cert(?:Sequence|Type)|SGC))|O(?:AEP_(?:ID_PSPECIFIED|MGF1)|CSPSigning|ID_QCS_SYNTAX_V(?:1|2)|bjectClass|rganization(?:Name|alUnitName)|wner)|P(?:DA_(?:COUNTRY_(?:CITIZEN|RESIDENCE)|DATE_OF_BIRTH|GENDER|PLACE_OF_BIRTH)|K(?:CS(?:12_(?:c(?:ertBag|rlBag)|keyBag|pbe(?:WithSHAAnd(?:128BitRC(?:2CBC|4)|2Key3DESCBC|3Key3DESCBC|40BitRC4)|withSHAAnd40BitRC2CBC)|s(?:afeContentsBag|ecretBag|hroudedKeyBag))|3|5_(?:D(?:ES_EDE3_CBC|IGEST_ALG)|ENCRYPT_ALG|HMAC_SHA1|PB(?:ES2|KDF2|MAC1)|RC(?:2_CBC|5_CBC)|pbeWith(?:MD(?:2And(?:DES|RC2)|5And(?:DES|RC2))|SHA1And(?:DES|RC2)))|7_(?:D(?:ata(?:WithAttributes)?|igestedData)|En(?:crypted(?:Data|PrivateKeyInfo)|velopedData)|Signed(?:AndEnvelopedData|Data))|9_(?:C(?:ertTypes|rlTypes)|FriendlyName|Id_Ct_TSTInfo|LocalKeyId|SdsiCertificate|TimeStampToken|X509C(?:ertificate|rl)))|IX_OCSP(?:_(?:ARCHIVE_CUTOFF|BASIC|CRL|NO(?:CHECK|NCE)|RESPONSE|SERVICE_LOCATOR))?)|hysicalDeliveryOfficeName|o(?:licy(?:Constraints|Mappings)|st(?:OfficeBox|al(?:Address|Code)))|r(?:e(?:ferredDeliveryMethod|sentationAddress)|ivateKeyUsagePeriod|otocolInformation))|Q(?:C_Statements|T_(?:CPS|UNOTICE))|R(?:SA(?:WithOAEP)?|egisteredAddress|oleOccupant)|S(?:HA(?:1(?:With(?:DSA(?:_(?:CMS|JDK))?|RSA(?:_OIW)?))?|2(?:24(?:WithRSA)?|56(?:WithRSA)?)|384(?:WithRSA)?|512(?:WithRSA)?)|e(?:archGuide|eAlso|r(?:ialNumber|verAuth))|igningTime|t(?:ateProvinceName|reetAddress)|u(?:bject(?:AltName|DirectoryAttributes|EmailAddress|InfoAccess|KeyIdentifier|Picture|SignatureBitmap)|pportedApplicationContext|rname))|T(?:EST_MOBILE_STORE_SIGNING_POLICY|ele(?:phoneNumber|x(?:Number|TerminalIdentifier))|i(?:meStamping|tle))|U(?:n(?:ique(?:Identifier|Member)|structured(?:Address|Name))|se(?:Exemptions|r(?:Certificate|ID|Password)))|X(?:509V(?:1(?:C(?:RL(?:Issuer(?:Name(?:CStruct|LDAP)|Struct)|N(?:extUpdate|umberOfRevokedCertEntries)|Revoked(?:Certificates(?:CStruct|Struct)|Entry(?:CStruct|RevocationDate|S(?:erialNumber|truct)))|ThisUpdate)|ertificate(?:IssuerUniqueId|SubjectUniqueId))|IssuerName(?:CStruct|LDAP|Std)?|S(?:erialNumber|ignature(?:Algorithm(?:Parameters|TBS)?|CStruct|Struct)?|ubject(?:Name(?:CStruct|LDAP|Std)?|PublicKey(?:Algorithm(?:Parameters)?|CStruct)?))|V(?:alidityNot(?:After|Before)|ersion))|2CRL(?:AllExtensions(?:CStruct|Struct)|Extension(?:Critical|Id|Type)|NumberOfExtensions|RevokedEntry(?:AllExtensions(?:CStruct|Struct)|Extension(?:Critical|Id|Type|Value)|NumberOfExtensions|SingleExtension(?:CStruct|Struct))|Si(?:gnedCrl(?:CStruct|Struct)|ngleExtension(?:CStruct|Struct))|TbsCertList(?:CStruct|Struct)|Version)|3(?:Certificate(?:CStruct|Extension(?:C(?:Struct|ritical)|Id|Struct|Type|Value|s(?:CStruct|Struct))|NumberOfExtensions)?|SignedCertificate(?:CStruct)?))|9_62(?:_(?:C_TwoCurve|EllCurve|FieldType|P(?:rimeCurve|ubKeyType)|SigType))?|_121Address)|ecPublicKey|sec(?:p(?:1(?:12r(?:1|2)|28r(?:1|2)|60(?:k1|r(?:1|2))|92(?:k1|r1))|2(?:24(?:k1|r1)|56(?:k1|r1))|384r1|521r1)|t(?:1(?:13r(?:1|2)|31r(?:1|2)|63(?:k1|r(?:1|2))|93r(?:1|2))|2(?:3(?:3(?:k1|r1)|9k1)|83(?:k1|r1))|409(?:k1|r1)|571(?:k1|r1))))|k(?:MDItemLabel(?:I(?:D|con)|Kind|UUID)|SCPropNetSMBNetBIOSScope))\\\\b',\n name: 'invalid.deprecated.10.7.support.variable.c'\n },\n {\n match:\n '\\\\b(?:false32b|gestaltSystemVersion(?:BugFix|M(?:ajor|inor))?|kCT(?:FontTableOptionExcludeSynthetic|ParagraphStyleSpecifierLineSpacing)|true32b)\\\\b',\n name: 'invalid.deprecated.10.8.support.constant.c'\n },\n {\n match:\n '\\\\bWSMethodInvocation(?:CallBackProcPtr|DeserializationProcPtr|SerializationProcPtr)\\\\b',\n name: 'invalid.deprecated.10.8.support.type.c'\n },\n {\n match:\n '\\\\b(?:k(?:CTTypesetterOptionDisableBidiProcessing|FSOperation(?:Bytes(?:CompleteKey|RemainingKey)|Objects(?:CompleteKey|RemainingKey)|T(?:hroughputKey|otal(?:BytesKey|ObjectsKey|UserVisibleObjectsKey))|UserVisibleObjects(?:CompleteKey|RemainingKey))|LSSharedFileListVolumesIDiskVisible|WS(?:Debug(?:Incoming(?:Body|Headers)|Outgoing(?:Body|Headers))|Fault(?:Code|Extra|String)|HTTP(?:ExtraHeaders|FollowsRedirects|Message|Proxy|ResponseMessage|Version)|MethodInvocation(?:Result(?:ParameterName)?|TimeoutValue)|NetworkStreamFaultString|Record(?:NamespaceURI|ParameterOrder|Type)|S(?:OAP(?:1999Protocol|2001Protocol|BodyEncodingStyle|Me(?:ssageHeaders|thodNamespaceURI)|Style(?:Doc|RPC))|treamError(?:Domain|Error|Message))|XMLRPCProtocol))|pi)\\\\b',\n name: 'invalid.deprecated.10.8.support.variable.c'\n },\n {\n match: '\\\\bkCFURLUbiquitousItemPercent(?:DownloadedKey|UploadedKey)\\\\b',\n name: 'invalid.deprecated.10.8.support.variable.cf.c'\n },\n {\n match: '\\\\bkCGWindowWorkspace\\\\b',\n name: 'invalid.deprecated.10.8.support.variable.quartz.c'\n },\n {\n match:\n '\\\\bk(?:AUVoiceIOProperty_VoiceProcessingQuality|Sec(?:AppleSharePasswordItemClass|TrustResultConfirm))\\\\b',\n name: 'invalid.deprecated.10.9.support.constant.c'\n },\n {\n match:\n '\\\\bkCFURL(?:BookmarkCreationPreferFileIDResolutionMask|HFSPathStyle|ImproperArgumentsError|PropertyKeyUnavailableError|Re(?:moteHostUnavailableError|source(?:AccessViolationError|NotFoundError))|TimeoutError|Unknown(?:Error|PropertyKeyError|SchemeError))\\\\b',\n name: 'invalid.deprecated.10.9.support.constant.cf.c'\n },\n {\n match: '\\\\bkCGEncoding(?:FontSpecific|MacRoman)\\\\b',\n name: 'invalid.deprecated.10.9.support.constant.quartz.c'\n },\n {\n match: '\\\\bSecTrustUserSetting\\\\b',\n name: 'invalid.deprecated.10.9.support.type.c'\n },\n {\n match:\n '\\\\b(?:XPC_ACTIVITY_REQUIRE_(?:BATTERY_LEVEL|HDD_SPINNING)|k(?:LSSharedFileListGlobalLoginItems|S(?:C(?:PropNetAirPort(?:A(?:llowNetCreation|uthPassword(?:Encryption)?)|JoinMode|P(?:owerEnabled|referredNetwork)|SavePasswords)|ValNetAirPort(?:AuthPasswordEncryptionKeychain|JoinMode(?:Automatic|Preferred|R(?:anked|ecent)|Strongest)))|ecPolicyAppleiChat)))\\\\b',\n name: 'invalid.deprecated.10.9.support.variable.c'\n },\n {\n match:\n '\\\\bkCFURL(?:File(?:DirectoryContents|Exists|L(?:astModificationTime|ength)|OwnerID|POSIXMode)|HTTPStatus(?:Code|Line)|UbiquitousItemIsDownloadedKey)\\\\b',\n name: 'invalid.deprecated.10.9.support.variable.cf.c'\n },\n {\n match:\n '\\\\bk3DMixerParam_(?:GlobalReverbGain|M(?:axGain|inGain)|O(?:bstructionAttenuation|cclusionAttenuation)|ReverbBlend)\\\\b',\n name: 'invalid.deprecated.tba.support.constant.c'\n },\n {\n match:\n '\\\\bkQL(?:Preview(?:ContentIDScheme|OptionCursorKey|Property(?:Attachment(?:DataKey|sKey)|BaseBundlePathKey|CursorKey|DisplayNameKey|HeightKey|MIMETypeKey|PDFStyleKey|StringEncodingKey|WidthKey))|ThumbnailProperty(?:Ba(?:dgeImageKey|seBundlePathKey)|ExtensionKey))\\\\b',\n name: 'invalid.deprecated.tba.support.variable.c'\n },\n {\n match:\n '\\\\b(?:QOS_CLASS_(?:BACKGROUND|DEFAULT|U(?:NSPECIFIED|SER_IN(?:ITIATED|TERACTIVE)|TILITY))|k(?:C(?:GLCP(?:AbortOnGPURestartStatusBlacklisted|ContextPriorityRequest|GPURestartStatus|Support(?:GPURestart|SeparateAddressSpace))|TRuby(?:Alignment(?:Auto|Center|Distribute(?:Letter|Space)|End|Invalid|LineEdge|Start)|Overhang(?:Auto|End|Invalid|None|Start)|Position(?:After|Before|Count|In(?:line|terCharacter))))|FSEventStreamEventFlagItemIs(?:Hardlink|LastHardlink)|SecAccessControlUserPresence))\\\\b',\n name: 'support.constant.10.10.c'\n },\n {\n match:\n '\\\\bk(?:A(?:XValueType(?:AXError|C(?:FRange|G(?:Point|Rect|Size))|Illegal)|udioComponent(?:Flag_(?:CanLoadInProcess|IsV3AudioUnit|RequiresAsyncInstantiation)|Instantiation_Load(?:InProcess|OutOfProcess)))|SecAccessControlDevicePasscode)\\\\b',\n name: 'support.constant.10.11.c'\n },\n {\n match:\n '\\\\bkSec(?:AccessControl(?:A(?:nd|pplicationPassword)|Or|PrivateKeyUsage)|KeyOperationType(?:Decrypt|Encrypt|KeyExchange|Sign|Verify))\\\\b',\n name: 'support.constant.10.12.c'\n },\n {\n match:\n '\\\\bk(?:CGLRPRe(?:gistryID(?:High|Low)|movable)|FSEventStream(?:CreateFlagUseExtendedData|EventFlagItemCloned)|SecAccessControlBiometry(?:Any|CurrentSet))\\\\b',\n name: 'support.constant.10.13.c'\n },\n {\n match:\n '\\\\bk(?:3DMixerParam_(?:BusEnable|DryWetReverbBlend|GlobalReverbGainInDecibels|M(?:axGainInDecibels|inGainInDecibels)|O(?:bstructionAttenuationInDecibels|cclusionAttenuationInDecibels))|AudioQueueProperty_ChannelAssignments|JSTypeSymbol|SecAccessControlWatch)\\\\b',\n name: 'support.constant.10.15.c'\n },\n {\n match:\n '\\\\bk(?:AudioComponentFlag_SandboxSafe|CGL(?:PFASupportsAutomaticGraphicsSwitching|Renderer(?:ATIRadeonX4000ID|IntelHD5000ID)))\\\\b',\n name: 'support.constant.10.8.c'\n },\n {\n match:\n '\\\\bk(?:AXPriority(?:High|Low|Medium)|CGL(?:OGLPVersion_GL4_Core|R(?:PMajorGLVersion|endererGeForceID))|FSEventStream(?:CreateFlagMarkSelf|EventFlagOwnEvent))\\\\b',\n name: 'support.constant.10.9.c'\n },\n {name: 'support.constant.c'},\n {\n match:\n '\\\\bkCFNumberFormatter(?:Currency(?:AccountingStyle|ISOCodeStyle|PluralStyle)|OrdinalStyle)\\\\b',\n name: 'support.constant.cf.10.11.c'\n },\n {\n match:\n '\\\\bkCFISO8601DateFormatWith(?:ColonSeparatorInTime(?:Zone)?|Da(?:shSeparatorInDate|y)|Full(?:Date|Time)|InternetDateTime|Month|SpaceBetweenDateAndTime|Time(?:Zone)?|WeekOfYear|Year)\\\\b',\n name: 'support.constant.cf.10.12.c'\n },\n {\n match: '\\\\bkCFISO8601DateFormatWithFractionalSeconds\\\\b',\n name: 'support.constant.cf.10.13.c'\n },\n {\n match: '\\\\bkCFURLEnumeratorGenerateRelativePathURLs\\\\b',\n name: 'support.constant.cf.10.15.c'\n },\n {\n match:\n '\\\\bkCFFileSecurityClear(?:AccessControlList|Group(?:UUID)?|Mode|Owner(?:UUID)?)\\\\b',\n name: 'support.constant.cf.10.8.c'\n },\n {\n match:\n '\\\\b(?:CF(?:ByteOrder(?:BigEndian|LittleEndian|Unknown)|NotificationSuspensionBehavior(?:Coalesce|D(?:eliverImmediately|rop)|Hold))|kCF(?:B(?:ookmarkResolutionWithout(?:MountingMask|UIMask)|undleExecutableArchitecture(?:I386|PPC(?:64)?|X86_64))|C(?:alendar(?:ComponentsWrap|Unit(?:Day|Era|Hour|M(?:inute|onth)|Quarter|Second|Week(?:Of(?:Month|Year)|day(?:Ordinal)?)|Year(?:ForWeekOfYear)?))|haracterSet(?:AlphaNumeric|C(?:apitalizedLetter|ontrol)|Dec(?:imalDigit|omposable)|Illegal|L(?:etter|owercaseLetter)|N(?:ewline|onBase)|Punctuation|Symbol|UppercaseLetter|Whitespace(?:AndNewline)?)|ompare(?:Anchored|Backwards|CaseInsensitive|DiacriticInsensitive|EqualTo|ForcedOrdering|GreaterThan|L(?:essThan|ocalized)|N(?:onliteral|umerically)|WidthInsensitive))|Dat(?:aSearch(?:Anchored|Backwards)|eFormatter(?:FullStyle|LongStyle|MediumStyle|NoStyle|ShortStyle))|FileDescriptor(?:ReadCallBack|WriteCallBack)|LocaleLanguageDirection(?:BottomToTop|LeftToRight|RightToLeft|TopToBottom|Unknown)|MessagePort(?:BecameInvalidError|IsInvalid|ReceiveTimeout|S(?:endTimeout|uccess)|TransportError)|N(?:otification(?:DeliverImmediately|PostToAllSessions)|umber(?:C(?:FIndexType|GFloatType|harType)|DoubleType|F(?:loat(?:32Type|64Type|Type)|ormatter(?:CurrencyStyle|DecimalStyle|NoStyle|P(?:a(?:d(?:After(?:Prefix|Suffix)|Before(?:Prefix|Suffix))|rseIntegersOnly)|ercentStyle)|Round(?:Ceiling|Down|Floor|Half(?:Down|Even|Up)|Up)|S(?:cientificStyle|pellOutStyle)))|IntType|Long(?:LongType|Type)|MaxType|NSIntegerType|S(?:Int(?:16Type|32Type|64Type|8Type)|hortType)))|PropertyList(?:BinaryFormat_v1_0|Immutable|MutableContainers(?:AndLeaves)?|OpenStepFormat|Read(?:CorruptError|StreamError|UnknownVersionError)|WriteStreamError|XMLFormat_v1_0)|RunLoop(?:A(?:fterWaiting|llActivities)|Before(?:Sources|Timers|Waiting)|E(?:ntry|xit)|Run(?:Finished|HandledSource|Stopped|TimedOut))|S(?:ocket(?:A(?:cceptCallBack|utomaticallyReenable(?:AcceptCallBack|DataCallBack|ReadCallBack|WriteCallBack))|C(?:loseOnInvalidate|onnectCallBack)|DataCallBack|Error|LeaveErrors|NoCallBack|ReadCallBack|Success|Timeout|WriteCallBack)|tr(?:eam(?:E(?:rrorDomain(?:Custom|MacOSStatus|POSIX)|vent(?:CanAcceptBytes|E(?:ndEncountered|rrorOccurred)|HasBytesAvailable|None|OpenCompleted))|Status(?:AtEnd|Closed|Error|NotOpen|Open(?:ing)?|Reading|Writing))|ing(?:Encoding(?:A(?:NSEL|SCII)|Big5(?:_(?:E|HKSCS_1999))?|CNS_11643_92_P(?:1|2|3)|DOS(?:Arabic|BalticRim|C(?:anadianFrench|hinese(?:Simplif|Trad)|yrillic)|Greek(?:1|2)?|Hebrew|Icelandic|Japanese|Korean|Latin(?:1|2|US)|Nordic|Portuguese|Russian|T(?:hai|urkish))|E(?:BCDIC_(?:CP037|US)|UC_(?:CN|JP|KR|TW))|GB(?:K_95|_(?:18030_2000|2312_80))|HZ_GB_2312|ISO(?:Latin(?:1(?:0)?|2|3|4|5|6|7|8|9|Arabic|Cyrillic|Greek|Hebrew|Thai)|_2022_(?:CN(?:_EXT)?|JP(?:_(?:1|2|3))?|KR))|JIS_(?:C6226_78|X02(?:0(?:1_76|8_(?:83|90))|12_90))|K(?:OI8_(?:R|U)|SC_5601_(?:87|92_Johab))|Mac(?:Ar(?:abic|menian)|B(?:engali|urmese)|C(?:e(?:ltic|ntralEurRoman)|hinese(?:Simp|Trad)|roatian|yrillic)|D(?:evanagari|ingbats)|E(?:thiopic|xtArabic)|Farsi|G(?:aelic|eorgian|reek|u(?:jarati|rmukhi))|H(?:FS|ebrew)|I(?:celandic|nuit)|Japanese|K(?:annada|hmer|orean)|Laotian|M(?:alayalam|ongolian)|Oriya|Roman(?:Latin1|ian)?|S(?:inhalese|ymbol)|T(?:amil|elugu|hai|ibetan|urkish)|Ukrainian|V(?:T100|ietnamese))|N(?:extStep(?:Japanese|Latin)|onLossyASCII)|ShiftJIS(?:_X0213(?:_(?:00|MenKuTen))?)?|U(?:TF(?:16(?:BE|LE)?|32(?:BE|LE)?|7(?:_IMAP)?|8)|nicode)|VISCII|Windows(?:Arabic|BalticRim|Cyrillic|Greek|Hebrew|KoreanJohab|Latin(?:1|2|5)|Vietnamese))|NormalizationForm(?:C|D|K(?:C|D))|Tokenizer(?:AttributeLa(?:nguage|tinTranscription)|Token(?:Has(?:DerivedSubTokensMask|HasNumbersMask|NonLettersMask|SubTokensMask)|IsCJWordMask|No(?:ne|rmal))|Unit(?:LineBreak|Paragraph|Sentence|Word(?:Boundary)?)))))|TimeZoneNameStyle(?:DaylightSaving|Generic|S(?:hort(?:DaylightSaving|Generic|Standard)|tandard))|U(?:RL(?:Bookmark(?:Creation(?:MinimalBookmarkMask|S(?:ecurityScopeAllowOnlyReadAccess|uitableForBookmarkFile)|WithSecurityScope)|ResolutionWith(?:SecurityScope|out(?:MountingMask|UIMask)))|Component(?:Fragment|Host|NetLocation|P(?:a(?:rameterString|ssword|th)|ort)|Query|ResourceSpecifier|Scheme|User(?:Info)?)|Enumerator(?:D(?:e(?:faultBehavior|scendRecursively)|irectoryPostOrderSuccess)|E(?:nd|rror)|GenerateFileReferenceURLs|IncludeDirectoriesP(?:ostOrder|reOrder)|S(?:kip(?:Invisibles|PackageContents)|uccess))|POSIXPathStyle|WindowsPathStyle)|serNotification(?:AlternateResponse|Ca(?:ncelResponse|utionAlertLevel)|DefaultResponse|No(?:DefaultButtonFlag|teAlertLevel)|OtherResponse|PlainAlertLevel|StopAlertLevel|UseRadioButtonsFlag))|XML(?:E(?:ntityType(?:Character|Par(?:ameter|sed(?:External|Internal))|Unparsed)|rror(?:E(?:lementlessDocument|ncodingConversionFailure)|Malformed(?:C(?:DSect|haracterReference|loseTag|omment)|D(?:TD|ocument)|Name|P(?:arsedCharacterData|rocessingInstruction)|StartTag)|NoData|Un(?:expectedEOF|knownEncoding)))|Node(?:CurrentVersion|Type(?:Attribute(?:ListDeclaration)?|C(?:DATASection|omment)|Document(?:Fragment|Type)?|E(?:lement(?:TypeDeclaration)?|ntity(?:Reference)?)|Notation|ProcessingInstruction|Text|Whitespace))|Parser(?:A(?:ddImpliedAttributes|llOptions)|NoOptions|Re(?:placePhysicalEntities|solveExternalEntities)|Skip(?:MetaData|Whitespace)|ValidateDocument)|StatusParse(?:InProgress|NotBegun|Successful))))\\\\b',\n name: 'support.constant.cf.c'\n },\n {\n match: '\\\\bDISPATCH_WALLTIME_NOW\\\\b',\n name: 'support.constant.clib.10.14.c'\n },\n {\n match:\n '\\\\b(?:FILESEC_(?:ACL(?:_(?:ALLOCSIZE|RAW))?|GR(?:OUP|PUUID)|MODE|OWNER|UUID)|P_(?:ALL|P(?:GID|ID)))\\\\b',\n name: 'support.constant.clib.c'\n },\n {\n match:\n '\\\\bDISPATCH_BLOCK_(?:ASSIGN_CURRENT|BARRIER|DETACHED|ENFORCE_QOS_CLASS|INHERIT_QOS_CLASS|NO_QOS_CLASS)\\\\b',\n name: 'support.constant.dispatch.10.10.c'\n },\n {\n match: '\\\\bDISPATCH_AUTORELEASE_FREQUENCY_(?:INHERIT|NEVER|WORK_ITEM)\\\\b',\n name: 'support.constant.dispatch.10.12.c'\n },\n {\n match:\n '\\\\b(?:alphaStage|b(?:etaStage|old)|condense|developStage|extend|finalStage|italic|k(?:NilOptions|UnknownType|VariableLengthArray)|no(?:Err|rmal)|outline|shadow|underline)\\\\b',\n name: 'support.constant.mac-classic.c'\n },\n {\n match: '\\\\bOS(?:BigEndian|LittleEndian|UnknownByteOrder)\\\\b',\n name: 'support.constant.os.c'\n },\n {\n match:\n '\\\\bkCGImagePixelFormat(?:Mask|Packed|RGB(?:101010|5(?:55|65)|CIF10))\\\\b',\n name: 'support.constant.quartz.10.14.c'\n },\n {\n match:\n '\\\\bCGPDFTagType(?:A(?:nnotation|rt)|B(?:ibliography|lockQuote)|C(?:aption|ode)|D(?:iv|ocument)|F(?:igure|orm(?:ula)?)|Header(?:1|2|3|4|5|6)?|Index|L(?:abel|i(?:nk|st(?:Body|Item)?))|No(?:nStructure|te)|P(?:ar(?:agraph|t)|rivate)|Quote|R(?:eference|uby(?:AnnotationText|BaseText|Punctuation)?)|S(?:ection|pan)|T(?:OC(?:I)?|able(?:Body|DataCell|Footer|Header(?:Cell)?|Row)?)|Warichu(?:Punctiation|Text)?)\\\\b',\n name: 'support.constant.quartz.10.15.c'\n },\n {\n match:\n '\\\\b(?:CG(?:GlyphM(?:ax|in)|PDFDataFormat(?:JPEG(?:2000|Encoded)|Raw)|RectM(?:ax(?:XEdge|YEdge)|in(?:XEdge|YEdge)))|kCG(?:A(?:nnotatedSessionEventTap|ssistiveTechHighWindowLevelKey)|B(?:a(?:ck(?:ingStore(?:Buffered|Nonretained|Retained)|stopMenuLevelKey)|seWindowLevelKey)|itmap(?:AlphaInfoMask|ByteOrder(?:16(?:Big|Little)|32(?:Big|Little)|Default|Mask)|Float(?:Components|InfoMask))|lendMode(?:C(?:lear|o(?:lor(?:Burn|Dodge)?|py))|D(?:arken|estination(?:Atop|In|O(?:ut|ver))|ifference)|Exclusion|H(?:ardLight|ue)|L(?:ighten|uminosity)|Multiply|Normal|Overlay|Plus(?:Darker|Lighter)|S(?:aturation|creen|o(?:ftLight|urce(?:Atop|In|Out)))|XOR))|C(?:aptureNo(?:Fill|Options)|o(?:lor(?:ConversionTransform(?:ApplySpace|FromSpace|ToSpace)|SpaceModel(?:CMYK|DeviceN|Indexed|Lab|Monochrome|Pattern|RGB|Unknown|XYZ))|nfigure(?:For(?:AppOnly|Session)|Permanently))|ursorWindowLevelKey)|D(?:esktop(?:IconWindowLevelKey|WindowLevelKey)|isplay(?:AddFlag|BeginConfigurationFlag|D(?:esktopShapeChangedFlag|isabledFlag)|EnabledFlag|M(?:irrorFlag|ovedFlag)|RemoveFlag|S(?:etM(?:ainFlag|odeFlag)|tream(?:FrameStatus(?:Frame(?:Blank|Complete|Idle)|Stopped)|Update(?:DirtyRects|MovedRects|Re(?:ducedDirtyRects|freshedRects))))|UnMirrorFlag)|ockWindowLevelKey|raggingWindowLevelKey)|E(?:rror(?:CannotComplete|Failure|I(?:llegalArgument|nvalid(?:Con(?:nection|text)|Operation))|No(?:neAvailable|tImplemented)|RangeCheck|Success|TypeCheck)|vent(?:F(?:ilterMaskPermit(?:Local(?:KeyboardEvents|MouseEvents)|SystemDefinedEvents)|lag(?:Mask(?:Al(?:phaShift|ternate)|Co(?:mmand|ntrol)|Help|N(?:onCoalesced|umericPad)|S(?:econdaryFn|hift))|sChanged))|Key(?:Down|Up)|LeftMouse(?:D(?:own|ragged)|Up)|Mouse(?:Moved|Subtype(?:Default|TabletP(?:oint|roximity)))|Null|OtherMouse(?:D(?:own|ragged)|Up)|RightMouse(?:D(?:own|ragged)|Up)|S(?:crollWheel|ource(?:GroupID|State(?:CombinedSessionState|HIDSystemState|ID|Private)|U(?:nixProcessID|ser(?:Data|ID)))|uppressionState(?:RemoteMouseDrag|SuppressionInterval))|Ta(?:bletP(?:ointer|roximity)|p(?:DisabledBy(?:Timeout|UserInput)|Option(?:Default|ListenOnly))|rget(?:ProcessSerialNumber|UnixProcessID))|UnacceleratedPointerMovement(?:X|Y)))|F(?:loatingWindowLevelKey|ontPostScriptFormatType(?:1|3|42))|G(?:esturePhase(?:Began|C(?:ancelled|hanged)|Ended|MayBegin|None)|radientDraws(?:AfterEndLocation|BeforeStartLocation))|H(?:IDEventTap|e(?:adInsertEventTap|lpWindowLevelKey))|I(?:mage(?:Alpha(?:First|Last|None(?:Skip(?:First|Last))?|Only|Premultiplied(?:First|Last))|ByteOrder(?:16(?:Big|Little)|32(?:Big|Little)|Default|Mask))|nterpolation(?:Default|High|Low|Medium|None))|KeyboardEvent(?:Autorepeat|Key(?:boardType|code))|Line(?:Cap(?:Butt|Round|Square)|Join(?:Bevel|Miter|Round))|M(?:a(?:inMenuWindowLevelKey|ximumWindowLevelKey)|inimumWindowLevelKey|o(?:dalPanelWindowLevelKey|mentumScrollPhase(?:Begin|Continue|End|None)|use(?:Button(?:Center|Left|Right)|Event(?:ButtonNumber|ClickState|Delta(?:X|Y)|InstantMouser|Number|Pressure|Subtype|WindowUnderMousePointer(?:ThatCanHandleThisEvent)?))))|N(?:ormalWindowLevelKey|umberOf(?:EventSuppressionStates|WindowLevelKeys))|OverlayWindowLevelKey|P(?:DF(?:A(?:llows(?:Co(?:mmenting|ntent(?:Accessibility|Copying))|Document(?:Assembly|Changes)|FormFieldEntry|HighQualityPrinting|LowQualityPrinting)|rtBox)|BleedBox|CropBox|MediaBox|ObjectType(?:Array|Boolean|Dictionary|Integer|N(?:ame|ull)|Real|Str(?:eam|ing))|TrimBox)|at(?:h(?:E(?:OFill(?:Stroke)?|lement(?:Add(?:CurveToPoint|LineToPoint|QuadCurveToPoint)|CloseSubpath|MoveToPoint))|Fill(?:Stroke)?|Stroke)|ternTiling(?:ConstantSpacing(?:MinimalDistortion)?|NoDistortion))|opUpMenuWindowLevelKey)|RenderingIntent(?:AbsoluteColorimetric|Default|Perceptual|RelativeColorimetric|Saturation)|S(?:cr(?:een(?:SaverWindowLevelKey|UpdateOperation(?:Move|Re(?:ducedDirtyRectangleCount|fresh)))|oll(?:EventUnit(?:Line|Pixel)|Phase(?:Began|C(?:ancelled|hanged)|Ended|MayBegin)|WheelEvent(?:DeltaAxis(?:1|2|3)|FixedPtDeltaAxis(?:1|2|3)|I(?:nstantMouser|sContinuous)|MomentumPhase|PointDeltaAxis(?:1|2|3)|Scroll(?:Count|Phase))))|essionEventTap|tatusWindowLevelKey)|T(?:a(?:blet(?:Event(?:DeviceID|Point(?:Buttons|Pressure|X|Y|Z)|Rotation|T(?:angentialPressure|ilt(?:X|Y))|Vendor(?:1|2|3))|ProximityEvent(?:CapabilityMask|DeviceID|EnterProximity|Pointer(?:ID|Type)|SystemTabletID|TabletID|Vendor(?:ID|Pointer(?:SerialNumber|Type)|UniqueID)))|ilAppendEventTap)|ext(?:Clip|Fill(?:Clip|Stroke(?:Clip)?)?|Invisible|Stroke(?:Clip)?)|ornOffMenuWindowLevelKey)|UtilityWindowLevelKey|Window(?:Image(?:B(?:estResolution|oundsIgnoreFraming)|Default|NominalResolution|OnlyShadows|ShouldBeOpaque)|List(?:ExcludeDesktopElements|Option(?:All|IncludingWindow|OnScreen(?:AboveWindow|BelowWindow|Only)))|Sharing(?:None|Read(?:Only|Write)))))\\\\b',\n name: 'support.constant.quartz.c'\n },\n {match: '\\\\bcl_device_id\\\\b', name: 'support.type.10.10.c'},\n {\n match:\n '\\\\b(?:JSTypedArrayType|SecKey(?:Algorithm|KeyExchangeParameter)|os_unfair_lock(?:_t)?)\\\\b',\n name: 'support.type.10.12.c'\n },\n {name: 'support.type.c'},\n {\n match:\n '\\\\b(?:CF(?:A(?:bsoluteTime|llocator(?:AllocateCallBack|Co(?:ntext|pyDescriptionCallBack)|DeallocateCallBack|PreferredSizeCallBack|Re(?:allocateCallBack|f|leaseCallBack|tainCallBack))|rray(?:ApplierFunction|C(?:allBacks|opyDescriptionCallBack)|EqualCallBack|Re(?:f|leaseCallBack|tainCallBack))|ttributedStringRef)|B(?:ag(?:ApplierFunction|C(?:allBacks|opyDescriptionCallBack)|EqualCallBack|HashCallBack|Re(?:f|leaseCallBack|tainCallBack))|i(?:naryHeap(?:ApplierFunction|C(?:allBacks|ompareContext)|Ref)|t(?:VectorRef)?)|ooleanRef|undleRef(?:Num)?|yteOrder)|C(?:alendar(?:Identifier|Ref|Unit)|haracterSet(?:PredefinedSet|Ref)|ompar(?:atorFunction|isonResult))|D(?:at(?:a(?:Ref|SearchFlags)|e(?:Formatter(?:Key|Ref|Style)|Ref))|ictionary(?:ApplierFunction|CopyDescriptionCallBack|EqualCallBack|HashCallBack|KeyCallBacks|Re(?:f|leaseCallBack|tainCallBack)|ValueCallBacks))|Error(?:Domain|Ref)|File(?:Descriptor(?:C(?:allBack|ontext)|NativeDescriptor|Ref)|Security(?:ClearOptions|Ref))|GregorianUnitFlags|HashCode|I(?:SO8601DateFormatOptions|ndex)|Locale(?:Identifier|Key|LanguageDirection|Ref)|M(?:achPort(?:C(?:allBack|ontext)|InvalidationCallBack|Ref)|essagePort(?:C(?:allBack|ontext)|InvalidationCallBack|Ref)|utable(?:A(?:rrayRef|ttributedStringRef)|B(?:agRef|itVectorRef)|CharacterSetRef|D(?:ataRef|ictionaryRef)|S(?:etRef|tringRef)))|N(?:otification(?:C(?:allback|enterRef)|Name|SuspensionBehavior)|u(?:llRef|mber(?:Formatter(?:Key|OptionFlags|PadPosition|R(?:ef|oundingMode)|Style)|Ref|Type)))|OptionFlags|P(?:lugIn(?:DynamicRegisterFunction|FactoryFunction|Instance(?:DeallocateInstanceDataFunction|GetInterfaceFunction|Ref)|Ref|UnloadFunction)|ropertyList(?:Format|MutabilityOptions|Ref))|R(?:ange|eadStream(?:ClientCallBack|Ref)|unLoop(?:Activity|Mode|Observer(?:C(?:allBack|ontext)|Ref)|R(?:ef|unResult)|Source(?:Context(?:1)?|Ref)|Timer(?:C(?:allBack|ontext)|Ref)))|S(?:et(?:ApplierFunction|C(?:allBacks|opyDescriptionCallBack)|EqualCallBack|HashCallBack|Re(?:f|leaseCallBack|tainCallBack))|ocket(?:C(?:allBack(?:Type)?|ontext)|Error|NativeHandle|Ref|Signature)|tr(?:eam(?:ClientContext|E(?:rror(?:Domain)?|ventType)|PropertyKey|Status)|ing(?:BuiltInEncodings|CompareFlags|Encoding(?:s)?|InlineBuffer|NormalizationForm|Ref|Tokenizer(?:Ref|TokenType)))|wappedFloat(?:32|64))|T(?:ime(?:Interval|Zone(?:NameStyle|Ref))|ree(?:ApplierFunction|Co(?:ntext|pyDescriptionCallBack)|Re(?:f|leaseCallBack|tainCallBack))|ype(?:ID|Ref))|U(?:RL(?:Bookmark(?:CreationOptions|FileCreationOptions|ResolutionOptions)|ComponentType|E(?:numerator(?:Options|Re(?:f|sult))|rror)|PathStyle|Ref)|UID(?:Bytes|Ref)|serNotification(?:CallBack|Ref))|WriteStream(?:ClientCallBack|Ref)|XML(?:Attribute(?:DeclarationInfo|ListDeclarationInfo)|Document(?:Info|TypeInfo)|E(?:lement(?:Info|TypeDeclarationInfo)|ntity(?:Info|ReferenceInfo|TypeCode)|xternalID)|No(?:de(?:Ref|TypeCode)|tationInfo)|P(?:arser(?:AddChildCallBack|C(?:allBacks|o(?:ntext|pyDescriptionCallBack)|reateXMLStructureCallBack)|EndXMLStructureCallBack|HandleErrorCallBack|Options|Re(?:f|leaseCallBack|solveExternalEntityCallBack|tainCallBack)|StatusCode)|rocessingInstructionInfo)|TreeRef))|FSRef)\\\\b',\n name: 'support.type.cf.c'\n },\n {\n match:\n '\\\\b(?:accessx_descriptor|blk(?:cnt_t|size_t)|c(?:addr_t|lock(?:_t|i(?:d_t|nfo))|t_rune_t)|d(?:addr_t|ev_t|i(?:spatch_time_t|v_t)|ouble_t)|e(?:rrno_t|xception)|f(?:bootstraptransfer(?:_t)?|c(?:hecklv(?:_t)?|odeblobs(?:_t)?)|d_(?:mask|set)|i(?:lesec_(?:property_t|t)|xpt_t)|lo(?:at_t|ck(?:timeout)?)|punchhole(?:_t)?|s(?:blkcnt_t|filcnt_t|i(?:d(?:_t)?|gnatures(?:_t)?)|obj_id(?:_t)?|pecread(?:_t)?|searchblock|tore(?:_t)?)|trimactivefile(?:_t)?)|g(?:id_t|uid_t)|i(?:d(?:_t|type_t)|n(?:_(?:addr_t|port_t)|o(?:64_t|_t)|t(?:16_t|32_t|64_t|8_t|_(?:fast(?:16_t|32_t|64_t|8_t)|least(?:16_t|32_t|64_t|8_t))|max_t|ptr_t))|ovec|timerval)|jmp_buf|key_t|l(?:conv|div_t|ldiv_t|og2phys)|m(?:a(?:ch_port_t|x_align_t)|ode_t)|nlink_t|off_t|p(?:id_t|roc_rlimit_control_wakeupmon|trdiff_t)|q(?:addr_t|uad_t)|r(?:advisory|egister_t|lim(?:_t|it)|size_t|u(?:ne_t|sage(?:_info_(?:current|t|v(?:0|1|2|3|4)))?))|s(?:a_family_t|e(?:archstate|gsz_t)|i(?:g(?:_(?:atomic_t|t)|action|event|info_t|jmp_buf|s(?:et_t|tack)|vec)|md_(?:double(?:2x(?:2|3|4)|3x(?:2|3|4)|4x(?:2|3|4))|float(?:2x(?:2|3|4)|3x(?:2|3|4)|4x(?:2|3|4))|quat(?:d|f))|ze_t)|ocklen_t|size_t|tack_t|useconds_t|wblk_t|yscall_arg_t)|t(?:ime(?:_t|spec|val(?:64)?|zone)|m)|u(?:_(?:char|int(?:16_t|32_t|64_t|8_t)?|long|quad_t|short)|context_t|i(?:d_t|nt(?:16_t|32_t|64_t|8_t|_(?:fast(?:16_t|32_t|64_t|8_t)|least(?:16_t|32_t|64_t|8_t))|max_t|ptr_t)?)|s(?:e(?:conds_t|r_(?:addr_t|long_t|off_t|s(?:ize_t|size_t)|time_t|ulong_t))|hort)|uid_t)|va_list|w(?:char_t|int_t))\\\\b',\n name: 'support.type.clib.c'\n },\n {\n match:\n '\\\\bdispatch_(?:autorelease_frequency_t|block_(?:flags_t|t)|channel_s|data_(?:s|t)|f(?:d_t|unction_t)|group_(?:s|t)|io_(?:close_flags_t|handler_t|interval_flags_t|s|t(?:ype_t)?)|mach_(?:msg_s|s)|o(?:bject_(?:s|t)|nce_t)|q(?:os_class_t|ueue_(?:attr_(?:s|t)|concurrent_t|global_t|main_t|priority_t|s(?:erial_t)?|t))|s(?:emaphore_(?:s|t)|ource_(?:m(?:ach_(?:recv_flags_t|send_flags_t)|emorypressure_flags_t)|proc_flags_t|s|t(?:imer_flags_t|ype_(?:s|t))?|vnode_flags_t))|workloop_t)\\\\b',\n name: 'support.type.dispatch.c'\n },\n {\n match:\n '\\\\b(?:AbsoluteTime|B(?:oolean|yte(?:Count|Offset|Ptr)?)|C(?:harParameter|o(?:mpTimeValue|nst(?:LogicalAddress|Str(?:15Param|2(?:55Param|7Param)|3(?:1Param|2Param)|63Param|FileNameParam|ingPtr))))|Duration|F(?:ixed(?:P(?:oint|tr)|Rect)?|loat(?:32(?:Point)?|64|80|96)|ourCharCode|ract(?:Ptr)?)|Handle|ItemCount|L(?:angCode|ogicalAddress)|NumVersion(?:Variant(?:Handle|Ptr)?)?|O(?:S(?:Err|Status|Type(?:Ptr)?)|ptionBits)|P(?:BVersion|RefCon|hysicalAddress|oint(?:Ptr)?|roc(?:Handle|Ptr|essSerialNumber(?:Ptr)?)|tr)|Re(?:ct(?:Ptr)?|gi(?:onCode|ster68kProcPtr)|sType(?:Ptr)?)|S(?:Int(?:16|32|64|8)|RefCon|criptCode|hortFixed(?:Ptr)?|i(?:gnedByte|ze)|t(?:r(?:15|2(?:55|7)|3(?:1|2(?:Field)?)|63|FileName|ing(?:Handle|Ptr))|yle(?:Field|Parameter)?))|Time(?:Base(?:Record)?|Record|Scale|Value(?:64)?)|U(?:Int(?:16|32|64|8)|RefCon|TF(?:16Char|32Char|8Char)|n(?:i(?:Char(?:Count(?:Ptr)?|Ptr)?|codeScalarValue|versalProc(?:Handle|Ptr))|signed(?:Fixed(?:Ptr)?|Wide(?:Ptr)?)))|V(?:HSelect|ersRec(?:Hndl|Ptr)?)|WidePtr|extended(?:80|96)|wide)\\\\b',\n name: 'support.type.mac-classic.c'\n },\n {\n match:\n '\\\\bpthread_(?:attr_t|cond(?:_t|attr_t)|key_t|mutex(?:_t|attr_t)|once_t|rwlock(?:_t|attr_t)|t)\\\\b',\n name: 'support.type.pthread.c'\n },\n {\n match:\n '\\\\b(?:CG(?:AffineTransform|B(?:itmap(?:ContextReleaseDataCallback|Info)|lendMode|uttonCount)|C(?:aptureOptions|harCode|o(?:lor(?:ConversionInfo(?:Ref|TransformType)?|Re(?:f|nderingIntent)|Space(?:Model|Ref)?)?|n(?:figureOption|text(?:Ref)?)))|D(?:ata(?:Consumer(?:Callbacks|PutBytesCallback|Re(?:f|leaseInfoCallback))?|Provider(?:DirectCallbacks|GetByte(?:PointerCallback|s(?:AtPositionCallback|Callback))|Re(?:f|lease(?:BytePointerCallback|DataCallback|InfoCallback)|windCallback)|S(?:equentialCallbacks|kipForwardCallback))?)|eviceColor|i(?:rectDisplayID|splay(?:BlendFraction|C(?:hangeSummaryFlags|o(?:nfigRef|unt))|Err|Fade(?:Interval|ReservationToken)|Mode(?:Ref)?|Re(?:configurationCallBack|servationInterval)|Stream(?:Frame(?:AvailableHandler|Status)|Ref|Update(?:Re(?:ctType|f))?)?)))|E(?:rror|vent(?:Err|F(?:i(?:eld|lterMask)|lags)|M(?:ask|ouseSubtype)|Ref|S(?:ource(?:KeyboardType|Ref|StateID)|uppressionState)|T(?:ap(?:CallBack|Information|Location|Options|P(?:lacement|roxy))|imestamp|ype)))|F(?:loat|ont(?:Index|PostScriptFormat|Ref)?|unction(?:Callbacks|EvaluateCallback|Re(?:f|leaseInfoCallback))?)|G(?:ammaValue|esturePhase|lyph(?:DeprecatedEnum)?|radient(?:DrawingOptions|Ref)?)|I(?:mage(?:AlphaInfo|ByteOrderInfo|PixelFormatInfo|Ref)?|nterpolationQuality)|KeyCode|L(?:ayer(?:Ref)?|ine(?:Cap|Join))|M(?:o(?:mentumScrollPhase|useButton)|utablePathRef)|OpenGLDisplayMask|P(?:DF(?:A(?:ccessPermissions|rray(?:Ref)?)|Bo(?:olean|x)|ContentStream(?:Ref)?|D(?:ataFormat|ictionary(?:ApplierFunction|Ref)?|ocument(?:Ref)?)|Integer|O(?:bject(?:Ref|Type)?|perator(?:Callback|Table(?:Ref)?))|Page(?:Ref)?|Real|S(?:canner(?:Ref)?|tr(?:eam(?:Ref)?|ing(?:Ref)?))|Tag(?:Property|Type))|SConverter(?:Begin(?:DocumentCallback|PageCallback)|Callbacks|End(?:DocumentCallback|PageCallback)|MessageCallback|ProgressCallback|Re(?:f|leaseInfoCallback))?|at(?:h(?:Appl(?:ierFunction|yBlock)|DrawingMode|Element(?:Type)?|Ref)?|tern(?:Callbacks|DrawPatternCallback|Re(?:f|leaseInfoCallback)|Tiling)?)|oint)|Re(?:ct(?:Count|Edge)?|freshRate)|S(?:cr(?:een(?:RefreshCallback|Update(?:Move(?:Callback|Delta)|Operation))|oll(?:EventUnit|Phase))|hading(?:Ref)?|ize)|Text(?:DrawingMode|Encoding)|Vector|W(?:heelCount|indow(?:BackingType|I(?:D|mageOption)|L(?:evel(?:Key)?|istOption)|SharingType)))|IOSurfaceRef)\\\\b',\n name: 'support.type.quartz.c'\n },\n {\n match:\n '\\\\b(?:k(?:C(?:FHTTPVersion2_0|GImage(?:Destination(?:EmbedThumbnail|ImageMaxPixelSize)|MetadataShouldExcludeGPS|Property(?:8BIMVersion|APNG(?:DelayTime|LoopCount|UnclampedDelayTime)|GPSHPositioningError|MakerAppleDictionary))|T(?:FontOpenTypeFeature(?:Tag|Value)|RubyAnnotationAttributeName)|V(?:ImageBufferAlphaChannelIsOpaque|PixelFormatCo(?:mponentRange(?:_(?:FullRange|VideoRange|WideRange))?|ntains(?:RGB|YCbCr))))|Sec(?:AttrAccess(?:Control|ibleWhenPasscodeSetThisDeviceOnly)|UseOperationPrompt)|UTType(?:3DContent|A(?:VIMovie|pple(?:ProtectedMPEG4Video|Script)|ssemblyLanguageSource|udioInterchangeFileFormat)|B(?:inaryPropertyList|ookmark|zip2Archive)|C(?:alendarEvent|ommaSeparatedText)|DelimitedText|E(?:lectronicPublication|mailMessage)|Font|GNUZipArchive|InternetLocation|J(?:SON|ava(?:Archive|Class|Script))|Log|M(?:3UPlaylist|IDIAudio|PEG2(?:TransportStream|Video))|OSAScript(?:Bundle)?|P(?:HPScript|KCS12|erlScript|l(?:aylist|uginBundle)|r(?:esentation|opertyList)|ythonScript)|QuickLookGenerator|R(?:awImage|ubyScript)|S(?:c(?:alableVectorGraphics|ript)|hellScript|p(?:otlightImporter|readsheet)|ystemPreferencesPane)|T(?:abSeparatedText|oDoItem)|U(?:RLBookmarkData|TF8TabSeparatedText|nixExecutable)|W(?:aveformAudio|indowsExecutable)|X(?:509Certificate|MLPropertyList|PCService)|ZipArchive))|matrix_identity_(?:double(?:2x2|3x3|4x4)|float(?:2x2|3x3|4x4)))\\\\b',\n name: 'support.variable.10.10.c'\n },\n {\n match:\n '\\\\bk(?:A(?:XListItem(?:IndexTextAttribute|LevelTextAttribute|PrefixTextAttribute)|udioComponent(?:InstanceInvalidationNotification|RegistrationsChangedNotification))|C(?:FStreamPropertySocketExtendedBackgroundIdleMode|GImage(?:Property(?:ExifSubsecTimeOriginal|PNGCompressionFilter|TIFFTile(?:Length|Width))|SourceSubsampleFactor)|V(?:ImageBuffer(?:ColorPrimaries_(?:DCI_P3|ITU_R_2020|P3_D65)|TransferFunction_ITU_R_2020|YCbCrMatrix_(?:DCI_P3|ITU_R_2020|P3_D65))|MetalTextureCacheMaximumTextureAgeKey|PixelBuffer(?:MetalCompatibilityKey|OpenGLTextureCacheCompatibilityKey)))|MDItemHTMLContent|Sec(?:A(?:CLAuthorization(?:Integrity|PartitionID)|ttrSyncViewHint)|PolicyApplePayIssuerEncryption|TrustCertificateTransparency|UseAuthentication(?:Context|UI(?:Allow|Fail|Skip)?))|UTTypeSwiftSource)\\\\b',\n name: 'support.variable.10.11.c'\n },\n {\n match:\n '\\\\bk(?:C(?:FStreamNetworkServiceTypeCallSignaling|GImage(?:DestinationOptimizeColorForSharing|PropertyDNG(?:AsShot(?:Neutral|WhiteXY)|B(?:aseline(?:Exposure|Noise|Sharpness)|lackLevel)|C(?:a(?:librationIlluminant(?:1|2)|meraCalibration(?:1|2|Signature))|olorMatrix(?:1|2))|FixVignetteRadial|NoiseProfile|Pr(?:ivateData|ofileCalibrationSignature)|W(?:arp(?:Fisheye|Rectilinear)|hiteLevel)))|T(?:BackgroundColorAttributeName|FontDownloadedAttribute|HorizontalInVerticalFormsAttributeName|RubyAnnotationS(?:caleToFitAttributeName|izeFactorAttributeName)|TrackingAttributeName)|VImageBufferTransferFunction_SMPTE_ST_428_1)|IOSurfacePixelSizeCastingAllowed|Sec(?:Attr(?:AccessGroupToken|KeyTypeECSECPrimeRandom|TokenID(?:SecureEnclave)?)|Key(?:Algorithm(?:EC(?:D(?:HKeyExchange(?:Cofactor(?:X963SHA(?:1|2(?:24|56)|384|512))?|Standard(?:X963SHA(?:1|2(?:24|56)|384|512))?)|SASignature(?:DigestX962(?:SHA(?:1|2(?:24|56)|384|512))?|MessageX962SHA(?:1|2(?:24|56)|384|512)|RFC4754))|IESEncryption(?:CofactorX963SHA(?:1AESGCM|2(?:24AESGCM|56AESGCM)|384AESGCM|512AESGCM)|StandardX963SHA(?:1AESGCM|2(?:24AESGCM|56AESGCM)|384AESGCM|512AESGCM)))|RSA(?:Encryption(?:OAEPSHA(?:1(?:AESGCM)?|2(?:24(?:AESGCM)?|56(?:AESGCM)?)|384(?:AESGCM)?|512(?:AESGCM)?)|PKCS1|Raw)|Signature(?:DigestPKCS1v15(?:Raw|SHA(?:1|2(?:24|56)|384|512))|MessagePKCS1v15SHA(?:1|2(?:24|56)|384|512)|Raw)))|KeyExchangeParameter(?:RequestedSize|SharedInfo)))|UTTypeLivePhoto)\\\\b',\n name: 'support.variable.10.12.c'\n },\n {\n match:\n '\\\\bk(?:C(?:GImage(?:AuxiliaryData(?:Info(?:Data(?:Description)?|Metadata)|TypeD(?:epth|isparity))|Metadata(?:NamespaceIPTCExtension|PrefixIPTCExtension)|Property(?:AuxiliaryData(?:Type)?|BytesPerRow|FileContentsDictionary|Height|I(?:PTCExt(?:A(?:boutCvTerm(?:CvId|Id|Name|RefinedAbout)?|ddlModelInfo|rtwork(?:C(?:ircaDateCreated|o(?:nt(?:entDescription|ributionDescription)|pyright(?:Notice|Owner(?:ID|Name)))|reator(?:ID)?)|DateCreated|Licensor(?:ID|Name)|OrObject|PhysicalDescription|S(?:ource(?:Inv(?:URL|entoryNo))?|tylePeriod)|Title)|udio(?:Bitrate(?:Mode)?|ChannelCount))|C(?:ircaDateCreated|o(?:nt(?:ainerFormat(?:Identifier|Name)?|r(?:ibutor(?:Identifier|Name|Role)?|olledVocabularyTerm))|pyrightYear)|reator(?:Identifier|Name|Role)?)|D(?:ataOnScreen(?:Region(?:D|H|Text|Unit|W|X|Y)?)?|igital(?:ImageGUID|Source(?:FileType|Type))|opesheet(?:Link(?:Link(?:Qualifier)?)?)?)|E(?:mb(?:dEncRightsExpr|eddedEncodedRightsExpr(?:LangID|Type)?)|pisode(?:Identifier|N(?:ame|umber))?|vent|xternalMetadataLink)|FeedIdentifier|Genre(?:Cv(?:Id|Term(?:Id|Name|RefinedAbout)))?|Headline|IPTCLastEdited|L(?:inkedEnc(?:RightsExpr|odedRightsExpr(?:LangID|Type)?)|ocation(?:C(?:ity|ountry(?:Code|Name)|reated)|GPS(?:Altitude|L(?:atitude|ongitude))|Identifier|Location(?:Id|Name)|ProvinceState|S(?:hown|ublocation)|WorldRegion))|M(?:axAvail(?:Height|Width)|odelAge)|OrganisationInImage(?:Code|Name)|P(?:erson(?:Heard(?:Identifier|Name)?|InImage(?:C(?:haracteristic|vTerm(?:CvId|Id|Name|RefinedAbout))|Description|Id|Name|WDetails)?)|roductInImage(?:Description|GTIN|Name)?|ublicationEvent(?:Date|Identifier|Name)?)|R(?:ating(?:R(?:atingRegion|egion(?:C(?:ity|ountry(?:Code|Name))|GPS(?:Altitude|L(?:atitude|ongitude))|Identifier|Location(?:Id|Name)|ProvinceState|Sublocation|WorldRegion))|S(?:caleM(?:axValue|inValue)|ourceLink)|Value(?:LogoLink)?)?|e(?:gistry(?:EntryRole|I(?:D|temID)|OrganisationID)|leaseReady))|S(?:e(?:ason(?:Identifier|N(?:ame|umber))?|ries(?:Identifier|Name)?)|hownEvent(?:Identifier|Name)?|t(?:orylineIdentifier|reamReady|ylePeriod)|upplyChainSource(?:Identifier|Name)?)|T(?:emporalCoverage(?:From|To)?|ranscript(?:Link(?:Link(?:Qualifier)?)?)?)|Vi(?:deo(?:Bitrate(?:Mode)?|DisplayAspectRatio|EncodingProfile|S(?:hotType(?:Identifier|Name)?|treamsCount))|sualColor)|WorkflowTag(?:Cv(?:Id|Term(?:Id|Name|RefinedAbout)))?)|mage(?:Count|s))|NamedColorSpace|P(?:ixelFormat|rimaryImage)|ThumbnailImages|Width))|T(?:BaselineOffsetAttributeName|FontVariationAxisHiddenKey)|V(?:ImageBuffer(?:ContentLightLevelInfoKey|MasteringDisplayColorVolumeKey|TransferFunction_(?:ITU_R_2100_HLG|SMPTE_ST_2084_PQ|sRGB))|MetalTextureUsage))|IOSurface(?:Plane(?:BitsPerElement|Component(?:Bit(?:Depths|Offsets)|Names|Ranges|Types))|Subsampling)|Sec(?:A(?:CLAuthorizationChange(?:ACL|Owner)|ttrPersist(?:antReference|entReference))|KeyAlgorithm(?:ECIESEncryption(?:CofactorVariableIVX963SHA(?:2(?:24AESGCM|56AESGCM)|384AESGCM|512AESGCM)|StandardVariableIVX963SHA(?:2(?:24AESGCM|56AESGCM)|384AESGCM|512AESGCM))|RSASignature(?:DigestPSSSHA(?:1|2(?:24|56)|384|512)|MessagePSSSHA(?:1|2(?:24|56)|384|512)))))\\\\b',\n name: 'support.variable.10.13.c'\n },\n {\n match:\n '\\\\bkC(?:GImage(?:AuxiliaryDataTypePortraitEffectsMatte|Property(?:DNG(?:A(?:ctiveArea|n(?:alogBalance|tiAliasStrength)|sShot(?:ICCProfile|Pr(?:eProfileMatrix|ofileName)))|B(?:a(?:selineExposureOffset|yerGreenSplit)|estQualityScale|lackLevel(?:Delta(?:H|V)|RepeatDim))|C(?:FA(?:Layout|PlaneColor)|hromaBlurRadius|olorimetricReference|urrent(?:ICCProfile|PreProfileMatrix))|Default(?:BlackRender|Crop(?:Origin|Size)|Scale|UserCrop)|ExtraCameraProfiles|ForwardMatrix(?:1|2)|Linear(?:ResponseLimit|izationTable)|Ma(?:kerNoteSafety|skedAreas)|N(?:ewRawImageDigest|oiseReductionApplied)|O(?:pcodeList(?:1|2|3)|riginal(?:BestQualityFinalSize|Default(?:CropSize|FinalSize)|RawFile(?:D(?:ata|igest)|Name)))|Pr(?:eview(?:Application(?:Name|Version)|ColorSpace|DateTime|Settings(?:Digest|Name))|ofile(?:Copyright|EmbedPolicy|HueSatMap(?:D(?:ata(?:1|2)|ims)|Encoding)|LookTable(?:D(?:ata|ims)|Encoding)|Name|ToneCurve))|R(?:aw(?:DataUniqueID|ImageDigest|ToPreviewGain)|eductionMatrix(?:1|2)|owInterleaveFactor)|S(?:hadowScale|ubTileBlockSize))|PNG(?:Comment|Disclaimer|Source|Warning)))|TTypesetterOptionAllowUnboundedLayout|V(?:ImageBufferTransferFunction_Linear|PixelFormatContainsGrayscale))\\\\b',\n name: 'support.variable.10.14.c'\n },\n {\n match:\n '\\\\bk(?:C(?:FStreamProperty(?:Allow(?:ConstrainedNetworkAccess|ExpensiveNetworkAccess)|ConnectionIsExpensive)|GImage(?:A(?:nimation(?:DelayTime|LoopCount|StartIndex)|uxiliaryDataTypeSemanticSegmentation(?:HairMatte|SkinMatte|TeethMatte))|Property(?:APNG(?:CanvasPixel(?:Height|Width)|FrameInfoArray)|Exif(?:CompositeImage|OffsetTime(?:Digitized|Original)?|Source(?:ExposureTimesOfCompositeImage|ImageNumberOfCompositeImage))|GIF(?:CanvasPixel(?:Height|Width)|FrameInfoArray)|HEICS(?:CanvasPixel(?:Height|Width)|D(?:elayTime|ictionary)|FrameInfoArray|LoopCount|UnclampedDelayTime)))|TFontFeature(?:SampleTextKey|TooltipTextKey)|V(?:ImageBufferAlphaChannelMode(?:Key|_(?:PremultipliedAlpha|StraightAlpha))|MetalTextureStorageMode))|MIDIPropertyNameConfigurationDictionary|Sec(?:PropertyType(?:Array|Number)|UseDataProtectionKeychain))\\\\b',\n name: 'support.variable.10.15.c'\n },\n {match: '\\\\bkColorSyncExtendedRange\\\\b', name: 'support.variable.10.16.c'},\n {\n match:\n '\\\\bk(?:C(?:FStream(?:NetworkServiceType(?:AVStreaming|Responsive(?:AV|Data))|Property(?:ConnectionIsCellular|NoCellular))|GImage(?:Destination(?:DateTime|Me(?:rgeMetadata|tadata)|Orientation)|Metadata(?:EnumerateRecursively|Namespace(?:DublinCore|Exif(?:Aux)?|IPTCCore|Photoshop|TIFF|XMP(?:Basic|Rights))|Prefix(?:DublinCore|Exif(?:Aux)?|IPTCCore|Photoshop|TIFF|XMP(?:Basic|Rights))|ShouldExcludeXMP))|T(?:Baseline(?:Class(?:AttributeName|Hanging|Ideographic(?:Centered|High|Low)|Math|Roman)|InfoAttributeName|OriginalFont|Reference(?:Font|InfoAttributeName))|FontD(?:escriptorMatching(?:CurrentAssetSize|Descriptors|Error|Percentage|Result|SourceDescriptor|Total(?:AssetSize|DownloadedSize))|ownloadableAttribute)|WritingDirectionAttributeName)|VImageBufferColorPrimaries_P22)|Sec(?:O(?:AEP(?:EncodingParametersAttributeName|M(?:GF1DigestAlgorithmAttributeName|essageLengthAttributeName))|IDSRVName)|P(?:addingOAEPKey|olicyAppleTimeStamping|rivateKeyAttrs|ublicKeyAttrs)))\\\\b',\n name: 'support.variable.10.8.c'\n },\n {\n match:\n '\\\\b(?:XPC_ACTIVITY_(?:ALLOW_BATTERY|CHECK_IN|DELAY|GRACE_PERIOD|INTERVAL(?:_(?:1(?:5_MIN|_(?:DAY|HOUR|MIN))|30_MIN|4_HOURS|5_MIN|7_DAYS|8_HOURS))?|PRIORITY(?:_(?:MAINTENANCE|UTILITY))?|RE(?:PEATING|QUIRE_SCREEN_SLEEP))|k(?:AX(?:MarkedMisspelledTextAttribute|TrustedCheckOptionPrompt)|C(?:FStreamPropertySSLContext|GImage(?:Metadata(?:NamespaceExifEX|PrefixExifEX)|Property(?:Exif(?:ISOSpeed(?:Latitude(?:yyy|zzz))?|RecommendedExposureIndex|S(?:ensitivityType|tandardOutputSensitivity))|OpenEXR(?:AspectRatio|Dictionary))|SourceShouldCacheImmediately)|TLanguageAttributeName)|S(?:ec(?:Attr(?:Access(?:Group|ible(?:AfterFirstUnlock(?:ThisDeviceOnly)?|WhenUnlocked(?:ThisDeviceOnly)?)?)|KeyTypeEC|Synchronizable(?:Any)?)|Policy(?:Apple(?:PassbookSigning|Revocation)|RevocationFlags|TeamIdentifier)|Trust(?:E(?:valuationDate|xtendedValidation)|OrganizationName|Re(?:sultValue|vocation(?:Checked|ValidUntilDate))))|peech(?:AudioOutputFormatProperty|Output(?:ChannelMapProperty|ToFileDescriptorProperty)|SynthExtensionProperty)))|vm_kernel_page_(?:mask|s(?:hift|ize)))\\\\b',\n name: 'support.variable.10.9.c'\n },\n {name: 'support.variable.c'},\n {\n match:\n '\\\\bkCF(?:Islamic(?:TabularCalendar|UmmAlQuraCalendar)|URL(?:AddedToDirectoryDateKey|DocumentIdentifierKey|GenerationIdentifierKey|QuarantinePropertiesKey))\\\\b',\n name: 'support.variable.cf.10.10.c'\n },\n {\n match: '\\\\bkCFURL(?:ApplicationIsScriptableKey|IsApplicationKey)\\\\b',\n name: 'support.variable.cf.10.11.c'\n },\n {\n match:\n '\\\\bkCFURL(?:CanonicalPathKey|Volume(?:Is(?:EncryptedKey|RootFileSystemKey)|Supports(?:CompressionKey|ExclusiveRenamingKey|FileCloningKey|SwapRenamingKey)))\\\\b',\n name: 'support.variable.cf.10.12.c'\n },\n {\n match:\n '\\\\bkCF(?:ErrorLocalizedFailureKey|URLVolume(?:AvailableCapacityFor(?:ImportantUsageKey|OpportunisticUsageKey)|Supports(?:AccessPermissionsKey|ImmutableFilesKey)))\\\\b',\n name: 'support.variable.cf.10.13.c'\n },\n {\n match: '\\\\bkCFURL(?:IsExcludedFromBackupKey|PathKey)\\\\b',\n name: 'support.variable.cf.10.8.c'\n },\n {\n match:\n '\\\\bkCFURL(?:TagNamesKey|UbiquitousItem(?:Downloading(?:ErrorKey|Status(?:Current|Downloaded|Key|NotDownloaded))|UploadingErrorKey))\\\\b',\n name: 'support.variable.cf.10.9.c'\n },\n {\n match:\n '\\\\bkCF(?:A(?:bsoluteTimeIntervalSince19(?:04|70)|llocator(?:Default|Malloc(?:Zone)?|Null|SystemDefault|UseContext))|B(?:oolean(?:False|True)|u(?:ddhistCalendar|ndle(?:DevelopmentRegionKey|ExecutableKey|I(?:dentifierKey|nfoDictionaryVersionKey)|LocalizationsKey|NameKey|VersionKey)))|C(?:hineseCalendar|o(?:pyString(?:BagCallBacks|DictionaryKeyCallBacks|SetCallBacks)|reFoundationVersionNumber))|DateFormatter(?:AMSymbol|Calendar(?:Name)?|D(?:efault(?:Date|Format)|oesRelativeDateFormattingKey)|EraSymbols|GregorianStartDate|IsLenient|LongEraSymbols|MonthSymbols|PMSymbol|QuarterSymbols|S(?:hort(?:MonthSymbols|QuarterSymbols|Standalone(?:MonthSymbols|QuarterSymbols|WeekdaySymbols)|WeekdaySymbols)|tandalone(?:MonthSymbols|QuarterSymbols|WeekdaySymbols))|T(?:imeZone|woDigitStartDate)|VeryShort(?:MonthSymbols|Standalone(?:MonthSymbols|WeekdaySymbols)|WeekdaySymbols)|WeekdaySymbols)|Error(?:D(?:escriptionKey|omain(?:Cocoa|Mach|OSStatus|POSIX))|FilePathKey|Localized(?:DescriptionKey|FailureReasonKey|RecoverySuggestionKey)|U(?:RLKey|nderlyingErrorKey))|GregorianCalendar|HebrewCalendar|I(?:SO8601Calendar|ndianCalendar|slamicC(?:alendar|ivilCalendar))|JapaneseCalendar|Locale(?:AlternateQuotation(?:BeginDelimiterKey|EndDelimiterKey)|C(?:alendar(?:Identifier)?|o(?:llat(?:ionIdentifier|orIdentifier)|untryCode)|urren(?:cy(?:Code|Symbol)|tLocaleDidChangeNotification))|DecimalSeparator|ExemplarCharacterSet|GroupingSeparator|Identifier|LanguageCode|MeasurementSystem|Quotation(?:BeginDelimiterKey|EndDelimiterKey)|ScriptCode|UsesMetricSystem|VariantCode)|N(?:otFound|u(?:ll|mber(?:Formatter(?:AlwaysShowDecimalSeparator|Currency(?:Code|DecimalSeparator|GroupingSeparator|Symbol)|De(?:cimalSeparator|faultFormat)|ExponentSymbol|FormatWidth|GroupingS(?:eparator|ize)|I(?:n(?:finitySymbol|ternationalCurrencySymbol)|sLenient)|M(?:ax(?:FractionDigits|IntegerDigits|SignificantDigits)|in(?:FractionDigits|IntegerDigits|SignificantDigits|usSign)|ultiplier)|N(?:aNSymbol|egative(?:Prefix|Suffix))|P(?:adding(?:Character|Position)|er(?:MillSymbol|centSymbol)|lusSign|ositive(?:Prefix|Suffix))|Rounding(?:Increment|Mode)|SecondaryGroupingSize|Use(?:GroupingSeparator|SignificantDigits)|ZeroSymbol)|N(?:aN|egativeInfinity)|PositiveInfinity)))|P(?:ersianCalendar|lugIn(?:DynamicRegist(?:erFunctionKey|rationKey)|FactoriesKey|TypesKey|UnloadFunctionKey)|references(?:Any(?:Application|Host|User)|Current(?:Application|Host|User)))|R(?:epublicOfChinaCalendar|unLoop(?:CommonModes|DefaultMode))|S(?:ocket(?:CommandKey|ErrorKey|NameKey|Re(?:gisterCommand|sultKey|trieveCommand)|ValueKey)|tr(?:eam(?:ErrorDomainS(?:OCKS|SL)|Property(?:AppendToFile|DataWritten|FileCurrentOffset|S(?:OCKS(?:P(?:assword|roxy(?:Host|Port)?)|User|Version)|houldCloseNativeSocket|ocket(?:NativeHandle|Remote(?:HostName|PortNumber)|SecurityLevel)))|SocketS(?:OCKSVersion(?:4|5)|ecurityLevel(?:N(?:egotiatedSSL|one)|TLSv1)))|ing(?:BinaryHeapCallBacks|Transform(?:FullwidthHalfwidth|HiraganaKatakana|Latin(?:Arabic|Cyrillic|Greek|H(?:angul|ebrew|iragana)|Katakana|Thai)|MandarinLatin|Strip(?:CombiningMarks|Diacritics)|To(?:Latin|UnicodeName|XMLHex)))))|T(?:imeZoneSystemTimeZoneDidChangeNotification|ype(?:ArrayCallBacks|BagCallBacks|Dictionary(?:KeyCallBacks|ValueCallBacks)|SetCallBacks))|U(?:RL(?:AttributeModificationDateKey|C(?:ontent(?:AccessDateKey|ModificationDateKey)|reationDateKey)|File(?:AllocatedSizeKey|Protection(?:Complete(?:Un(?:lessOpen|tilFirstUserAuthentication))?|Key|None)|Resource(?:IdentifierKey|Type(?:BlockSpecial|CharacterSpecial|Directory|Key|NamedPipe|Regular|S(?:ocket|ymbolicLink)|Unknown))|S(?:ecurityKey|izeKey))|HasHiddenExtensionKey|Is(?:AliasFileKey|DirectoryKey|ExecutableKey|HiddenKey|MountTriggerKey|PackageKey|Re(?:adableKey|gularFileKey)|Sy(?:mbolicLinkKey|stemImmutableKey)|U(?:biquitousItemKey|serImmutableKey)|VolumeKey|WritableKey)|KeysOfUnsetValuesKey|L(?:abelNumberKey|inkCountKey|ocalized(?:LabelKey|NameKey|TypeDescriptionKey))|NameKey|P(?:arentDirectoryURLKey|referredIOBlockSizeKey)|T(?:otalFile(?:AllocatedSizeKey|SizeKey)|ypeIdentifierKey)|UbiquitousItem(?:HasUnresolvedConflictsKey|Is(?:DownloadingKey|Upload(?:edKey|ingKey)))|Volume(?:AvailableCapacityKey|CreationDateKey|I(?:dentifierKey|s(?:AutomountedKey|BrowsableKey|EjectableKey|InternalKey|JournalingKey|LocalKey|Re(?:adOnlyKey|movableKey)))|Localized(?:FormatDescriptionKey|NameKey)|MaximumFileSizeKey|NameKey|ResourceCountKey|Supports(?:AdvisoryFileLockingKey|Case(?:PreservedNamesKey|SensitiveNamesKey)|ExtendedSecurityKey|HardLinksKey|JournalingKey|PersistentIDsKey|R(?:enamingKey|ootDirectoryDatesKey)|S(?:parseFilesKey|ymbolicLinksKey)|VolumeSizesKey|ZeroRunsKey)|TotalCapacityKey|U(?:RL(?:ForRemountingKey|Key)|UIDStringKey)))|serNotification(?:Al(?:ert(?:HeaderKey|MessageKey|TopMostKey)|ternateButtonTitleKey)|CheckBoxTitlesKey|DefaultButtonTitleKey|IconURLKey|KeyboardTypesKey|LocalizationURLKey|OtherButtonTitleKey|P(?:opUp(?:SelectionKey|TitlesKey)|rogressIndicatorValueKey)|SoundURLKey|TextField(?:TitlesKey|ValuesKey)))|XMLTreeError(?:Description|L(?:ineNumber|ocation)|StatusCode))\\\\b',\n name: 'support.variable.cf.c'\n },\n {\n match:\n '\\\\b(?:daylight|getdate_err|opt(?:arg|err|ind|opt|reset)|s(?:igngam|uboptarg|ys_(?:errlist|nerr|sig(?:list|name)))|t(?:imezone|zname))\\\\b',\n name: 'support.variable.clib.c'\n },\n {\n match:\n '\\\\bkCGColorSpace(?:ACESCGLinear|D(?:CIP3|isplayP3)|GenericXYZ|ITUR_(?:2020|709)|ROMMRGB)\\\\b',\n name: 'support.variable.quartz.10.11.c'\n },\n {\n match:\n '\\\\bkCGColor(?:ConversionBlackPointCompensation|Space(?:Extended(?:Gray|Linear(?:Gray|SRGB)|SRGB)|Linear(?:Gray|SRGB)))\\\\b',\n name: 'support.variable.quartz.10.12.c'\n },\n {\n match:\n '\\\\bkCG(?:Color(?:ConversionTRCSize|SpaceGenericLab)|PDF(?:ContextAccessPermissions|Outline(?:Children|Destination(?:Rect)?|Title)))\\\\b',\n name: 'support.variable.quartz.10.13.c'\n },\n {\n match:\n '\\\\bkCGColorSpace(?:DisplayP3_HLG|ExtendedLinear(?:DisplayP3|ITUR_2020)|ITUR_2020_HLG)\\\\b',\n name: 'support.variable.quartz.10.14.c'\n },\n {\n match:\n '\\\\bkCGPDFTagProperty(?:A(?:ctualText|lternativeText)|LanguageText|TitleText)\\\\b',\n name: 'support.variable.quartz.10.15.c'\n },\n {\n match: '\\\\bkCGColorSpace(?:DisplayP3_PQ|ITUR_2020_PQ)\\\\b',\n name: 'support.variable.quartz.10.16.c'\n },\n {\n match:\n '\\\\bkCGDisplayS(?:howDuplicateLowResolutionModes|tream(?:ColorSpace|DestinationRect|MinimumFrameTime|PreserveAspectRatio|QueueDepth|S(?:howCursor|ourceRect)|YCbCrMatrix(?:_(?:ITU_R_(?:601_4|709_2)|SMPTE_240M_1995))?))\\\\b',\n name: 'support.variable.quartz.10.8.c'\n },\n {\n match:\n '\\\\b(?:CG(?:AffineTransformIdentity|PointZero|Rect(?:Infinite|Null|Zero)|SizeZero)|kCG(?:Color(?:Black|Clear|Space(?:AdobeRGB1998|Generic(?:CMYK|Gray(?:Gamma2_2)?|RGB(?:Linear)?)|SRGB)|White)|Font(?:Index(?:Invalid|Max)|VariationAxis(?:DefaultValue|M(?:axValue|inValue)|Name))|GlyphMax|PDF(?:Context(?:A(?:llows(?:Copying|Printing)|rtBox|uthor)|BleedBox|Cr(?:eator|opBox)|EncryptionKeyLength|Keywords|MediaBox|O(?:utputIntent(?:s)?|wnerPassword)|Subject|T(?:itle|rimBox)|UserPassword)|X(?:DestinationOutputProfile|Info|Output(?:Condition(?:Identifier)?|IntentSubtype)|RegistryName))|Window(?:Alpha|B(?:ackingLocationVideoMemory|ounds)|IsOnscreen|Layer|MemoryUsage|N(?:ame|umber)|Owner(?:Name|PID)|S(?:haringState|toreType))))\\\\b',\n name: 'support.variable.quartz.c'\n }\n ],\n repository: {\n functions: {\n patterns: [\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.10.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:AudioFileReadPackets|LS(?:C(?:anRefAcceptItem|opy(?:ApplicationForMIMEType|DisplayNameForRef|Item(?:Attribute(?:s)?|InfoForRef)|KindStringFor(?:MIMEType|Ref|TypeInfo)))|FindApplicationForInfo|GetApplicationFor(?:I(?:nfo|tem)|URL)|Open(?:Application|F(?:SRef|romRefSpec)|ItemsWithRole|URLsWithRole)|RegisterFSRef|S(?:et(?:ExtensionHiddenForRef|ItemAttribute)|haredFileListI(?:nsertItemFSRef|temResolve)))|launch_(?:data_(?:a(?:lloc|rray_(?:get_(?:count|index)|set_index))|copy|dict_(?:get_count|i(?:nsert|terate)|lookup|remove)|free|get_(?:bool|errno|fd|integer|machport|opaque(?:_size)?|real|string|type)|new_(?:bool|fd|integer|machport|opaque|real|string)|set_(?:bool|fd|integer|machport|opaque|real|string))|get_fd|msg))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.10.support.function.cf.c'}\n },\n match:\n '(\\\\s*)(\\\\bCF(?:AbsoluteTime(?:AddGregorianUnits|Get(?:D(?:ayOf(?:Week|Year)|ifferenceAsGregorianUnits)|GregorianDate|WeekOfYear))|GregorianDate(?:GetAbsoluteTime|IsValid)|PropertyList(?:Create(?:From(?:Stream|XMLData)|XMLData)|WriteToStream))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.11.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:AudioHardwareService(?:AddPropertyListener|GetPropertyData(?:Size)?|HasProperty|IsPropertySettable|RemovePropertyListener|SetPropertyData)|CF(?:FTPCreateParsedResourceListing|ReadStreamCreate(?:For(?:HTTPRequest|StreamedHTTPRequest)|WithFTPURL)|WriteStreamCreateWithFTPURL)|LS(?:Copy(?:DisplayNameForURL|ItemInfoForURL|KindStringForURL)|Get(?:ExtensionInfo|HandlerOptionsForContentType)|S(?:et(?:ExtensionHiddenForURL|HandlerOptionsForContentType)|haredFileList(?:AddObserver|C(?:opy(?:Property|Snapshot)|reate)|Get(?:SeedValue|TypeID)|I(?:nsertItemURL|tem(?:Copy(?:DisplayName|IconRef|Property|ResolvedURL)|Get(?:ID|TypeID)|Move|Remove|SetProperty))|Remove(?:AllItems|Observer)|Set(?:Authorization|Property))))|SSLSetEncryptionCertificate)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.11.support.function.cf.c'}\n },\n match:\n '(\\\\s*)(\\\\bCFURLCreateStringBy(?:AddingPercentEscapes|ReplacingPercentEscapesUsingEncoding)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.11.support.function.quartz.c'}\n },\n match: '(\\\\s*)(\\\\bCGDisplayModeCopyPixelEncoding\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.12.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:OS(?:Atomic(?:A(?:dd(?:32(?:Barrier)?|64(?:Barrier)?)|nd32(?:Barrier|Orig(?:Barrier)?)?)|CompareAndSwap(?:32(?:Barrier)?|64(?:Barrier)?|Int(?:Barrier)?|Long(?:Barrier)?|Ptr(?:Barrier)?)|Decrement(?:32(?:Barrier)?|64(?:Barrier)?)|Increment(?:32(?:Barrier)?|64(?:Barrier)?)|Or32(?:Barrier|Orig(?:Barrier)?)?|TestAnd(?:Clear(?:Barrier)?|Set(?:Barrier)?)|Xor32(?:Barrier|Orig(?:Barrier)?)?)|MemoryBarrier|SpinLock(?:Lock|Try|Unlock))|SecCertificateCopyNormalized(?:IssuerContent|SubjectContent)|os_log_is_(?:debug_enabled|enabled))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.12.support.function.clib.c'}\n },\n match: '(\\\\s*)(\\\\b(?:arc4random_addrandom|syscall)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.13.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:C(?:FNetDiagnostic(?:C(?:opyNetworkStatusPassively|reateWith(?:Streams|URL))|DiagnoseProblemInteractively|SetName)|MSDecoderSetSearchKeychain)|DisposeSRCallBackUPP|GetIconRefFromFileInfo|InvokeSRCallBackUPP|NewSRCallBackUPP|Re(?:adIconFromFSRef|gisterIconRefFromFSRef)|S(?:R(?:Add(?:LanguageObject|Text)|C(?:ancelRecognition|hangeLanguageObject|loseRecognitionSystem|o(?:ntinueRecognition|untItems))|Draw(?:RecognizedText|Text)|EmptyLanguageObject|Get(?:IndexedItem|LanguageModel|Property|Reference)|Idle|New(?:Language(?:Model|ObjectFrom(?:DataFile|Handle))|P(?:ath|hrase)|Recognizer|Word)|OpenRecognitionSystem|P(?:rocess(?:Begin|End)|utLanguageObjectInto(?:DataFile|Handle))|Re(?:leaseObject|move(?:IndexedItem|LanguageObject))|S(?:et(?:IndexedItem|LanguageModel|Property)|pe(?:ak(?:AndDrawText|Text)|echBusy)|t(?:artListening|op(?:Listening|Speech))))|ec(?:CertificateCopySerialNumber|Keychain(?:CopyAccess|SetAccess)|TrustSetKeychains))|UnregisterIconRef|os_trace_(?:debug_enabled|info_enabled|type_enabled))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.13.support.function.quartz.c'}\n },\n match:\n '(\\\\s*)(\\\\bCGColorSpaceC(?:opyICCProfile|reateWithICCProfile)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.14.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:CVOpenGL(?:Buffer(?:Attach|Create|Get(?:Attributes|TypeID)|Pool(?:Create(?:OpenGLBuffer)?|Get(?:Attributes|OpenGLBufferAttributes|TypeID)|Re(?:lease|tain))|Re(?:lease|tain))|Texture(?:Cache(?:Create(?:TextureFromImage)?|Flush|GetTypeID|Re(?:lease|tain))|Get(?:CleanTexCoords|Name|T(?:arget|ypeID))|IsFlipped|Re(?:lease|tain)))|DR(?:AudioTrackCreate|F(?:SObjectGetRealFSRef|ileCreateReal|olderCreateReal))|SecCertificateCopyPublicKey)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.15.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:AcquireIconRef|C(?:C_MD(?:2(?:_(?:Final|Init|Update))?|4(?:_(?:Final|Init|Update))?|5(?:_(?:Final|Init|Update))?)|TFont(?:CreateWithQuickdrawInstance|Manager(?:RegisterFontsForURLs|UnregisterFontsForURLs))|ompositeIconRef)|Get(?:CustomIconsEnabled|IconRef(?:From(?:Component|Folder|IconFamilyPtr|TypeInfo)|Owners)?)|Is(?:DataAvailableInIconRef|IconRefComposite|ValidIconRef)|LSCopy(?:AllHandlersForURLScheme|DefaultHandlerForURLScheme)|OverrideIconRef|Re(?:gisterIconRefFromIconFamily|leaseIconRef|moveIconRefOverride)|S(?:SL(?:AddDistinguishedName|C(?:lose|o(?:ntextGetTypeID|py(?:ALPNProtocols|CertificateAuthorities|DistinguishedNames|PeerTrust|RequestedPeerName(?:Length)?))|reateContext)|Get(?:BufferedReadSize|C(?:lientCertificateState|onnection)|D(?:atagramWriteSize|iffieHellmanParams)|EnabledCiphers|MaxDatagramRecordSize|N(?:egotiated(?:Cipher|ProtocolVersion)|umber(?:EnabledCiphers|SupportedCiphers))|P(?:eer(?:DomainName(?:Length)?|ID)|rotocolVersionM(?:ax|in))|S(?:ession(?:Option|State)|upportedCiphers))|Handshake|Re(?:Handshake|ad)|Set(?:ALPNProtocols|C(?:ertificate(?:Authorities)?|lientSideAuthenticate|onnection)|D(?:atagramHelloCookie|iffieHellmanParams)|E(?:nabledCiphers|rror)|IOFuncs|MaxDatagramRecordSize|OCSPResponse|P(?:eer(?:DomainName|ID)|rotocolVersionM(?:ax|in))|Session(?:Config|Option|TicketsEnabled))|Write)|e(?:cTrust(?:Evaluate(?:Async)?|edApplication(?:C(?:opyData|reateFromPath)|SetData))|tCustomIconsEnabled))|UpdateIconRef|sec_protocol_(?:metadata_get_negotiated_(?:ciphersuite|protocol_version)|options_(?:add_tls_ciphersuite(?:_group)?|set_tls_(?:diffie_hellman_parameters|m(?:ax_version|in_version)))))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.15.support.function.cf.c'}\n },\n match:\n '(\\\\s*)(\\\\bCF(?:Bundle(?:CloseBundleResourceMap|OpenBundleResource(?:Files|Map))|URLCopyParameterString)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.15.support.function.quartz.c'}\n },\n match: '(\\\\s*)(\\\\bCGColorSpaceIsHDR\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.3.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:DisposeGetScrapDataUPP|InvokeGetScrapDataUPP|NewGetScrapDataUPP|ReleaseFolder)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.4.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:AH(?:GotoMainTOC|RegisterHelpBook)|CFNetServiceRe(?:gister|solve)|Dispose(?:CaretHookUPP|DrawHookUPP|EOLHookUPP|Hi(?:ghHookUPP|tTestHookUPP)|NWidthHookUPP|T(?:E(?:ClickLoopUPP|DoTextUPP|FindWordUPP|RecalcUPP)|XNActionKeyMapperUPP|extWidthHookUPP)|URL(?:NotifyUPP|SystemEventUPP)|WidthHookUPP)|In(?:s(?:Time|XTime|tall(?:TimeTask|XTimeTask))|voke(?:CaretHookUPP|DrawHookUPP|EOLHookUPP|Hi(?:ghHookUPP|tTestHookUPP)|NWidthHookUPP|T(?:E(?:ClickLoopUPP|DoTextUPP|FindWordUPP|RecalcUPP)|XNActionKeyMapperUPP|extWidthHookUPP)|URL(?:NotifyUPP|SystemEventUPP)|WidthHookUPP))|LM(?:Get(?:ApFontID|SysFontSize)|Set(?:ApFontID|SysFontFam))|New(?:CaretHookUPP|DrawHookUPP|EOLHookUPP|Hi(?:ghHookUPP|tTestHookUPP)|NWidthHookUPP|T(?:E(?:ClickLoopUPP|DoTextUPP|FindWordUPP|RecalcUPP)|XNActionKeyMapperUPP|extWidthHookUPP)|URL(?:NotifyUPP|SystemEventUPP)|WidthHookUPP)|P(?:L(?:pos|str(?:c(?:at|hr|mp|py)|len|nc(?:at|mp|py)|pbrk|rchr|s(?:pn|tr)))|rimeTime(?:Task)?)|R(?:emoveTimeTask|mvTime)|SKSearch(?:Group(?:C(?:opyIndexes|reate)|GetTypeID)|Results(?:C(?:opyMatchingTerms|reateWith(?:Documents|Query))|Get(?:Count|InfoInRange|TypeID))))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.5.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:A(?:S(?:GetSourceStyles|SetSourceStyles)|UGraph(?:CountNodeConnections|Get(?:ConnectionInfo|N(?:ode(?:Connections|Info)|umberOfConnections))|NewNode)|udio(?:ConverterFillBuffer|Device(?:AddIOProc|Re(?:ad|moveIOProc))|FileComponent(?:DataIsThisFormat|FileIsThisFormat)))|Dispose(?:AVL(?:CompareItemsUPP|DisposeItemUPP|ItemSizeUPP|WalkUPP)|Drag(?:DrawingUPP|ReceiveHandlerUPP|SendDataUPP|TrackingHandlerUPP)|List(?:ClickLoopUPP|DefUPP|SearchUPP)|Menu(?:ItemDrawingUPP|TitleDrawingUPP)|S(?:crapPromiseKeeperUPP|leepQUPP)|Theme(?:ButtonDrawUPP|EraseUPP|IteratorUPP|TabTitleDrawUPP)|Window(?:PaintUPP|TitleDrawingUPP))|Get(?:NameFromSoundBank|ScriptManagerVariable)|Invoke(?:AVL(?:CompareItemsUPP|DisposeItemUPP|ItemSizeUPP|WalkUPP)|Drag(?:DrawingUPP|ReceiveHandlerUPP|SendDataUPP|TrackingHandlerUPP)|List(?:ClickLoopUPP|DefUPP|SearchUPP)|Menu(?:ItemDrawingUPP|TitleDrawingUPP)|S(?:crapPromiseKeeperUPP|leepQUPP)|Theme(?:ButtonDrawUPP|EraseUPP|IteratorUPP|TabTitleDrawUPP)|Window(?:PaintUPP|TitleDrawingUPP))|Music(?:Device(?:PrepareInstrument|ReleaseInstrument)|Sequence(?:LoadSMF(?:DataWithFlags|WithFlags)|Save(?:MIDIFile|SMFData)))|New(?:AVL(?:CompareItemsUPP|DisposeItemUPP|ItemSizeUPP|WalkUPP)|Drag(?:DrawingUPP|ReceiveHandlerUPP|SendDataUPP|TrackingHandlerUPP)|List(?:ClickLoopUPP|DefUPP|SearchUPP)|Menu(?:ItemDrawingUPP|TitleDrawingUPP)|S(?:crapPromiseKeeperUPP|leepQUPP)|Theme(?:ButtonDrawUPP|EraseUPP|IteratorUPP|TabTitleDrawUPP)|Window(?:PaintUPP|TitleDrawingUPP))|S(?:CNetworkInterfaceRefreshConfiguration|etScriptManagerVariable))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.5.support.function.clib.c'}\n },\n match: '(\\\\s*)(\\\\bdaemon\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.5.support.function.quartz.c'}\n },\n match:\n '(\\\\s*)(\\\\bCG(?:ContextDrawPDFDocument|PDFDocumentGet(?:ArtBox|BleedBox|CropBox|MediaBox|RotationAngle|TrimBox))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.6.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:Audio(?:Device(?:AddPropertyListener|GetProperty(?:Info)?|RemovePropertyListener|SetProperty)|File(?:C(?:omponent(?:Create|Initialize|OpenFile)|reate)|Initialize|Open)|Hardware(?:AddPropertyListener|GetProperty(?:Info)?|RemovePropertyListener|SetProperty)|Stream(?:AddPropertyListener|GetProperty(?:Info)?|RemovePropertyListener|SetProperty))|Button|DisposeKCCallbackUPP|ExtAudioFile(?:CreateNew|Open)|FlushEvents|I(?:nvokeKCCallbackUPP|sCmdChar)|KC(?:Add(?:AppleSharePassword|Callback|GenericPassword|I(?:nternetPassword(?:WithPath)?|tem))|C(?:hangeSettings|o(?:pyItem|untKeychains)|reateKeychain)|DeleteItem|Find(?:AppleSharePassword|FirstItem|GenericPassword|InternetPassword(?:WithPath)?|NextItem)|Get(?:Attribute|D(?:ata|efaultKeychain)|IndKeychain|Keychain(?:ManagerVersion|Name)?|Status)|IsInteractionAllowed|Lock|Make(?:AliasFromKCRef|KCRefFrom(?:Alias|FSRef))|NewItem|Re(?:lease(?:Item|Keychain|Search)|moveCallback)|Set(?:Attribute|D(?:ata|efaultKeychain)|InteractionAllowed)|U(?:nlock|pdateItem))|Munger|New(?:KCCallbackUPP|MusicTrackFrom)|S(?:CNetworkCheckReachabilityBy(?:Address|Name)|ecHost(?:CreateGuest|RemoveGuest|Se(?:lect(?:Guest|edGuest)|t(?:GuestStatus|HostingPort))))|UC(?:CreateTextBreakLocator|DisposeTextBreakLocator|FindTextBreak)|kc(?:add(?:applesharepassword|genericpassword|internetpassword(?:withpath)?)|createkeychain|find(?:applesharepassword|genericpassword|internetpassword(?:withpath)?)|getkeychainname|unlock))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.6.support.function.quartz.c'}\n },\n match:\n '(\\\\s*)(\\\\bCG(?:ConfigureDisplayMode|Display(?:AvailableModes|BestModeForParameters(?:AndRefreshRate)?|CurrentMode|SwitchToMode)|EnableEventStateCombining|FontCreateWithPlatformFont|InhibitLocalEvents|Post(?:KeyboardEvent|MouseEvent|ScrollWheelEvent)|SetLocalEvents(?:FilterDuringSuppressionState|SuppressionInterval))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.7.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:Au(?:dioHardware(?:AddRunLoopSource|RemoveRunLoopSource)|thorization(?:CopyPrivilegedReference|ExecuteWithPrivileges))|C(?:MSEncode(?:rSetEncapsulatedContentType)?|SSM_(?:AC_(?:AuthCompute|PassThrough)|C(?:L_(?:C(?:ert(?:Abort(?:Cache|Query)|C(?:ache|reateTemplate)|DescribeFormat|G(?:et(?:All(?:Fields|TemplateFields)|First(?:CachedFieldValue|FieldValue)|KeyInfo|Next(?:CachedFieldValue|FieldValue))|roup(?:FromVerifiedBundle|ToSignedBundle))|Sign|Verify(?:WithKey)?)|rl(?:A(?:bort(?:Cache|Query)|ddCert)|C(?:ache|reateTemplate)|DescribeFormat|Get(?:All(?:CachedRecordFields|Fields)|First(?:CachedFieldValue|FieldValue)|Next(?:CachedFieldValue|FieldValue))|RemoveCert|S(?:etFields|ign)|Verify(?:WithKey)?))|FreeField(?:Value|s)|IsCertInC(?:achedCrl|rl)|PassThrough)|SP_(?:C(?:hangeLogin(?:Acl|Owner)|reate(?:AsymmetricContext|D(?:eriveKeyContext|igestContext)|KeyGenContext|MacContext|PassThroughContext|RandomGenContext|S(?:ignatureContext|ymmetricContext)))|Get(?:Login(?:Acl|Owner)|OperationalStatistics)|Log(?:in|out)|ObtainPrivateKeyFromPublicKey|PassThrough)|hangeKey(?:Acl|Owner))|D(?:L_(?:Authenticate|C(?:hangeDb(?:Acl|Owner)|reateRelation)|D(?:ata(?:AbortQuery|Delete|Get(?:F(?:irst|romUniqueRecordId)|Next)|Insert|Modify)|b(?:C(?:lose|reate)|Delete|Open)|estroyRelation)|Free(?:NameList|UniqueRecord)|GetDb(?:Acl|Name(?:FromHandle|s)|Owner)|PassThrough)|e(?:cryptData(?:Final|Init(?:P)?|P|Update)?|leteContext(?:Attributes)?|riveKey)|igestData(?:Clone|Final|Init|Update)?)|EncryptData(?:Final|Init(?:P)?|P|Update)?|Free(?:Context|Key)|Ge(?:nerate(?:AlgorithmParams|Key(?:P(?:air(?:P)?)?)?|Mac(?:Final|Init|Update)?|Random)|t(?:APIMemoryFunctions|Context(?:Attribute)?|Key(?:Acl|Owner)|ModuleGUIDFromHandle|Privilege|SubserviceUIDFromHandle|TimeValue))|In(?:it|troduce)|ListAttachedModuleManagers|Module(?:Attach|Detach|Load|Unload)|Query(?:KeySizeInBits|Size)|Retrieve(?:Counter|UniqueId)|S(?:et(?:Context|Privilege)|ignData(?:Final|Init|Update)?)|T(?:P_(?:ApplyCrlToDb|C(?:ert(?:CreateTemplate|G(?:etAllTemplateFields|roup(?:Construct|Prune|ToTupleGroup|Verify))|Re(?:claim(?:Abort|Key)|moveFromCrlTemplate|voke)|Sign)|onfirmCredResult|rl(?:CreateTemplate|Sign|Verify))|Form(?:Request|Submit)|PassThrough|Re(?:ceiveConfirmation|trieveCredResult)|SubmitCredRequest|TupleGroupToCertGroup)|erminate)|U(?:n(?:introduce|wrapKey(?:P)?)|pdateContextAttributes)|Verify(?:D(?:ata(?:Final|Init|Update)?|evice)|Mac(?:Final|Init|Update)?)|WrapKey(?:P)?)|reateThreadPool)|Dispose(?:Debugger(?:DisposeThreadUPP|NewThreadUPP|ThreadSchedulerUPP)|Thread(?:EntryUPP|S(?:chedulerUPP|witchUPP)|TerminationUPP)?)|Get(?:CurrentThread|DefaultThreadStackSize|Thread(?:CurrentTaskRef|State(?:GivenTaskRef)?))|I(?:C(?:Add(?:MapEntry|Profile)|Begin|C(?:ount(?:MapEntries|Pr(?:ef|ofiles))|reateGURLEvent)|Delete(?:MapEntry|Pr(?:ef|ofile))|E(?:ditPreferences|nd)|FindPrefHandle|Get(?:C(?:onfigName|urrentProfile)|DefaultPref|Ind(?:MapEntry|Pr(?:ef|ofile))|MapEntry|P(?:erm|r(?:ef(?:Handle)?|ofileName))|Seed|Version)|LaunchURL|Map(?:Entries(?:Filename|TypeCreator)|Filename|TypeCreator)|ParseURL|S(?:e(?:ndGURLEvent|t(?:CurrentProfile|MapEntry|Pr(?:ef(?:Handle)?|ofileName)))|t(?:art|op)))|nvoke(?:Debugger(?:DisposeThreadUPP|NewThreadUPP|ThreadSchedulerUPP)|Thread(?:EntryUPP|S(?:chedulerUPP|witchUPP)|TerminationUPP))|sMetric)|M(?:DS_(?:In(?:itialize|stall)|Terminate|Uninstall)|P(?:A(?:llocate(?:Aligned|TaskStorageIndex)?|rmTimer)|BlockC(?:lear|opy)|C(?:a(?:ncelTimer|useNotification)|reate(?:CriticalRegion|Event|Notification|Queue|Semaphore|T(?:ask|imer))|urrentTaskID)|D(?:e(?:allocateTaskStorageIndex|l(?:ayUntil|ete(?:CriticalRegion|Event|Notification|Queue|Semaphore|Timer)))|isposeTaskException)|E(?:nterCriticalRegion|x(?:it(?:CriticalRegion)?|tractTaskState))|Free|Get(?:AllocatedBlockSize|Next(?:CpuID|TaskID)|TaskStorageValue)|ModifyNotification(?:Parameters)?|NotifyQueue|Processors(?:Scheduled)?|Re(?:gisterDebugger|moteCall(?:CFM)?)|S(?:et(?:E(?:vent|xceptionHandler)|QueueReserve|T(?:ask(?:St(?:ate|orageValue)|Weight)|imerNotify))|ignalSemaphore)|T(?:askIsPreemptive|erminateTask|hrowException)|UnregisterDebugger|Wait(?:ForEvent|On(?:Queue|Semaphore))|Yield)|usicTrackNewExtendedControlEvent)|New(?:Debugger(?:DisposeThreadUPP|NewThreadUPP|ThreadSchedulerUPP)|Thread(?:EntryUPP|S(?:chedulerUPP|witchUPP)|TerminationUPP)?)|Se(?:c(?:A(?:CL(?:C(?:opySimpleContents|reateFromSimpleContents)|GetAuthorizations|Set(?:Authorizations|SimpleContents))|ccess(?:C(?:opySelectedACLList|reateFromOwnerAndACL)|GetOwnerAndACL))|Certificate(?:C(?:opyPreference|reateFromData)|Get(?:AlgorithmID|CLHandle|Data|Issuer|Subject|Type)|SetPreference)|Identity(?:CopyPreference|Se(?:arch(?:C(?:opyNext|reate)|GetTypeID)|tPreference))|Key(?:CreatePair|Ge(?:nerate|tC(?:S(?:PHandle|SMKey)|redentials))|chain(?:Get(?:CSPHandle|DLDBHandle)|Item(?:Export|Get(?:DLDBHandle|UniqueRecordID)|Import)|Search(?:C(?:opyNext|reateFromAttributes)|GetTypeID)))|Policy(?:Get(?:OID|TPHandle|Value)|Se(?:arch(?:C(?:opyNext|reate)|GetTypeID)|tValue))|Trust(?:Get(?:CssmResult(?:Code)?|Result|TPHandle)|SetParameters))|t(?:DebuggerNotificationProcs|Thread(?:ReadyGivenTaskRef|S(?:cheduler|tate(?:EndCritical)?|witcher)|Terminator)))|Thread(?:BeginCritical|CurrentStackSpace|EndCritical)|YieldTo(?:AnyThread|Thread))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.7.support.function.cf.c'}\n },\n match: '(\\\\s*)(\\\\bCFURLEnumeratorGetSourceDidChange\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.8.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:A(?:TS(?:CreateFontQueryRunLoopSource|Font(?:A(?:ctivateFrom(?:FileReference|Memory)|pplyFunction)|Deactivate|F(?:amily(?:ApplyFunction|FindFrom(?:Name|QuickDrawName)|Get(?:Encoding|Generation|Name|QuickDrawName)|Iterator(?:Create|Next|Re(?:lease|set)))|indFrom(?:Container|Name|PostScriptName))|Get(?:AutoActivationSettingForApplication|Container(?:FromFileReference)?|F(?:ileReference|ontFamilyResource)|G(?:eneration|lobalAutoActivationSetting)|HorizontalMetrics|Name|PostScriptName|Table(?:Directory)?|VerticalMetrics)|I(?:sEnabled|terator(?:Create|Next|Re(?:lease|set)))|Notif(?:ication(?:Subscribe|Unsubscribe)|y)|Set(?:AutoActivationSettingForApplication|Enabled|GlobalAutoActivationSetting))|GetGeneration)|bsolute(?:DeltaTo(?:Duration|Nanoseconds)|To(?:Duration|Nanoseconds))|dd(?:A(?:bsoluteToAbsolute|tomic(?:16|8)?)|CollectionItem(?:Hdl)?|DurationToAbsolute|FolderDescriptor|NanosecondsToAbsolute|Resource))|B(?:atteryCount|it(?:And(?:Atomic(?:16|8)?)?|Clr|Not|Or(?:Atomic(?:16|8)?)?|S(?:et|hift)|Tst|Xor(?:Atomic(?:16|8)?)?))|C(?:S(?:Copy(?:MachineName|UserName)|GetComponentsThreadMode|SetComponentsThreadMode)|a(?:llComponent(?:C(?:anDo|lose)|Dispatch|Function(?:WithStorage(?:ProcInfo)?)?|Get(?:MPWorkFunction|PublicResource)|Open|Register|Target|Unregister|Version)|ptureComponent)|hangedResource|lo(?:neCollection|se(?:Component(?:ResFile)?|ResFile))|o(?:llectionTagExists|mpareAndSwap|pyCollection|reEndian(?:FlipData|GetFlipper|InstallFlipper)|unt(?:1(?:Resources|Types)|Co(?:llection(?:Items|Owners|Tags)|mponent(?:Instances|s))|Resources|T(?:aggedCollectionItems|ypes)))|ur(?:ResFile|rentProcessorSpeed))|D(?:e(?:bugAssert|crementAtomic(?:16|8)?|l(?:ay|e(?:gateComponentCall|teGestaltValue))|queue|t(?:achResource(?:File)?|ermineIfPathIsEnclosedByFolder))|ispose(?:Co(?:llection(?:ExceptionUPP|FlattenUPP)?|mponent(?:FunctionUPP|MPWorkFunctionUPP|RoutineUPP))|De(?:bug(?:AssertOutputHandlerUPP|Component(?:CallbackUPP)?)|ferredTaskUPP)|ExceptionHandlerUPP|F(?:NSubscriptionUPP|SVolume(?:EjectUPP|MountUPP|UnmountUPP)|olderManagerNotificationUPP)|GetMissingComponentResourceUPP|Handle|IOCompletionUPP|Ptr|ResErrUPP|S(?:electorFunctionUPP|peech(?:DoneUPP|ErrorUPP|PhonemeUPP|SyncUPP|TextDoneUPP|WordUPP))|TimerUPP)|urationTo(?:Absolute|Nanoseconds))|E(?:mpty(?:Collection|Handle)|nqueue)|F(?:N(?:GetDirectoryForSubscription|Notify(?:All|ByPath)?|Subscribe(?:ByPath)?|Unsubscribe)|S(?:AllocateFork|C(?:a(?:ncelVolumeOperation|talogSearch)|lose(?:Fork|Iterator)|o(?:mpareFSRefs|py(?:AliasInfo|D(?:ADiskForVolume|iskIDForVolume)|Object(?:Async|Sync)|URLForVolume))|reate(?:DirectoryUnicode|F(?:ile(?:AndOpenForkUnicode|Unicode)|ork)|Res(?:File|ourceF(?:ile|ork))|StringFromHFSUniStr|VolumeOperation))|D(?:e(?:lete(?:Fork|Object)|termineIfRefIsEnclosedByFolder)|isposeVolumeOperation)|E(?:jectVolume(?:Async|Sync)|xchangeObjects)|F(?:i(?:le(?:Operation(?:C(?:ancel|opyStatus|reate)|GetTypeID|ScheduleWithRunLoop|UnscheduleFromRunLoop)|Security(?:C(?:opyAccessControlList|reate(?:WithFSPermissionInfo)?)|Get(?:Group(?:UUID)?|Mode|Owner(?:UUID)?|TypeID)|RefCreateCopy|Set(?:AccessControlList|Group(?:UUID)?|Mode|Owner(?:UUID)?)))|ndFolder)|lush(?:Fork|Volume)|ollowFinderAlias)|Get(?:Async(?:EjectStatus|MountStatus|UnmountStatus)|CatalogInfo(?:Bulk)?|DataForkName|Fork(?:CBInfo|Position|Size)|HFSUniStrFromString|ResourceForkName|TemporaryDirectoryForReplaceObject|Volume(?:ForD(?:ADisk|iskID)|Info|MountInfo(?:Size)?|Parms))|I(?:s(?:AliasFile|FSRefValid)|terateForks)|LockRange|M(?:a(?:keFSRefUnicode|tchAliasBulk)|o(?:unt(?:LocalVolume(?:Async|Sync)|ServerVolume(?:Async|Sync))|veObject(?:Async|Sync|ToTrash(?:Async|Sync))?))|NewAlias(?:FromPath|Minimal(?:Unicode)?|Unicode)?|Open(?:Fork|Iterator|OrphanResFile|Res(?:File|ourceFile))|Path(?:CopyObject(?:Async|Sync)|FileOperationCopyStatus|GetTemporaryDirectoryForReplaceObject|M(?:akeRef(?:WithOptions)?|oveObject(?:Async|Sync|ToTrash(?:Async|Sync)))|ReplaceObject)|Re(?:adFork|fMakePath|nameUnicode|placeObject|so(?:lve(?:Alias(?:File(?:WithMountFlags)?|WithMountFlags)?|NodeID)|urceFileAlreadyOpen))|Set(?:CatalogInfo|Fork(?:Position|Size)|VolumeInfo)|U(?:n(?:l(?:inkObject|ockRange)|mountVolume(?:Async|Sync))|pdateAlias)|VolumeMount|WriteFork)|i(?:nd(?:Folder|NextComponent)|x(?:2(?:Frac|Long|X)|ATan2|Div|Mul|R(?:atio|ound)))|latten(?:Collection(?:ToHdl)?|PartialCollection)|rac(?:2(?:Fix|X)|Cos|Div|Mul|S(?:in|qrt)))|Ge(?:stalt|t(?:1(?:Ind(?:Resource|Type)|NamedResource|Resource)|Alias(?:Size(?:FromPtr)?|UserType(?:FromPtr)?)|C(?:PUSpeed|o(?:llection(?:DefaultAttributes|ExceptionProc|Item(?:Hdl|Info)?|RetainCount)|mponent(?:In(?:dString|fo|stance(?:Error|Storage))|ListModSeed|Public(?:IndString|Resource(?:List)?)|Re(?:fcon|source)|TypeModSeed)))|Debug(?:ComponentInfo|OptionInfo)|Folder(?:NameUnicode|Types)|HandleSize|Ind(?:Resource|Type|exedCollection(?:Item(?:Hdl|Info)?|Tag))|Ma(?:cOSStatus(?:CommentString|ErrorString)|xResourceSize)|N(?:amedResource|e(?:wCollection|xt(?:FOND|ResourceFile)))|PtrSize|Res(?:Attrs|FileAttrs|Info|ource(?:SizeOnDisk)?)|SpeechInfo|T(?:aggedCollectionItem(?:Info)?|opResourceFile)))|H(?:ClrRBit|GetState|Lock(?:Hi)?|Set(?:RBit|State)|Unlock|and(?:AndHand|ToHand)|omeResFile)|I(?:dentifyFolder|n(?:crementAtomic(?:16|8)?|s(?:ertResourceFile|tall(?:DebugAssertOutputHandler|ExceptionHandler))|v(?:alidateFolderDescriptorCache|oke(?:Co(?:llection(?:ExceptionUPP|FlattenUPP)|mponent(?:MPWorkFunctionUPP|RoutineUPP))|De(?:bug(?:AssertOutputHandlerUPP|ComponentCallbackUPP)|ferredTaskUPP)|ExceptionHandlerUPP|F(?:NSubscriptionUPP|SVolume(?:EjectUPP|MountUPP|UnmountUPP)|olderManagerNotificationUPP)|GetMissingComponentResourceUPP|IOCompletionUPP|ResErrUPP|S(?:electorFunctionUPP|peech(?:DoneUPP|ErrorUPP|PhonemeUPP|SyncUPP|TextDoneUPP|WordUPP))|TimerUPP)))|s(?:H(?:andleValid|eapValid)|PointerValid))|L(?:M(?:Get(?:BootDrive|IntlSpec|MemErr|Res(?:Err|Load)|SysMap|TmpResLoad)|Set(?:BootDrive|IntlSpec|MemErr|Res(?:Err|Load)|Sys(?:FontSize|Map)|TmpResLoad))|o(?:adResource|cale(?:CountNames|Get(?:IndName|Name)|Operation(?:CountLocales|GetLocales))|ng2Fix))|M(?:PSetTaskType|aximumProcessorSpeed|emError|i(?:croseconds|nimumProcessorSpeed))|N(?:anosecondsTo(?:Absolute|Duration)|ew(?:Co(?:llection(?:ExceptionUPP|FlattenUPP)?|mponent(?:FunctionUPP|MPWorkFunctionUPP|RoutineUPP))|De(?:bug(?:AssertOutputHandlerUPP|Component(?:CallbackUPP)?|Option)|ferredTaskUPP)|E(?:mptyHandle|xceptionHandlerUPP)|F(?:NSubscriptionUPP|SVolume(?:EjectUPP|MountUPP|UnmountUPP)|olderManagerNotificationUPP)|Ge(?:staltValue|tMissingComponentResourceUPP)|Handle(?:Clear)?|IOCompletionUPP|Ptr(?:Clear)?|ResErrUPP|S(?:electorFunctionUPP|peech(?:DoneUPP|ErrorUPP|PhonemeUPP|SyncUPP|TextDoneUPP|WordUPP))|TimerUPP))|Open(?:A(?:Component(?:ResFile)?|DefaultComponent)|Component(?:ResFile)?|DefaultComponent)|P(?:B(?:AllocateFork(?:Async|Sync)|C(?:atalogSearch(?:Async|Sync)|lose(?:Fork(?:Async|Sync)|Iterator(?:Async|Sync))|ompareFSRefs(?:Async|Sync)|reate(?:DirectoryUnicode(?:Async|Sync)|F(?:ile(?:AndOpenForkUnicode(?:Async|Sync)|Unicode(?:Async|Sync))|ork(?:Async|Sync))))|Delete(?:Fork(?:Async|Sync)|Object(?:Async|Sync))|ExchangeObjects(?:Async|Sync)|F(?:S(?:CopyFile(?:Async|Sync)|ResolveNodeID(?:Async|Sync))|lush(?:Fork(?:Async|Sync)|Volume(?:Async|Sync)))|Get(?:CatalogInfo(?:Async|Bulk(?:Async|Sync)|Sync)|Fork(?:CBInfo(?:Async|Sync)|Position(?:Async|Sync)|Size(?:Async|Sync))|VolumeInfo(?:Async|Sync))|IterateForks(?:Async|Sync)|M(?:akeFSRefUnicode(?:Async|Sync)|oveObject(?:Async|Sync))|Open(?:Fork(?:Async|Sync)|Iterator(?:Async|Sync))|Re(?:adFork(?:Async|Sync)|nameUnicode(?:Async|Sync))|Set(?:CatalogInfo(?:Async|Sync)|Fork(?:Position(?:Async|Sync)|Size(?:Async|Sync))|VolumeInfo(?:Async|Sync))|UnlinkObject(?:Async|Sync)|WriteFork(?:Async|Sync)|X(?:LockRange(?:Async|Sync)|UnlockRange(?:Async|Sync)))|tr(?:AndHand|To(?:Hand|XHand))|urgeCollection(?:Tag)?)|Re(?:a(?:d(?:Location|PartialResource)|llocateHandle)|coverHandle|gisterComponent(?:FileRef(?:Entries)?|Resource(?:File)?)?|lease(?:Collection|Resource)|move(?:CollectionItem|FolderDescriptor|IndexedCollectionItem|Resource)|place(?:GestaltValue|IndexedCollectionItem(?:Hdl)?)|s(?:Error|olveComponentAlias)|tainCollection)|S(?:64Compare|SL(?:GetProtocolVersion|SetProtocolVersion)|e(?:cTranformCustomGetAttribute|t(?:AliasUserType(?:WithPtr)?|Co(?:llection(?:DefaultAttributes|ExceptionProc|ItemInfo)|mponent(?:Instance(?:Error|Storage)|Refcon))|De(?:bugOptionValue|faultComponent)|GestaltValue|HandleSize|IndexedCollectionItemInfo|PtrSize|Res(?:Attrs|FileAttrs|Info|Load|Purge|ourceSize)|SpeechInfo))|leepQ(?:Install|Remove)|peak(?:Buffer|String|Text)|ub(?:AbsoluteFromAbsolute|DurationFromAbsolute|NanosecondsFromAbsolute)|ysError)|T(?:askLevel|e(?:mpNewHandle|stAnd(?:Clear|Set)|xtToPhonemes)|ickCount)|U(?:64Compare|n(?:captureComponent|flattenCollection(?:FromHdl)?|ique(?:1ID|ID)|registerComponent|signedFixedMulDiv)|p(?:Time|date(?:ResFile|SystemActivity))|se(?:Dictionary|ResFile))|W(?:S(?:Get(?:CFTypeIDFromWSTypeID|WSTypeIDFromCFType)|Method(?:Invocation(?:Add(?:DeserializationOverride|SerializationOverride)|C(?:opy(?:P(?:arameters|roperty)|Serialization)|reate(?:FromSerialization)?)|GetTypeID|Invoke|S(?:cheduleWithRunLoop|et(?:CallBack|P(?:arameters|roperty)))|UnscheduleFromRunLoop)|ResultIsFault)|ProtocolHandler(?:C(?:opy(?:FaultDocument|Property|Re(?:plyD(?:ictionary|ocument)|questD(?:ictionary|ocument)))|reate)|GetTypeID|Set(?:DeserializationOverride|Property|SerializationOverride)))|ide(?:Add|BitShift|Compare|Divide|Multiply|Negate|S(?:hift|quareRoot|ubtract)|WideDivide)|rite(?:PartialResource|Resource))|X2F(?:ix|rac)|annuity|compound|d(?:ec2(?:f|l|num|s(?:tr)?)|tox80)|getaudit|num(?:2dec|tostring)|r(?:andomx|elation)|s(?:etaudit|tr2dec)|x80tod)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.8.support.function.cf.c'}\n },\n match:\n '(\\\\s*)(\\\\bCFXML(?:Node(?:Create(?:Copy)?|Get(?:InfoPtr|String|Type(?:Code|ID)|Version))|Parser(?:Abort|C(?:opyErrorDescription|reate(?:WithDataFromURL)?)|Get(?:C(?:allBacks|ontext)|Document|L(?:ineNumber|ocation)|S(?:ourceURL|tatusCode)|TypeID)|Parse)|Tree(?:Create(?:FromData(?:WithError)?|With(?:DataFromURL|Node)|XMLData)|GetNode))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.8.support.function.mac-classic.c'}\n },\n match: '(\\\\s*)(\\\\b(?:Debug(?:Str|ger)|SysBreak(?:Func|Str)?)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.8.support.function.quartz.c'}\n },\n match:\n '(\\\\s*)(\\\\bCG(?:Re(?:gisterScreenRefreshCallback|leaseScreenRefreshRects)|Screen(?:RegisterMoveCallback|UnregisterMoveCallback)|UnregisterScreenRefreshCallback|W(?:aitForScreen(?:RefreshRects|UpdateRects)|indowServerCFMachPort))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.9.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:AX(?:APIEnabled|MakeProcessTrusted|UIElementPostKeyboardEvent)|CopyProcessName|ExitToShell|Get(?:CurrentProcess|FrontProcess|NextProcess|Process(?:BundleLocation|ForPID|Information|PID))|IsProcessVisible|KillProcess|LaunchApplication|ProcessInformationCopyDictionary|S(?:SL(?:Copy(?:PeerCertificates|TrustedRoots)|DisposeContext|Get(?:Allows(?:AnyRoot|Expired(?:Certs|Roots))|EnableCertVerify|ProtocolVersionEnabled|RsaBlinding)|NewContext|Set(?:Allows(?:AnyRoot|Expired(?:Certs|Roots))|EnableCertVerify|ProtocolVersionEnabled|RsaBlinding|TrustedRoots))|ameProcess|e(?:c(?:ChooseIdentity(?:AsSheet)?|DisplayCertificate(?:Group)?|EditTrust(?:AsSheet)?|Policy(?:CreateWithOID|SetProperties))|tFrontProcess(?:WithOptions)?)|howHideProcess)|WakeUpProcess)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.9.support.function.cf.c'}\n },\n match:\n '(\\\\s*)(\\\\bCF(?:PreferencesCopyApplicationList|URL(?:Create(?:DataAndPropertiesFromResource|FromFSRef|PropertyFromResource)|DestroyResource|GetFSRef|WriteDataAndPropertiesToResource))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.9.support.function.clib.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:drem|finite|gamma|r(?:inttol|oundtol)|significand)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.9.support.function.dispatch.c'}\n },\n match: '(\\\\s*)(\\\\bdispatch_(?:debug(?:v)?|get_current_queue)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.9.support.function.quartz.c'}\n },\n match:\n '(\\\\s*)(\\\\bCG(?:C(?:ontextS(?:electFont|how(?:Glyphs(?:AtPoint|WithAdvances)?|Text(?:AtPoint)?))|ursorIs(?:DrawnInFramebuffer|Visible))|Display(?:FadeOperationInProgress|I(?:OServicePort|sCaptured)))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.tba.support.function.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:AUGraph(?:Add(?:Node|RenderNotify)|C(?:l(?:earConnections|ose)|o(?:nnectNodeInput|untNodeInteractions))|DisconnectNodeInput|Get(?:CPULoad|In(?:dNode|teractionInfo)|MaxCPULoad|N(?:ode(?:Count|In(?:foSubGraph|teractions))|umberOfInteractions))|I(?:nitialize|s(?:Initialized|NodeSubGraph|Open|Running))|N(?:ewNodeSubGraph|odeInfo)|Open|Remove(?:Node|RenderNotify)|S(?:etNodeInputCallback|t(?:art|op))|U(?:ninitialize|pdate))|DisposeAUGraph|NewAUGraph|QL(?:PreviewRequest(?:C(?:opy(?:ContentUTI|Options|URL)|reate(?:Context|PDFContext))|FlushContext|Get(?:DocumentObject|GeneratorBundle|TypeID)|IsCancelled|Set(?:D(?:ataRepresentation|ocumentObject)|URLRepresentation))|Thumbnail(?:C(?:ancel|opy(?:DocumentURL|Image|Options)|reate)|DispatchAsync|Get(?:ContentRect|MaximumSize|TypeID)|IsCancelled|Request(?:C(?:opy(?:ContentUTI|Options|URL)|reateContext)|FlushContext|Get(?:DocumentObject|GeneratorBundle|MaximumSize|TypeID)|IsCancelled|Set(?:DocumentObject|Image(?:AtURL|WithData)?|ThumbnailWith(?:DataRepresentation|URLRepresentation))))))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.10.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:C(?:GLGetDeviceFromGLRenderer|MS(?:DecoderCopySignerTimestampWithPolicy|EncoderCopySignerTimestampWithPolicy)|TRubyAnnotation(?:Create(?:Copy)?|Get(?:Alignment|Overhang|SizeFactor|T(?:extForPosition|ypeID))))|JSGlobalContext(?:CopyName|SetName)|LSCopy(?:ApplicationURLsForBundleIdentifier|DefaultApplicationURLFor(?:ContentType|URL))|SecAccessControl(?:CreateWithFlags|GetTypeID)|UTType(?:CopyAllTagsWithClass|IsD(?:eclared|ynamic))|launch_activate_socket|os_re(?:lease|tain)|qos_class_(?:main|self)|simd_inverse)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.11.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:Audio(?:ComponentInstantiate|ServicesPlay(?:AlertSoundWithCompletion|SystemSoundWithCompletion))|C(?:MSEncoderSetSignerAlgorithm|T(?:LineEnumerateCaretOffsets|RunGetBaseAdvancesAndOrigins))|IORegistryEntryCopy(?:FromPath|Path)|JSValueIs(?:Array|Date)|MIDI(?:ClientCreateWithBlock|DestinationCreateWithBlock|InputPortCreateWithBlock)|connectx|disconnectx|xpc_(?:array_get_(?:array|dictionary)|dictionary_get_(?:array|dictionary)))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.12.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:CTRubyAnnotationCreateWithAttributes|IOSurface(?:AllowsPixelSizeCasting|SetPurgeable)|JS(?:Object(?:Get(?:ArrayBufferByte(?:Length|sPtr)|TypedArray(?:B(?:uffer|yte(?:Length|Offset|sPtr))|Length))|Make(?:ArrayBufferWithBytesNoCopy|TypedArray(?:With(?:ArrayBuffer(?:AndOffset)?|BytesNoCopy))?))|ValueGetTypedArrayType)|MDItemsCopyAttributes|Sec(?:CertificateCopyNormalized(?:IssuerSequence|SubjectSequence)|Key(?:C(?:opy(?:Attributes|ExternalRepresentation|KeyExchangeResult|PublicKey)|reate(?:DecryptedData|EncryptedData|RandomKey|Signature|WithData))|IsAlgorithmSupported|VerifySignature))|os_(?:log_(?:create|type_enabled)|unfair_lock_(?:assert_(?:not_owner|owner)|lock|trylock|unlock))|xpc_connection_activate)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.13.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:AudioUnitExtension(?:CopyComponentList|SetComponentList)|C(?:GImage(?:DestinationAddAuxiliaryDataInfo|SourceCopyAuxiliaryDataInfoAtIndex)|TFontManagerCreateFontDescriptorsFromData|V(?:ColorPrimariesGet(?:IntegerCodePointForString|StringForIntegerCodePoint)|TransferFunctionGet(?:IntegerCodePointForString|StringForIntegerCodePoint)|YCbCrMatrixGet(?:IntegerCodePointForString|StringForIntegerCodePoint)))|IOSurfaceGet(?:Bit(?:DepthOfComponentOfPlane|OffsetOfComponentOfPlane)|N(?:ameOfComponentOfPlane|umberOfComponentsOfPlane)|RangeOfComponentOfPlane|Subsampling|TypeOfComponentOfPlane)|SecCertificateCopySerialNumberData)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.14.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:AEDeterminePermissionToAutomateTarget|C(?:GImageSourceGetPrimaryImageIndex|TFramesetterCreateWithTypesetter)|Sec(?:CertificateCopyKey|Trust(?:EvaluateWithError|SetSignedCertificateTimestamps))|sec_(?:certificate_c(?:opy_ref|reate)|identity_c(?:opy_(?:certificates_ref|ref)|reate(?:_with_certificates)?)|protocol_(?:metadata_(?:access_(?:distinguished_names|ocsp_response|peer_certificate_chain|supported_signature_algorithms)|c(?:hallenge_parameters_are_equal|opy_peer_public_key|reate_secret(?:_with_context)?)|get_(?:early_data_accepted|negotiated_(?:protocol|tls_ciphersuite)|server_name)|peers_are_equal)|options_(?:add_(?:pre_shared_key|tls_application_protocol)|set_(?:challenge_block|key_update_block|local_identity|peer_authentication_required|tls_(?:false_start_enabled|is_fallback_attempt|ocsp_enabled|re(?:negotiation_enabled|sumption_enabled)|s(?:ct_enabled|erver_name)|tickets_enabled)|verify_block)))|trust_c(?:opy_ref|reate)))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.15.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:C(?:GAnimateImage(?:AtURLWithBlock|DataWithBlock)|T(?:FontManager(?:RegisterFont(?:Descriptors|URLs)|UnregisterFont(?:Descriptors|URLs))|GlyphInfoGetGlyph))|JS(?:Object(?:DeletePropertyForKey|GetPropertyForKey|HasPropertyForKey|MakeDeferredPromise|SetPropertyForKey)|Value(?:IsSymbol|MakeSymbol))|SecTrustEvaluateAsyncWithError|aligned_alloc|sec_(?:identity_access_certificates|protocol_(?:metadata_(?:access_pre_shared_keys|get_negotiated_tls_protocol_version)|options_(?:a(?:ppend_tls_ciphersuite(?:_group)?|re_equal)|get_default_m(?:ax_(?:dtls_protocol_version|tls_protocol_version)|in_(?:dtls_protocol_version|tls_protocol_version))|set_(?:m(?:ax_tls_protocol_version|in_tls_protocol_version)|pre_shared_key_selection_block|tls_pre_shared_key_identity_hint))))|xpc_type_get_name)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.8.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:A(?:ECompareDesc|udioQueueProcessingTapGetQueueTime)|C(?:GImage(?:Destination(?:AddImageAndMetadata|CopyImageSource)|Metadata(?:C(?:opy(?:StringValueWithPath|Tag(?:MatchingImageProperty|WithPath|s))|reate(?:FromXMPData|Mutable(?:Copy)?|XMPData))|EnumerateTagsUsingBlock|Re(?:gisterNamespaceForPrefix|moveTagWithPath)|Set(?:TagWithPath|Value(?:MatchingImageProperty|WithPath))|Tag(?:C(?:opy(?:Name(?:space)?|Prefix|Qualifiers|Value)|reate)|GetType(?:ID)?))|SourceCopyMetadataAtIndex)|MS(?:DecoderCopySigner(?:SigningTime|Timestamp(?:Certificates)?)|EncoderCopySignerTimestamp)|T(?:Font(?:CopyDefaultCascadeListForLanguages|GetOpticalBoundsForGlyphs|Manager(?:RegisterGraphicsFont|UnregisterGraphicsFont))|LineGetBoundsWithOptions)|VImageBufferCreateColorSpaceFromAttachments|opyInstrumentInfoFromSoundBank))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.9.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:A(?:XIsProcessTrustedWithOptions|udioHardware(?:CreateAggregateDevice|DestroyAggregateDevice))|C(?:GImageSourceRemoveCacheAtIndex|TFont(?:CreateForStringWithLanguage|Descriptor(?:CreateCopyWith(?:Family|SymbolicTraits)|MatchFontDescriptorsWithProgressHandler)))|FSEventStreamSetExclusionPaths|Sec(?:PolicyCreate(?:Revocation|WithProperties)|Trust(?:Copy(?:Exceptions|Result)|GetNetworkFetchAllowed|Set(?:Exceptions|NetworkFetchAllowed|OCSPResponse)))|xpc_activity_(?:copy_criteria|get_state|register|s(?:et_(?:criteria|state)|hould_defer)|unregister))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.c'}\n }\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.cf.10.12.c'}\n },\n match: '(\\\\s*)(\\\\bCFDateFormatterCreateISO8601Formatter\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.cf.10.8.c'}\n },\n match: '(\\\\s*)(\\\\bCFFileSecurityClearProperties\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.cf.10.9.c'}\n },\n match:\n '(\\\\s*)(\\\\bCF(?:Autorelease|R(?:eadStream(?:CopyDispatchQueue|SetDispatchQueue)|unLoopTimer(?:GetTolerance|SetTolerance))|URLIsFileReferenceURL|WriteStream(?:CopyDispatchQueue|SetDispatchQueue))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.cf.c'}\n },\n match:\n '(\\\\s*)(\\\\bCF(?:A(?:bsoluteTimeGetCurrent|llocator(?:Allocate|Create|Deallocate|Get(?:Context|Default|PreferredSizeForSize|TypeID)|Reallocate|SetDefault)|rray(?:App(?:end(?:Array|Value)|lyFunction)|BSearchValues|C(?:ontainsValue|reate(?:Copy|Mutable(?:Copy)?)?)|ExchangeValuesAtIndices|Get(?:Count(?:OfValue)?|FirstIndexOfValue|LastIndexOfValue|TypeID|Value(?:AtIndex|s))|InsertValueAtIndex|Re(?:move(?:AllValues|ValueAtIndex)|placeValues)|S(?:etValueAtIndex|ortValues))|ttributedString(?:BeginEditing|Create(?:Copy|Mutable(?:Copy)?|WithSubstring)?|EndEditing|Get(?:Attribute(?:AndLongestEffectiveRange|s(?:AndLongestEffectiveRange)?)?|Length|MutableString|String|TypeID)|Re(?:moveAttribute|place(?:AttributedString|String))|SetAttribute(?:s)?))|B(?:ag(?:A(?:ddValue|pplyFunction)|C(?:ontainsValue|reate(?:Copy|Mutable(?:Copy)?)?)|Get(?:Count(?:OfValue)?|TypeID|Value(?:IfPresent|s)?)|Re(?:move(?:AllValues|Value)|placeValue)|SetValue)|i(?:naryHeap(?:A(?:ddValue|pplyFunction)|C(?:ontainsValue|reate(?:Copy)?)|Get(?:Count(?:OfValue)?|Minimum(?:IfPresent)?|TypeID|Values)|Remove(?:AllValues|MinimumValue))|tVector(?:C(?:ontainsBit|reate(?:Copy|Mutable(?:Copy)?)?)|FlipBit(?:AtIndex|s)|Get(?:Bit(?:AtIndex|s)|Count(?:OfBit)?|FirstIndexOfBit|LastIndexOfBit|TypeID)|Set(?:AllBits|Bit(?:AtIndex|s)|Count)))|ooleanGet(?:TypeID|Value)|undle(?:C(?:opy(?:AuxiliaryExecutableURL|Bu(?:iltInPlugInsURL|ndle(?:Localizations|URL))|Executable(?:Architectures(?:ForURL)?|URL)|InfoDictionary(?:ForURL|InDirectory)|Localiz(?:ationsFor(?:Preferences|URL)|edString)|Pr(?:eferredLocalizationsFromArray|ivateFrameworksURL)|Resource(?:URL(?:ForLocalization|InDirectory|sOfType(?:ForLocalization|InDirectory)?)?|sDirectoryURL)|S(?:hared(?:FrameworksURL|SupportURL)|upportFilesDirectoryURL))|reate(?:BundlesFromDirectory)?)|Get(?:AllBundles|BundleWithIdentifier|D(?:ataPointer(?:ForName|sForNames)|evelopmentRegion)|FunctionPointer(?:ForName|sForNames)|I(?:dentifier|nfoDictionary)|LocalInfoDictionary|MainBundle|P(?:ackageInfo(?:InDirectory)?|lugIn)|TypeID|V(?:alueForInfoDictionaryKey|ersionNumber))|IsExecutableLoaded|LoadExecutable(?:AndReturnError)?|PreflightExecutable|UnloadExecutable)|yteOrderGetCurrent)|C(?:alendar(?:AddComponents|C(?:o(?:mposeAbsoluteTime|py(?:Current|Locale|TimeZone))|reateWithIdentifier)|DecomposeAbsoluteTime|Get(?:ComponentDifference|FirstWeekday|Identifier|M(?:aximumRangeOfUnit|inimum(?:DaysInFirstWeek|RangeOfUnit))|OrdinalityOfUnit|RangeOfUnit|T(?:imeRangeOfUnit|ypeID))|Set(?:FirstWeekday|Locale|MinimumDaysInFirstWeek|TimeZone))|haracterSet(?:AddCharactersIn(?:Range|String)|Create(?:BitmapRepresentation|Copy|InvertedSet|Mutable(?:Copy)?|With(?:BitmapRepresentation|CharactersIn(?:Range|String)))|Get(?:Predefined|TypeID)|HasMemberInPlane|I(?:n(?:tersect|vert)|s(?:CharacterMember|LongCharacterMember|SupersetOfSet))|RemoveCharactersIn(?:Range|String)|Union)|o(?:nvert(?:Double(?:HostToSwapped|SwappedToHost)|Float(?:32(?:HostToSwapped|SwappedToHost)|64(?:HostToSwapped|SwappedToHost)|HostToSwapped|SwappedToHost))|py(?:Description|HomeDirectoryURL|TypeIDDescription)))|D(?:at(?:a(?:AppendBytes|Create(?:Copy|Mutable(?:Copy)?|WithBytesNoCopy)?|DeleteBytes|Find|Get(?:Byte(?:Ptr|s)|Length|MutableBytePtr|TypeID)|IncreaseLength|ReplaceBytes|SetLength)|e(?:C(?:ompare|reate)|Formatter(?:C(?:opyProperty|reate(?:DateF(?:ormatFromTemplate|romString)|StringWith(?:AbsoluteTime|Date))?)|Get(?:AbsoluteTimeFromString|DateStyle|Format|Locale|T(?:imeStyle|ypeID))|Set(?:Format|Property))|Get(?:AbsoluteTime|T(?:imeIntervalSinceDate|ypeID))))|ictionary(?:A(?:ddValue|pplyFunction)|C(?:ontains(?:Key|Value)|reate(?:Copy|Mutable(?:Copy)?)?)|Get(?:Count(?:Of(?:Key|Value))?|KeysAndValues|TypeID|Value(?:IfPresent)?)|Re(?:move(?:AllValues|Value)|placeValue)|SetValue))|E(?:qual|rror(?:C(?:opy(?:Description|FailureReason|RecoverySuggestion|UserInfo)|reate(?:WithUserInfoKeysAndValues)?)|Get(?:Code|Domain|TypeID)))|File(?:Descriptor(?:Create(?:RunLoopSource)?|DisableCallBacks|EnableCallBacks|Get(?:Context|NativeDescriptor|TypeID)|I(?:nvalidate|sValid))|Security(?:C(?:opy(?:AccessControlList|GroupUUID|OwnerUUID)|reate(?:Copy)?)|Get(?:Group|Mode|Owner|TypeID)|Set(?:AccessControlList|Group(?:UUID)?|Mode|Owner(?:UUID)?)))|Get(?:Allocator|RetainCount|TypeID)|Hash|Locale(?:C(?:opy(?:AvailableLocaleIdentifiers|C(?:ommonISOCurrencyCodes|urrent)|DisplayNameForPropertyValue|ISO(?:C(?:ountryCodes|urrencyCodes)|LanguageCodes)|PreferredLanguages)|reate(?:C(?:anonicalL(?:anguageIdentifierFromString|ocaleIdentifierFromS(?:criptManagerCodes|tring))|o(?:mponentsFromLocaleIdentifier|py))|LocaleIdentifierFrom(?:Components|WindowsLocaleCode))?)|Get(?:Identifier|Language(?:CharacterDirection|LineDirection)|System|TypeID|Value|WindowsLocaleCodeFromLocaleIdentifier))|M(?:a(?:chPort(?:Create(?:RunLoopSource|WithPort)?|Get(?:Context|InvalidationCallBack|Port|TypeID)|I(?:nvalidate|sValid)|SetInvalidationCallBack)|keCollectable)|essagePort(?:Create(?:Local|R(?:emote|unLoopSource))|Get(?:Context|InvalidationCallBack|Name|TypeID)|I(?:nvalidate|s(?:Remote|Valid))|Se(?:ndRequest|t(?:DispatchQueue|InvalidationCallBack|Name))))|N(?:otificationCenter(?:AddObserver|Get(?:D(?:arwinNotifyCenter|istributedCenter)|LocalCenter|TypeID)|PostNotification(?:WithOptions)?|Remove(?:EveryObserver|Observer))|u(?:llGetTypeID|mber(?:C(?:ompare|reate)|Formatter(?:C(?:opyProperty|reate(?:NumberFromString|StringWith(?:Number|Value))?)|Get(?:DecimalInfoForCurrencyCode|Format|Locale|Style|TypeID|ValueFromString)|Set(?:Format|Property))|Get(?:ByteSize|Type(?:ID)?|Value)|IsFloatType)))|P(?:lugIn(?:AddInstanceForFactory|Create|FindFactoriesForPlugInType(?:InPlugIn)?|Get(?:Bundle|TypeID)|I(?:nstance(?:Create(?:WithInstanceDataSize)?|Get(?:FactoryName|In(?:stanceData|terfaceFunctionTable)|TypeID))|sLoadOnDemand)|Re(?:gister(?:FactoryFunction(?:ByName)?|PlugInType)|moveInstanceForFactory)|SetLoadOnDemand|Unregister(?:Factory|PlugInType))|r(?:eferences(?:A(?:ddSuitePreferencesToApp|pp(?:Synchronize|ValueIsForced))|Copy(?:AppValue|KeyList|Multiple|Value)|GetApp(?:BooleanValue|IntegerValue)|RemoveSuitePreferencesFromApp|S(?:et(?:AppValue|Multiple|Value)|ynchronize))|opertyList(?:Create(?:D(?:ata|eepCopy)|With(?:Data|Stream))|IsValid|Write)))|R(?:angeMake|e(?:adStream(?:C(?:lose|opy(?:Error|Property)|reateWith(?:BytesNoCopy|File))|Get(?:Buffer|Error|Status|TypeID)|HasBytesAvailable|Open|Read|S(?:cheduleWithRunLoop|et(?:Client|Property))|UnscheduleFromRunLoop)|lease|tain)|unLoop(?:Add(?:CommonMode|Observer|Source|Timer)|Co(?:ntains(?:Observer|Source|Timer)|py(?:AllModes|CurrentMode))|Get(?:Current|Main|NextTimerFireDate|TypeID)|IsWaiting|Observer(?:Create(?:WithHandler)?|DoesRepeat|Get(?:Activities|Context|Order|TypeID)|I(?:nvalidate|sValid))|PerformBlock|R(?:emove(?:Observer|Source|Timer)|un(?:InMode)?)|S(?:ource(?:Create|Get(?:Context|Order|TypeID)|I(?:nvalidate|sValid)|Signal)|top)|Timer(?:Create(?:WithHandler)?|DoesRepeat|Get(?:Context|Interval|NextFireDate|Order|TypeID)|I(?:nvalidate|sValid)|SetNextFireDate)|WakeUp))|S(?:et(?:A(?:ddValue|pplyFunction)|C(?:ontainsValue|reate(?:Copy|Mutable(?:Copy)?)?)|Get(?:Count(?:OfValue)?|TypeID|Value(?:IfPresent|s)?)|Re(?:move(?:AllValues|Value)|placeValue)|SetValue)|how(?:Str)?|ocket(?:C(?:o(?:nnectToAddress|py(?:Address|PeerAddress|Registered(?:SocketSignature|Value)))|reate(?:ConnectedToSocketSignature|RunLoopSource|With(?:Native|SocketSignature))?)|DisableCallBacks|EnableCallBacks|Get(?:Context|DefaultNameRegistryPortNumber|Native|SocketFlags|TypeID)|I(?:nvalidate|sValid)|Register(?:SocketSignature|Value)|Se(?:ndData|t(?:Address|DefaultNameRegistryPortNumber|SocketFlags))|Unregister)|tr(?:eamCreate(?:BoundPair|PairWith(?:PeerSocketSignature|Socket(?:ToHost)?))|ing(?:Append(?:C(?:String|haracters)|Format(?:AndArguments)?|PascalString)?|C(?:apitalize|o(?:mpare(?:WithOptions(?:AndLocale)?)?|nvert(?:EncodingTo(?:IANACharSetName|NSStringEncoding|WindowsCodepage)|IANACharSetNameToEncoding|NSStringEncodingToEncoding|WindowsCodepageToEncoding))|reate(?:Array(?:BySeparatingStrings|WithFindResults)|ByCombiningStrings|Copy|ExternalRepresentation|FromExternalRepresentation|Mutable(?:Copy|WithExternalCharactersNoCopy)?|With(?:Bytes(?:NoCopy)?|C(?:String(?:NoCopy)?|haracters(?:NoCopy)?)|F(?:ileSystemRepresentation|ormat(?:AndArguments)?)|PascalString(?:NoCopy)?|Substring)))|Delete|F(?:ind(?:AndReplace|CharacterFromSet|WithOptions(?:AndLocale)?)?|old)|Get(?:Bytes|C(?:String(?:Ptr)?|haracter(?:AtIndex|FromInlineBuffer|s(?:Ptr)?))|DoubleValue|F(?:astestEncoding|ileSystemRepresentation)|HyphenationLocationBeforeIndex|IntValue|L(?:ength|i(?:neBounds|stOfAvailableEncodings)|ongCharacterForSurrogatePair)|M(?:aximumSize(?:ForEncoding|OfFileSystemRepresentation)|ostCompatibleMacStringEncoding)|NameOfEncoding|Pa(?:ragraphBounds|scalString(?:Ptr)?)|RangeOfComposedCharactersAtIndex|S(?:mallestEncoding|urrogatePairForLongCharacter|ystemEncoding)|TypeID)|Has(?:Prefix|Suffix)|I(?:n(?:itInlineBuffer|sert)|s(?:EncodingAvailable|HyphenationAvailableForLocale|Surrogate(?:HighCharacter|LowCharacter)))|Lowercase|Normalize|Pad|Replace(?:All)?|SetExternalCharactersNoCopy|T(?:okenizer(?:AdvanceToNextToken|C(?:opy(?:BestStringLanguage|CurrentTokenAttribute)|reate)|G(?:et(?:Current(?:SubTokens|TokenRange)|TypeID)|oToTokenAtIndex)|SetString)|r(?:ansform|im(?:Whitespace)?))|Uppercase))|wapInt(?:16(?:BigToHost|HostTo(?:Big|Little)|LittleToHost)?|32(?:BigToHost|HostTo(?:Big|Little)|LittleToHost)?|64(?:BigToHost|HostTo(?:Big|Little)|LittleToHost)?))|T(?:imeZone(?:C(?:opy(?:Abbreviation(?:Dictionary)?|Default|KnownNames|LocalizedName|System)|reate(?:With(?:Name|TimeIntervalFromGMT))?)|Get(?:Da(?:ta|ylightSavingTimeOffset)|N(?:ame|extDaylightSavingTimeTransition)|SecondsFromGMT|TypeID)|IsDaylightSavingTime|ResetSystem|Set(?:AbbreviationDictionary|Default))|ree(?:App(?:endChild|lyFunctionToChildren)|Create|FindRoot|Get(?:C(?:hild(?:AtIndex|Count|ren)|ontext)|FirstChild|NextSibling|Parent|TypeID)|InsertSibling|PrependChild|Remove(?:AllChildren)?|S(?:etContext|ortChildren)))|U(?:RL(?:C(?:anBeDecomposed|learResourcePropertyCache(?:ForKey)?|opy(?:AbsoluteURL|F(?:ileSystemPath|ragment)|HostName|LastPathComponent|NetLocation|Pa(?:ssword|th(?:Extension)?)|QueryString|Resource(?:Propert(?:iesForKeys|yForKey)|Specifier)|S(?:cheme|trictPath)|UserName)|reate(?:AbsoluteURLWithBytes|B(?:ookmarkData(?:From(?:AliasRecord|File))?|yResolvingBookmarkData)|Copy(?:AppendingPath(?:Component|Extension)|Deleting(?:LastPathComponent|PathExtension))|Data|F(?:ile(?:PathURL|ReferenceURL)|romFileSystemRepresentation(?:RelativeToBase)?)|ResourcePropert(?:iesForKeysFromBookmarkData|yForKeyFromBookmarkData)|StringByReplacingPercentEscapes|With(?:Bytes|FileSystemPath(?:RelativeToBase)?|String)))|Enumerator(?:CreateFor(?:DirectoryURL|MountedVolumes)|Get(?:DescendentLevel|NextURL|TypeID)|SkipDescendents)|Get(?:B(?:aseURL|yte(?:RangeForComponent|s))|FileSystemRepresentation|PortNumber|String|TypeID)|HasDirectoryPath|ResourceIsReachable|S(?:et(?:ResourcePropert(?:iesForKeys|yForKey)|TemporaryResourcePropertyForKey)|t(?:artAccessingSecurityScopedResource|opAccessingSecurityScopedResource))|WriteBookmarkDataToFile)|UID(?:Create(?:From(?:String|UUIDBytes)|String|WithBytes)?|Get(?:ConstantUUIDWithBytes|TypeID|UUIDBytes))|serNotification(?:C(?:ancel|heckBoxChecked|reate(?:RunLoopSource)?)|Display(?:Alert|Notice)|Get(?:Response(?:Dictionary|Value)|TypeID)|PopUpSelection|ReceiveResponse|SecureTextField|Update))|WriteStream(?:C(?:anAcceptBytes|lose|opy(?:Error|Property)|reateWith(?:AllocatedBuffers|Buffer|File))|Get(?:Error|Status|TypeID)|Open|S(?:cheduleWithRunLoop|et(?:Client|Property))|UnscheduleFromRunLoop|Write)|XMLCreateStringBy(?:EscapingEntities|UnescapingEntities))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.clib.10.10.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:f(?:accessat|chownat)|getattrlist(?:at|bulk)|linkat|openat|re(?:adlinkat|nameat)|symlinkat|unlinkat)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.clib.10.12.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:clock_(?:get(?:res|time(?:_nsec_np)?)|settime)|mk(?:ostemp(?:s)?|pathat_np)|rename(?:atx_np|x_np)|timingsafe_bcmp)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.clib.10.13.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:fmemopen|mk(?:dtempat_np|ostempsat_np|stempsat_np)|open_memstream|ptsname_r|setattrlistat)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.clib.10.15.c'}\n },\n match: '(\\\\s*)(\\\\b(?:rpmatch|timespec_get)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.clib.10.8.c'}\n },\n match: '(\\\\s*)(\\\\b(?:fsync_volume_np|mkpath_np|sync_volume_np)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.clib.10.9.c'}\n },\n match: '(\\\\s*)(\\\\b(?:f(?:fsll|lsll)|memset_s)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.clib.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:a(?:64l|b(?:ort|s)|c(?:c(?:ess(?:x_np)?|t)|os(?:f|h(?:f|l)?|l)?)|d(?:d_profil|jtime)|l(?:arm|loca)|rc4random(?:_(?:buf|stir|uniform))?|s(?:ctime(?:_r)?|in(?:f|h(?:f|l)?|l)?|printf)|t(?:an(?:2(?:f|l)?|f|h(?:f|l)?|l)?|exit(?:_b)?|o(?:f|i|l(?:l)?)))|b(?:c(?:mp|opy)|rk|s(?:d_signal|earch(?:_b)?)|zero)|c(?:brt(?:f|l)?|eil(?:f|l)?|get(?:c(?:ap|lose)|ent|first|match|n(?:ext|um)|s(?:et|tr)|ustr)|h(?:dir|own|root)|l(?:earerr|o(?:ck|se))|o(?:nfstr|pysign(?:f|l)?|s(?:f|h(?:f|l)?|l)?)|r(?:eat|ypt)|t(?:ermid_r|ime(?:_r)?))|d(?:evname(?:_r)?|i(?:fftime|spatch_(?:time|walltime)|v)|printf|rand48|up(?:2)?)|e(?:cvt|n(?:crypt|dusershell)|r(?:and48|f(?:c(?:f|l)?|f|l)?)|x(?:changedata|ec(?:l(?:e|p)?|v(?:P|e|p)?)|it|p(?:2(?:f|l)?|f|l|m1(?:f|l)?)?))|f(?:abs(?:f|l)?|c(?:h(?:dir|own)|lose|ntl|vt)|d(?:im(?:f|l)?|open)|e(?:of|rror)|f(?:l(?:agstostr|ush)|s(?:ctl|l)?)|get(?:attrlist|c|ln|pos|s)|ile(?:no|sec_(?:dup|free|get_property|init|query_property|set_property|unset_property))|l(?:o(?:ck(?:file)?|or(?:f|l)?)|s(?:l)?)|m(?:a(?:f|l|x(?:f|l)?)?|in(?:f|l)?|od(?:f|l)?|tcheck)|o(?:pen|rk)|p(?:athconf|rintf|u(?:rge|t(?:c|s)))|re(?:ad|open|xp(?:f|l)?)|s(?:c(?:anf|tl)|e(?:ek(?:o)?|t(?:attrlist|pos))|ync)|t(?:ell(?:o)?|r(?:uncate|ylockfile))|u(?:n(?:lockfile|open)|times)|write)|g(?:cvt|et(?:attrlist|bsize|c(?:_unlocked|har(?:_unlocked)?|wd)?|d(?:ate|elim|irentriesattr|omainname|tablesize)|e(?:gid|nv|uid)|g(?:id|roup(?:list|s))|host(?:id|name)|i(?:opolicy_np|timer)|l(?:ine|o(?:adavg|gin(?:_r)?))|mode|opt|p(?:a(?:gesize|ss)|eereid|g(?:id|rp)|id|pid|r(?:iority|ogname))|r(?:limit|usage)|s(?:groups_np|id|ubopt)?|timeofday|u(?:id|sershell)|w(?:d|groups_np)?)|mtime(?:_r)?|rantpt)|h(?:eapsort(?:_b)?|ypot(?:f|l)?)|i(?:logb(?:f|l)?|n(?:dex|it(?:groups|state))|ruserok(?:_sa)?|s(?:atty|setugid))|j(?:0|1|n|rand48)|kill(?:pg)?|l(?:64a|abs|c(?:hown|ong48)|d(?:exp(?:f|l)?|iv)|gamma(?:f|l)?|ink|l(?:abs|div|r(?:int(?:f|l)?|ound(?:f|l)?))|o(?:c(?:al(?:econv|time(?:_r)?)|kf)|g(?:1(?:0(?:f|l)?|p(?:f|l)?)|2(?:f|l)?|b(?:f|l)?|f|l)?|ngjmp(?:error)?)|r(?:and48|int(?:f|l)?|ound(?:f|l)?)|seek|utimes)|m(?:b(?:len|stowcs|towc)|e(?:m(?:c(?:cpy|hr|mp|py)|m(?:em|ove)|set(?:_pattern(?:16|4|8))?)|rgesort(?:_b)?)|k(?:dtemp|nod|stemp(?:_dprotected_np|s)?|t(?:emp|ime))|odf(?:f|l)?|rand48)|n(?:an(?:f|l|osleep)?|e(?:arbyint(?:f|l)?|xt(?:after(?:f|l)?|toward(?:f|l)?))|fssvc|ice|rand48)|open(?:_dprotected_np|x_np)?|p(?:a(?:thconf|use)|close|error|ipe|o(?:pen|six(?:2time|_openpt)|w(?:f|l)?)|r(?:ead|intf|ofil)|s(?:elect|ignal|ort(?:_(?:b|r))?)|t(?:hread_(?:getugid_np|kill|s(?:etugid_np|igmask))|sname)|ut(?:c(?:_unlocked|har(?:_unlocked)?)?|env|s|w)|write)|qsort(?:_(?:b|r))?|r(?:a(?:dixsort|ise|nd(?:_r|om)?)|cmd(?:_af)?|e(?:a(?:d(?:link)?|l(?:locf|path))|boot|m(?:ainder(?:f|l)?|ove|quo(?:f|l)?)|name|voke|wind)|in(?:dex|t(?:f|l)?)|mdir|ound(?:f|l)?|resvport(?:_af)?|userok)|s(?:brk|ca(?:lb(?:ln(?:f|l)?|n(?:f|l)?)?|nf)|e(?:archfs|ed48|lect|t(?:attrlist|buf(?:fer)?|domainname|e(?:gid|nv|uid)|g(?:id|roups)|host(?:id|name)|i(?:opolicy_np|timer)|jmp|key|l(?:inebuf|o(?:cale|gin))|mode|p(?:g(?:id|rp)|r(?:iority|ogname))|r(?:e(?:gid|uid)|gid|limit|uid)|s(?:groups_np|id|tate)|timeofday|u(?:id|sershell)|vbuf|wgroups_np))|i(?:g(?:a(?:ction|ddset|ltstack)|block|delset|emptyset|fillset|hold|i(?:gnore|nterrupt|smember)|longjmp|nal|p(?:ause|ending|rocmask)|relse|s(?:et(?:jmp|mask)?|uspend)|vec|wait)|md_muladd|n(?:f|h(?:f|l)?|l)?)|leep|nprintf|printf|qrt(?:f|l)?|ra(?:dixsort|nd(?:48|dev|om(?:dev)?)?)|scanf|t(?:p(?:cpy|ncpy)|r(?:c(?:a(?:se(?:cmp|str)|t)|hr|mp|oll|py|spn)|dup|error(?:_r)?|ftime|l(?:c(?:at|py)|en)|mode|n(?:c(?:a(?:secmp|t)|mp|py)|dup|len|str)|p(?:brk|time)|rchr|s(?:ep|ignal|pn|tr)|to(?:d|f(?:flags)?|k(?:_r)?|l(?:d|l)?|q|u(?:l(?:l)?|q))|xfrm))|wa(?:b|pon)|y(?:mlink|nc|s(?:conf|tem)))|t(?:an(?:f|h(?:f|l)?|l)?|c(?:getpgrp|setpgrp)|empnam|gamma(?:f|l)?|ime(?:2posix|gm|local)?|mp(?:file|nam)|runc(?:ate|f|l)?|ty(?:name(?:_r)?|slot)|zset(?:wall)?)|u(?:alarm|n(?:delete|getc|l(?:ink|ockpt)|setenv|whiteout)|sleep|times)|v(?:a(?:lloc|sprintf)|dprintf|f(?:ork|printf|scanf)|printf|s(?:canf|nprintf|printf|scanf))|w(?:ait(?:3|4|id|pid)?|c(?:stombs|tomb)|rite)|y(?:0|1|n)|zopen)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.dispatch.10.10.c'}\n },\n match:\n '(\\\\s*)(\\\\bdispatch_(?:block_(?:c(?:ancel|reate(?:_with_qos_class)?)|notify|perform|testcancel|wait)|queue_(?:attr_make_with_qos_class|get_qos_class))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.dispatch.10.12.c'}\n },\n match:\n '(\\\\s*)(\\\\bdispatch_(?:a(?:ctivate|ssert_queue(?:_(?:barrier|not))?)|queue_(?:attr_make_(?:initially_inactive|with_autorelease_frequency)|create_with_target))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.dispatch.10.14.c'}\n },\n match:\n '(\\\\s*)(\\\\bdispatch_(?:async_and_wait(?:_f)?|barrier_async_and_wait(?:_f)?|set_qos_class_floor|workloop_(?:create(?:_inactive)?|set_autorelease_frequency))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.dispatch.c'}\n },\n match:\n '(\\\\s*)(\\\\bdispatch_(?:a(?:fter(?:_f)?|pply(?:_f)?|sync(?:_f)?)|barrier_(?:async(?:_f)?|sync(?:_f)?)|cancel|data_(?:apply|c(?:opy_region|reate(?:_(?:concat|map|subrange))?)|get_size)|g(?:et_(?:context|global_queue|main_queue|specific)|roup_(?:async(?:_f)?|create|enter|leave|notify(?:_f)?|wait))|io_(?:barrier|c(?:lose|reate(?:_with_(?:io|path))?)|get_descriptor|read|set_(?:high_water|interval|low_water)|write)|main|notify|once(?:_f)?|queue_(?:create|get_(?:label|specific)|set_specific)|re(?:ad|lease|sume|tain)|s(?:e(?:maphore_(?:create|signal|wait)|t_(?:context|finalizer_f|target_queue))|ource_(?:c(?:ancel|reate)|get_(?:data|handle|mask)|merge_data|set_(?:cancel_handler(?:_f)?|event_handler(?:_f)?|registration_handler(?:_f)?|timer)|testcancel)|uspend|ync(?:_f)?)|testcancel|w(?:ait|rite))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.os.c'}\n },\n match:\n '(\\\\s*)(\\\\b(?:OS(?:HostByteOrder|ReadSwapInt(?:16|32|64)|WriteSwapInt(?:16|32|64))|gethostuuid)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.quartz.10.11.c'}\n },\n match:\n '(\\\\s*)(\\\\bCG(?:ColorCreateCopyByMatchingToColorSpace|Event(?:PostToPid|TapCreateForPid)|ImageGetUTType)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.quartz.10.12.c'}\n },\n match:\n '(\\\\s*)(\\\\bCGColor(?:ConversionInfoCreate(?:FromList)?|Space(?:C(?:opy(?:ICCData|PropertyList)|reateWith(?:ICCData|PropertyList))|IsWideGamutRGB|SupportsOutput))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.quartz.10.13.c'}\n },\n match:\n '(\\\\s*)(\\\\bCG(?:Color(?:ConversionInfoCreateFromListWithArguments|SpaceGetName)|DataProviderGetInfo|EventCreateScrollWheelEvent2|P(?:DF(?:ContextSetOutline|DocumentGet(?:AccessPermissions|Outline))|athApplyWithBlock))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.quartz.10.14.c'}\n },\n match:\n '(\\\\s*)(\\\\bCG(?:ColorConversionInfoCreateWithOptions|ImageGet(?:ByteOrderInfo|PixelFormatInfo)|PDF(?:ArrayApplyBlock|DictionaryApplyBlock))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.quartz.10.15.c'}\n },\n match:\n '(\\\\s*)(\\\\bCG(?:ColorCreate(?:GenericGrayGamma2_2|SRGB)|PDF(?:Context(?:BeginTag|EndTag)|TagTypeGetName))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.quartz.10.8.c'}\n },\n match:\n '(\\\\s*)(\\\\bCG(?:Display(?:ModeGetPixel(?:Height|Width)|Stream(?:Create(?:WithDispatchQueue)?|Get(?:RunLoopSource|TypeID)|St(?:art|op)|Update(?:CreateMergedUpdate|Get(?:DropCount|MovedRectsDelta|Rects|TypeID))))|WindowServerCreateServerPort)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.quartz.10.9.c'}\n },\n match: '(\\\\s*)(\\\\bCGPath(?:AddRoundedRect|CreateWithRoundedRect)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.quartz.c'}\n },\n match:\n '(\\\\s*)(\\\\bCG(?:A(?:cquireDisplayFadeReservation|ffineTransform(?:Concat|EqualToTransform|I(?:nvert|sIdentity)|Make(?:Rotation|Scale|Translation)?|Rotate|Scale|Translate)|ssociateMouseAndMouseCursorPosition)|B(?:eginDisplayConfiguration|itmapContext(?:Create(?:Image|WithData)?|Get(?:AlphaInfo|B(?:it(?:mapInfo|sPer(?:Component|Pixel))|ytesPerRow)|ColorSpace|Data|Height|Width)))|C(?:a(?:ncelDisplayConfiguration|ptureAllDisplays(?:WithOptions)?)|o(?:lor(?:C(?:onversionInfoGetTypeID|reate(?:Copy(?:WithAlpha)?|Generic(?:CMYK|Gray|RGB)|WithPattern)?)|EqualToColor|Get(?:Alpha|Co(?:lorSpace|mponents|nstantColor)|NumberOfComponents|Pattern|TypeID)|Re(?:lease|tain)|Space(?:C(?:opyName|reate(?:Calibrated(?:Gray|RGB)|Device(?:CMYK|Gray|RGB)|I(?:CCBased|ndexed)|Lab|Pattern|With(?:Name|PlatformColorSpace)))|Get(?:BaseColorSpace|ColorTable(?:Count)?|Model|NumberOfComponents|TypeID)|Re(?:lease|tain)))|mpleteDisplayConfiguration|n(?:figureDisplay(?:FadeEffect|MirrorOfDisplay|Origin|StereoOperation|WithDisplayMode)|text(?:Add(?:Arc(?:ToPoint)?|CurveToPoint|EllipseInRect|Line(?:ToPoint|s)|Path|QuadCurveToPoint|Rect(?:s)?)|Begin(?:Pa(?:ge|th)|TransparencyLayer(?:WithRect)?)|C(?:l(?:earRect|ip(?:To(?:Mask|Rect(?:s)?))?|osePath)|o(?:n(?:catCTM|vert(?:PointTo(?:DeviceSpace|UserSpace)|RectTo(?:DeviceSpace|UserSpace)|SizeTo(?:DeviceSpace|UserSpace)))|pyPath))|Draw(?:Image|L(?:ayer(?:AtPoint|InRect)|inearGradient)|P(?:DFPage|ath)|RadialGradient|Shading|TiledImage)|E(?:O(?:Clip|FillPath)|nd(?:Page|TransparencyLayer))|F(?:ill(?:EllipseInRect|Path|Rect(?:s)?)|lush)|Get(?:C(?:TM|lipBoundingBox)|InterpolationQuality|Path(?:BoundingBox|CurrentPoint)|T(?:ext(?:Matrix|Position)|ypeID)|UserSpaceToDeviceSpaceTransform)|IsPathEmpty|MoveToPoint|PathContainsPoint|R(?:e(?:lease|placePathWithStrokedPath|s(?:etClip|toreGState)|tain)|otateCTM)|S(?:aveGState|caleCTM|et(?:Al(?:lows(?:Antialiasing|FontS(?:moothing|ubpixel(?:Positioning|Quantization)))|pha)|BlendMode|C(?:MYK(?:FillColor|StrokeColor)|haracterSpacing)|F(?:ill(?:Color(?:Space|WithColor)?|Pattern)|latness|ont(?:Size)?)|Gray(?:FillColor|StrokeColor)|InterpolationQuality|Line(?:Cap|Dash|Join|Width)|MiterLimit|PatternPhase|R(?:GB(?:FillColor|StrokeColor)|enderingIntent)|S(?:h(?:adow(?:WithColor)?|ould(?:Antialias|S(?:moothFonts|ubpixel(?:PositionFonts|QuantizeFonts))))|troke(?:Color(?:Space|WithColor)?|Pattern))|Text(?:DrawingMode|Matrix|Position))|howGlyphsAtPositions|troke(?:EllipseInRect|LineSegments|Path|Rect(?:WithWidth)?)|ynchronize)|TranslateCTM))))|D(?:ata(?:Consumer(?:Create(?:With(?:CFData|URL))?|GetTypeID|Re(?:lease|tain))|Provider(?:C(?:opyData|reate(?:Direct|Sequential|With(?:CFData|Data|Filename|URL)))|GetTypeID|Re(?:lease|tain)))|isplay(?:Bounds|C(?:apture(?:WithOptions)?|opy(?:AllDisplayModes|ColorSpace|DisplayMode)|reateImage(?:ForRect)?)|Fade|G(?:ammaTableCapacity|etDrawingContext)|HideCursor|I(?:DToOpenGLDisplayMask|s(?:A(?:ctive|lwaysInMirrorSet|sleep)|Builtin|In(?:HWMirrorSet|MirrorSet)|Main|Online|Stereo))|M(?:irrorsDisplay|o(?:de(?:Get(?:Height|IO(?:DisplayModeID|Flags)|RefreshRate|TypeID|Width)|IsUsableForDesktopGUI|Re(?:lease|tain)|lNumber)|veCursorToPoint))|P(?:ixels(?:High|Wide)|rimaryDisplay)|R(?:e(?:gisterReconfigurationCallback|lease|moveReconfigurationCallback|storeColorSyncSettings)|otation)|S(?:creenSize|e(?:rialNumber|t(?:DisplayMode|StereoOperation))|howCursor)|U(?:nitNumber|sesOpenGLAcceleration)|VendorNumber))|Event(?:Create(?:Copy|Data|FromData|KeyboardEvent|MouseEvent|S(?:crollWheelEvent|ourceFromEvent))?|Get(?:DoubleValueField|Flags|IntegerValueField|Location|T(?:imestamp|ype(?:ID)?)|UnflippedLocation)|Keyboard(?:GetUnicodeString|SetUnicodeString)|Post(?:ToPSN)?|S(?:et(?:DoubleValueField|Flags|IntegerValueField|Location|Source|T(?:imestamp|ype))|ource(?:ButtonState|C(?:ounterForEventType|reate)|FlagsState|Get(?:KeyboardType|LocalEvents(?:FilterDuringSuppressionState|SuppressionInterval)|PixelsPerLine|SourceStateID|TypeID|UserData)|KeyState|Se(?:condsSinceLastEventType|t(?:KeyboardType|LocalEvents(?:FilterDuringSuppressionState|SuppressionInterval)|PixelsPerLine|UserData))))|Tap(?:Create(?:ForPSN)?|Enable|IsEnabled|PostEvent))|F(?:ont(?:C(?:anCreatePostScriptSubset|opy(?:FullName|GlyphNameForGlyph|PostScriptName|Table(?:ForTag|Tags)|Variation(?:Axes|s))|reate(?:CopyWithVariations|PostScript(?:Encoding|Subset)|With(?:DataProvider|FontName)))|Get(?:Ascent|CapHeight|Descent|FontBBox|Glyph(?:Advances|BBoxes|WithGlyphName)|ItalicAngle|Leading|NumberOfGlyphs|StemV|TypeID|UnitsPerEm|XHeight)|Re(?:lease|tain))|unction(?:Create|GetTypeID|Re(?:lease|tain)))|G(?:et(?:ActiveDisplayList|Display(?:TransferBy(?:Formula|Table)|sWith(?:OpenGLDisplayMask|Point|Rect))|EventTapList|LastMouseDelta|OnlineDisplayList)|radient(?:CreateWithColor(?:Components|s)|GetTypeID|Re(?:lease|tain)))|Image(?:Create(?:Copy(?:WithColorSpace)?|With(?:ImageInRect|JPEGDataProvider|Mask(?:ingColors)?|PNGDataProvider))?|Get(?:AlphaInfo|B(?:it(?:mapInfo|sPer(?:Component|Pixel))|ytesPerRow)|ColorSpace|D(?:ataProvider|ecode)|Height|RenderingIntent|ShouldInterpolate|TypeID|Width)|IsMask|MaskCreate|Re(?:lease|tain))|Layer(?:CreateWithContext|Get(?:Context|Size|TypeID)|Re(?:lease|tain))|MainDisplayID|OpenGLDisplayMaskToDisplayID|P(?:DF(?:ArrayGet(?:Array|Boolean|Count|Dictionary|Integer|N(?:ame|u(?:ll|mber))|Object|Str(?:eam|ing))|Conte(?:ntStream(?:CreateWith(?:Page|Stream)|Get(?:Resource|Streams)|Re(?:lease|tain))|xt(?:AddD(?:estinationAtPoint|ocumentMetadata)|BeginPage|C(?:lose|reate(?:WithURL)?)|EndPage|Set(?:DestinationForRect|URLForRect)))|D(?:ictionary(?:ApplyFunction|Get(?:Array|Boolean|Count|Dictionary|Integer|N(?:ame|umber)|Object|Str(?:eam|ing)))|ocument(?:Allows(?:Copying|Printing)|CreateWith(?:Provider|URL)|Get(?:Catalog|I(?:D|nfo)|NumberOfPages|Page|TypeID|Version)|Is(?:Encrypted|Unlocked)|Re(?:lease|tain)|UnlockWithPassword))|O(?:bjectGet(?:Type|Value)|peratorTable(?:Create|Re(?:lease|tain)|SetCallback))|Page(?:Get(?:BoxRect|D(?:ictionary|ocument|rawingTransform)|PageNumber|RotationAngle|TypeID)|Re(?:lease|tain))|S(?:canner(?:Create|GetContentStream|Pop(?:Array|Boolean|Dictionary|Integer|N(?:ame|umber)|Object|Str(?:eam|ing))|Re(?:lease|tain)|Scan)|tr(?:eam(?:CopyData|GetDictionary)|ing(?:Copy(?:Date|TextString)|Get(?:BytePtr|Length)))))|SConverter(?:Abort|C(?:onvert|reate)|GetTypeID|IsConverting)|at(?:h(?:A(?:dd(?:Arc(?:ToPoint)?|CurveToPoint|EllipseInRect|Line(?:ToPoint|s)|Path|QuadCurveToPoint|Re(?:ct(?:s)?|lativeArc))|pply)|C(?:loseSubpath|ontainsPoint|reate(?:Copy(?:By(?:DashingPath|StrokingPath|TransformingPath))?|Mutable(?:Copy(?:ByTransformingPath)?)?|With(?:EllipseInRect|Rect)))|EqualToPath|Get(?:BoundingBox|CurrentPoint|PathBoundingBox|TypeID)|Is(?:Empty|Rect)|MoveToPoint|Re(?:lease|tain))|tern(?:Create|GetTypeID|Re(?:lease|tain)))|oint(?:ApplyAffineTransform|CreateDictionaryRepresentation|EqualToPoint|Make(?:WithDictionaryRepresentation)?))|Re(?:ct(?:ApplyAffineTransform|C(?:ontains(?:Point|Rect)|reateDictionaryRepresentation)|Divide|EqualToRect|Get(?:Height|M(?:ax(?:X|Y)|i(?:d(?:X|Y)|n(?:X|Y)))|Width)|I(?:n(?:set|te(?:gral|rsect(?:ion|sRect)))|s(?:Empty|Infinite|Null))|Make(?:WithDictionaryRepresentation)?|Offset|Standardize|Union)|lease(?:AllDisplays|DisplayFadeReservation)|storePermanentDisplayConfiguration)|S(?:e(?:ssionCopyCurrentDictionary|tDisplayTransferBy(?:ByteTable|Formula|Table))|h(?:ading(?:Create(?:Axial|Radial)|GetTypeID|Re(?:lease|tain))|ieldingWindow(?:ID|Level))|ize(?:ApplyAffineTransform|CreateDictionaryRepresentation|EqualToSize|Make(?:WithDictionaryRepresentation)?))|VectorMake|W(?:arpMouseCursorPosition|indowL(?:evelForKey|istC(?:opyWindowInfo|reate(?:DescriptionFromArray|Image(?:FromArray)?)?))))\\\\b)'\n }\n ]\n }\n },\n scopeName: 'source.c.platform'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.bf', '.cake', '.cs', '.cs.pp', '.csx', '.eq', '.linq', '.uno'],\n names: ['beef', 'c#', 'cake', 'cakescript', 'csharp', 'eq', 'uno'],\n patterns: [\n {include: '#preprocessor'},\n {include: '#comment'},\n {include: '#directives'},\n {include: '#declarations'},\n {include: '#script-top-level'}\n ],\n repository: {\n 'accessor-getter': {\n patterns: [\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n contentName: 'meta.accessor.getter.cs',\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [{include: '#statement'}]\n },\n {include: '#accessor-getter-expression'},\n {include: '#punctuation-semicolon'}\n ]\n },\n 'accessor-getter-expression': {\n begin: '=>',\n beginCaptures: {0: {name: 'keyword.operator.arrow.cs'}},\n contentName: 'meta.accessor.getter.cs',\n end: '(?=;|\\\\})',\n patterns: [{include: '#ref-modifier'}, {include: '#expression'}]\n },\n 'accessor-setter': {\n patterns: [\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n contentName: 'meta.accessor.setter.cs',\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [{include: '#statement'}]\n },\n {\n begin: '=>',\n beginCaptures: {0: {name: 'keyword.operator.arrow.cs'}},\n contentName: 'meta.accessor.setter.cs',\n end: '(?=;|\\\\})',\n patterns: [{include: '#ref-modifier'}, {include: '#expression'}]\n },\n {include: '#punctuation-semicolon'}\n ]\n },\n 'anonymous-method-expression': {\n patterns: [\n {\n begin:\n '(?x)\\n((?:\\\\b(?:async|static)\\\\b\\\\s*)*)\\n(?:\\n (@?[_[:alpha:]][_[:alnum:]]*)\\\\b|\\n (\\\\()\\n (?(?:[^()]|\\\\(\\\\g\\\\))*)\\n (\\\\))\\n)\\\\s*\\n(=>)',\n beginCaptures: {\n 1: {\n patterns: [\n {match: 'async|static', name: 'storage.modifier.$0.cs'}\n ]\n },\n 2: {name: 'entity.name.variable.parameter.cs'},\n 3: {name: 'punctuation.parenthesis.open.cs'},\n 4: {\n patterns: [\n {include: '#comment'},\n {include: '#explicit-anonymous-function-parameter'},\n {include: '#implicit-anonymous-function-parameter'},\n {include: '#default-argument'},\n {include: '#punctuation-comma'}\n ]\n },\n 5: {name: 'punctuation.parenthesis.close.cs'},\n 6: {name: 'keyword.operator.arrow.cs'}\n },\n end: '(?=[,;)}])',\n patterns: [\n {include: '#intrusive'},\n {\n begin: '(?={)',\n end: '(?=[,;)}])',\n patterns: [{include: '#block'}, {include: '#intrusive'}]\n },\n {\n begin: '\\\\b(ref)\\\\b|(?=\\\\S)',\n beginCaptures: {1: {name: 'storage.modifier.ref.cs'}},\n end: '(?=[,;)}])',\n patterns: [{include: '#expression'}]\n }\n ]\n },\n {\n begin:\n '(?x)\\n((?:\\\\b(?:async|static)\\\\b\\\\s*)*)\\n\\\\b(delegate)\\\\b\\\\s*',\n beginCaptures: {\n 1: {\n patterns: [\n {match: 'async|static', name: 'storage.modifier.$0.cs'}\n ]\n },\n 2: {name: 'storage.type.delegate.cs'}\n },\n end: '(?<=})|(?=[,;)}])',\n patterns: [\n {include: '#intrusive'},\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [\n {include: '#intrusive'},\n {include: '#explicit-anonymous-function-parameter'},\n {include: '#punctuation-comma'}\n ]\n },\n {include: '#block'}\n ]\n }\n ]\n },\n 'anonymous-object-creation-expression': {\n begin: '\\\\b(new)\\\\b\\\\s*(?=\\\\{|//|/\\\\*|$)',\n beginCaptures: {1: {name: 'keyword.operator.expression.new.cs'}},\n end: '(?<=\\\\})',\n patterns: [{include: '#comment'}, {include: '#initializer-expression'}]\n },\n argument: {\n patterns: [\n {match: '\\\\b(ref|in)\\\\b', name: 'storage.modifier.$1.cs'},\n {\n begin: '\\\\b(out)\\\\b',\n beginCaptures: {1: {name: 'storage.modifier.out.cs'}},\n end: '(?=,|\\\\)|\\\\])',\n patterns: [\n {include: '#declaration-expression-local'},\n {include: '#expression'}\n ]\n },\n {include: '#expression'}\n ]\n },\n 'argument-list': {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [\n {include: '#named-argument'},\n {include: '#argument'},\n {include: '#punctuation-comma'}\n ]\n },\n 'array-creation-expression': {\n begin:\n '(?x)\\n\\\\b(new|stackalloc)\\\\b\\\\s*\\n(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)?\\\\s*\\n(?=\\\\[)',\n beginCaptures: {\n 1: {name: 'keyword.operator.expression.$1.cs'},\n 2: {patterns: [{include: '#type'}]}\n },\n end: '(?<=\\\\])',\n patterns: [{include: '#bracketed-argument-list'}]\n },\n 'as-expression': {\n captures: {\n 1: {name: 'keyword.operator.expression.as.cs'},\n 2: {patterns: [{include: '#type'}]}\n },\n match:\n '(?x)\\n(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?(?!\\\\?))? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n \\\\s*(?:,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n (?:\\\\s*\\\\?(?!\\\\?))? # arrays can be nullable reference types\\n )*\\n )\\n)?'\n },\n 'assignment-expression': {\n begin: '(?:\\\\*|/|%|\\\\+|-|\\\\?\\\\?|\\\\&|\\\\^|<<|>>>?|\\\\|)?=(?!=|>)',\n beginCaptures: {0: {patterns: [{include: '#assignment-operators'}]}},\n end: '(?=[,\\\\)\\\\];}])',\n patterns: [{include: '#ref-modifier'}, {include: '#expression'}]\n },\n 'assignment-operators': {\n patterns: [\n {\n match: '\\\\*=|/=|%=|\\\\+=|-=|\\\\?\\\\?=',\n name: 'keyword.operator.assignment.compound.cs'\n },\n {\n match: '\\\\&=|\\\\^=|<<=|>>>?=|\\\\|=',\n name: 'keyword.operator.assignment.compound.bitwise.cs'\n },\n {match: '\\\\=', name: 'keyword.operator.assignment.cs'}\n ]\n },\n attribute: {\n patterns: [\n {include: '#type-name'},\n {include: '#type-arguments'},\n {include: '#attribute-arguments'}\n ]\n },\n 'attribute-arguments': {\n begin: '(\\\\()',\n beginCaptures: {1: {name: 'punctuation.parenthesis.open.cs'}},\n end: '(\\\\))',\n endCaptures: {1: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [\n {include: '#attribute-named-argument'},\n {include: '#expression'},\n {include: '#punctuation-comma'}\n ]\n },\n 'attribute-named-argument': {\n begin: '(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*(?==)',\n beginCaptures: {1: {name: 'entity.name.variable.property.cs'}},\n end: '(?=(,|\\\\)))',\n patterns: [{include: '#operator-assignment'}, {include: '#expression'}]\n },\n 'attribute-section': {\n begin:\n '(\\\\[)(assembly|module|field|event|method|param|property|return|type)?(\\\\:)?',\n beginCaptures: {\n 1: {name: 'punctuation.squarebracket.open.cs'},\n 2: {name: 'keyword.other.attribute-specifier.cs'},\n 3: {name: 'punctuation.separator.colon.cs'}\n },\n end: '(\\\\])',\n endCaptures: {1: {name: 'punctuation.squarebracket.close.cs'}},\n patterns: [\n {include: '#comment'},\n {include: '#attribute'},\n {include: '#punctuation-comma'}\n ]\n },\n 'await-expression': {name: 'keyword.operator.expression.await.cs'},\n 'await-statement': {\n beginCaptures: {1: {name: 'keyword.operator.expression.await.cs'}},\n end: '(?<=})|(?=;|})',\n patterns: [\n {include: '#foreach-statement'},\n {include: '#using-statement'},\n {include: '#expression'}\n ]\n },\n 'base-types': {\n begin: ':',\n beginCaptures: {0: {name: 'punctuation.separator.colon.cs'}},\n end: '(?=\\\\{|where|;)',\n patterns: [\n {include: '#type'},\n {include: '#punctuation-comma'},\n {include: '#preprocessor'}\n ]\n },\n block: {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [{include: '#statement'}]\n },\n 'boolean-literal': {\n patterns: [\n {\n match: '(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\\\s*\\n(\\\\))(?=\\\\s*-*!*@?[_[:alnum:]\\\\(])'\n },\n 'casted-constant-pattern': {\n begin:\n '(?x)\\n(\\\\()\\n ([\\\\s.:@_[:alnum:]]+)\\n(\\\\))\\n(?=[\\\\s+\\\\-!~]*@?[_[:alnum:](\\'\"]+)',\n beginCaptures: {\n 1: {name: 'punctuation.parenthesis.open.cs'},\n 2: {patterns: [{include: '#type-builtin'}, {include: '#type-name'}]},\n 3: {name: 'punctuation.parenthesis.close.cs'}\n },\n end: '(?=[)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {include: '#casted-constant-pattern'},\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [{include: '#constant-pattern'}]\n },\n {include: '#constant-pattern'},\n {\n captures: {\n 1: {name: 'entity.name.type.alias.cs'},\n 2: {name: 'punctuation.separator.coloncolon.cs'}\n },\n match: '(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*(\\\\:\\\\:)'\n },\n {\n captures: {\n 1: {name: 'entity.name.type.cs'},\n 2: {name: 'punctuation.accessor.cs'}\n },\n match: '(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*(\\\\.)'\n },\n {\n match: '\\\\@?[_[:alpha:]][_[:alnum:]]*',\n name: 'variable.other.constant.cs'\n }\n ]\n },\n 'catch-clause': {\n begin: '(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\\\s*\\n(?:(\\\\g)\\\\b)?'\n }\n ]\n },\n {include: '#when-clause'},\n {include: '#comment'},\n {include: '#block'}\n ]\n },\n 'char-character-escape': {\n match: '\\\\\\\\(x[0-9a-fA-F]{1,4}|u[0-9a-fA-F]{4}|.)',\n name: 'constant.character.escape.cs'\n },\n 'char-literal': {\n begin: \"'\",\n beginCaptures: {0: {name: 'punctuation.definition.char.begin.cs'}},\n end: \"(\\\\')|((?:[^\\\\\\\\\\\\n])$)\",\n endCaptures: {\n 1: {name: 'punctuation.definition.char.end.cs'},\n 2: {name: 'invalid.illegal.newline.cs'}\n },\n name: 'string.quoted.single.cs',\n patterns: [{include: '#char-character-escape'}]\n },\n 'class-declaration': {\n begin: '(?=(\\\\brecord\\\\b\\\\s+)?\\\\bclass\\\\b)',\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {\n begin:\n '(?x)\\n(\\\\b(record)\\\\b\\\\s+)?\\n\\\\b(class)\\\\b\\\\s+\\n(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*',\n beginCaptures: {\n 2: {name: 'storage.type.record.cs'},\n 3: {name: 'storage.type.class.cs'},\n 4: {name: 'entity.name.type.class.cs'}\n },\n end: '(?=\\\\{)|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#type-parameter-list'},\n {include: '#parenthesized-parameter-list'},\n {include: '#base-types'},\n {include: '#generic-constraints'}\n ]\n },\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [{include: '#class-or-struct-members'}]\n },\n {include: '#preprocessor'},\n {include: '#comment'}\n ]\n },\n 'class-or-struct-members': {\n patterns: [\n {include: '#preprocessor'},\n {include: '#comment'},\n {include: '#storage-modifier'},\n {include: '#type-declarations'},\n {include: '#property-declaration'},\n {include: '#field-declaration'},\n {include: '#event-declaration'},\n {include: '#indexer-declaration'},\n {include: '#variable-initializer'},\n {include: '#constructor-declaration'},\n {include: '#destructor-declaration'},\n {include: '#operator-declaration'},\n {include: '#conversion-operator-declaration'},\n {include: '#method-declaration'},\n {include: '#attribute-section'},\n {include: '#punctuation-semicolon'}\n ]\n },\n 'combinator-pattern': {\n match: '\\\\b(and|or|not)\\\\b',\n name: 'keyword.operator.expression.pattern.combinator.$1.cs'\n },\n comment: {\n patterns: [\n {\n begin: '(^\\\\s+)?(///)(?!/)',\n captures: {\n 1: {name: 'punctuation.whitespace.comment.leading.cs'},\n 2: {name: 'punctuation.definition.comment.cs'}\n },\n name: 'comment.block.documentation.cs',\n patterns: [{include: '#xml-doc-comment'}],\n while: '^(\\\\s*)(///)(?!/)'\n },\n {\n begin: '(^\\\\s+)?(/\\\\*\\\\*)(?!/)',\n captures: {\n 1: {name: 'punctuation.whitespace.comment.leading.cs'},\n 2: {name: 'punctuation.definition.comment.cs'}\n },\n end: '(^\\\\s+)?(\\\\*/)',\n name: 'comment.block.documentation.cs',\n patterns: [\n {\n patterns: [{include: '#xml-doc-comment'}],\n whileCaptures: {\n 1: {name: 'punctuation.whitespace.comment.leading.cs'},\n 2: {name: 'punctuation.definition.comment.cs'}\n }\n },\n {include: '#xml-doc-comment'}\n ]\n },\n {\n begin: '(^\\\\s+)?(//).*$',\n captures: {\n 1: {name: 'punctuation.whitespace.comment.leading.cs'},\n 2: {name: 'punctuation.definition.comment.cs'}\n },\n name: 'comment.line.double-slash.cs',\n while: '^(\\\\s*)(//).*$'\n },\n {\n begin: '/\\\\*',\n captures: {0: {name: 'punctuation.definition.comment.cs'}},\n end: '\\\\*/',\n name: 'comment.block.cs'\n }\n ]\n },\n 'conditional-operator': {\n patterns: [\n {\n match: '\\\\?(?!\\\\?|\\\\s*[.\\\\[])',\n name: 'keyword.operator.conditional.question-mark.cs'\n },\n {match: ':', name: 'keyword.operator.conditional.colon.cs'}\n ]\n },\n 'constant-pattern': {\n patterns: [\n {include: '#boolean-literal'},\n {include: '#null-literal'},\n {include: '#numeric-literal'},\n {include: '#char-literal'},\n {include: '#string-literal'},\n {include: '#raw-string-literal'},\n {include: '#verbatim-string-literal'},\n {include: '#type-operator-expression'},\n {include: '#expression-operator-expression'},\n {include: '#expression-operators'},\n {include: '#casted-constant-pattern'}\n ]\n },\n 'constructor-declaration': {\n begin: '(?=@?[_[:alpha:]][_[:alnum:]]*\\\\s*\\\\()',\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {\n captures: {1: {name: 'entity.name.function.cs'}},\n match: '(@?[_[:alpha:]][_[:alnum:]]*)\\\\b'\n },\n {\n begin: '(:)',\n beginCaptures: {1: {name: 'punctuation.separator.colon.cs'}},\n end: '(?=\\\\{|=>)',\n patterns: [{include: '#constructor-initializer'}]\n },\n {include: '#parenthesized-parameter-list'},\n {include: '#preprocessor'},\n {include: '#comment'},\n {include: '#expression-body'},\n {include: '#block'}\n ]\n },\n 'constructor-initializer': {\n begin: '\\\\b(base|this)\\\\b\\\\s*(?=\\\\()',\n beginCaptures: {1: {name: 'variable.language.$1.cs'}},\n end: '(?<=\\\\))',\n patterns: [{include: '#argument-list'}]\n },\n 'context-control-paren-statement': {\n patterns: [\n {include: '#fixed-statement'},\n {include: '#lock-statement'},\n {include: '#using-statement'}\n ]\n },\n 'context-control-statement': {\n match: '\\\\b(checked|unchecked|unsafe)\\\\b(?!\\\\s*[@_[:alpha:](])',\n name: 'keyword.control.context.$1.cs'\n },\n 'conversion-operator-declaration': {\n begin:\n '(?x)\\n(?(?:\\\\b(?:explicit|implicit)))\\\\s*\\n(?(?:\\\\b(?:operator)))\\\\s*\\n(?\\n (?:\\n (?:ref\\\\s+(?:readonly\\\\s+)?)? # ref return\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\\\s*\\n(?=\\\\()',\n beginCaptures: {\n 1: {\n patterns: [\n {\n captures: {1: {name: 'storage.modifier.explicit.cs'}},\n match: '\\\\b(explicit)\\\\b'\n },\n {\n captures: {1: {name: 'storage.modifier.implicit.cs'}},\n match: '\\\\b(implicit)\\\\b'\n }\n ]\n },\n 2: {name: 'storage.type.operator.cs'},\n 3: {patterns: [{include: '#type'}]}\n },\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#parenthesized-parameter-list'},\n {include: '#expression-body'},\n {include: '#block'}\n ]\n },\n 'declaration-expression-local': {\n captures: {\n 1: {name: 'storage.type.var.cs'},\n 2: {patterns: [{include: '#type'}]},\n 7: {name: 'entity.name.variable.local.cs'}\n },\n match:\n '(?x) # e.g. int x OR var x\\n(?:\\n \\\\b(var)\\\\b|\\n (?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n )\\n)\\\\s+\\n(\\\\g)\\\\b\\\\s*\\n(?=[,)\\\\]])'\n },\n 'declaration-expression-tuple': {\n captures: {\n 1: {name: 'storage.type.var.cs'},\n 2: {patterns: [{include: '#type'}]},\n 7: {name: 'entity.name.variable.tuple-element.cs'}\n },\n match:\n '(?x) # e.g. int x OR var x\\n(?:\\n \\\\b(var)\\\\b|\\n (?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n )\\n)\\\\s+\\n(\\\\g)\\\\b\\\\s*\\n(?=[,)])'\n },\n declarations: {\n patterns: [\n {include: '#namespace-declaration'},\n {include: '#type-declarations'},\n {include: '#punctuation-semicolon'}\n ]\n },\n 'default-argument': {\n begin: '=',\n beginCaptures: {0: {name: 'keyword.operator.assignment.cs'}},\n end: '(?=,|\\\\))',\n patterns: [{include: '#expression'}]\n },\n 'default-literal-expression': {\n captures: {1: {name: 'keyword.operator.expression.default.cs'}},\n match: '\\\\b(default)\\\\b'\n },\n 'delegate-declaration': {\n begin:\n '(?x)\\n(?:\\\\b(delegate)\\\\b)\\\\s+\\n(?\\n (?:\\n (?:ref\\\\s+(?:readonly\\\\s+)?)? # ref return\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\\\s+\\n(\\\\g)\\\\s*\\n(<([^<>]+)>)?\\\\s*\\n(?=\\\\()',\n beginCaptures: {\n 1: {name: 'storage.type.delegate.cs'},\n 2: {patterns: [{include: '#type'}]},\n 7: {name: 'entity.name.type.delegate.cs'},\n 8: {patterns: [{include: '#type-parameter-list'}]}\n },\n end: '(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#parenthesized-parameter-list'},\n {include: '#generic-constraints'}\n ]\n },\n 'designation-pattern': {\n patterns: [\n {include: '#intrusive'},\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [\n {include: '#punctuation-comma'},\n {include: '#designation-pattern'}\n ]\n },\n {include: '#simple-designation-pattern'}\n ]\n },\n 'destructor-declaration': {\n begin: '(~)(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*(?=\\\\()',\n beginCaptures: {\n 1: {name: 'punctuation.tilde.cs'},\n 2: {name: 'entity.name.function.cs'}\n },\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#parenthesized-parameter-list'},\n {include: '#expression-body'},\n {include: '#block'}\n ]\n },\n directives: {\n patterns: [\n {include: '#extern-alias-directive'},\n {include: '#using-directive'},\n {include: '#attribute-section'},\n {include: '#punctuation-semicolon'}\n ]\n },\n 'discard-pattern': {\n match: '_(?![_[:alnum:]])',\n name: 'variable.language.discard.cs'\n },\n 'do-statement': {\n begin: '(?)\\\\s* # preceding pointer arrow?\\n)?\\n(?:(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*)? # property name\\n(?:(\\\\?)\\\\s*)? # null-conditional operator?\\n(?=\\\\[) # open bracket of argument list',\n beginCaptures: {\n 1: {name: 'keyword.operator.null-conditional.cs'},\n 2: {name: 'punctuation.accessor.cs'},\n 3: {name: 'punctuation.accessor.pointer.cs'},\n 4: {name: 'variable.other.object.property.cs'},\n 5: {name: 'keyword.operator.null-conditional.cs'}\n },\n end: '(?<=\\\\])(?!\\\\s*\\\\[)',\n patterns: [{include: '#bracketed-argument-list'}]\n },\n 'else-part': {\n begin: '(?|//|/\\\\*|$)',\n beginCaptures: {1: {name: 'storage.type.accessor.$1.cs'}},\n end: '(?<=\\\\}|;)|(?=\\\\})',\n patterns: [{include: '#accessor-setter'}]\n }\n ]\n },\n 'event-declaration': {\n begin:\n '(?x)\\n\\\\b(event)\\\\b\\\\s*\\n(?\\n (?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n )\\\\s+\\n)\\n(?\\\\g\\\\s*\\\\.\\\\s*)?\\n(\\\\g)\\\\s* # first event name\\n(?=\\\\{|;|,|=|//|/\\\\*|$)',\n beginCaptures: {\n 1: {name: 'storage.type.event.cs'},\n 2: {patterns: [{include: '#type'}]},\n 8: {patterns: [{include: '#type'}, {include: '#punctuation-accessor'}]},\n 9: {name: 'entity.name.variable.event.cs'}\n },\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#event-accessors'},\n {\n match: '@?[_[:alpha:]][_[:alnum:]]*',\n name: 'entity.name.variable.event.cs'\n },\n {include: '#punctuation-comma'},\n {\n begin: '=',\n beginCaptures: {0: {name: 'keyword.operator.assignment.cs'}},\n end: '(?<=,)|(?=;)',\n patterns: [{include: '#expression'}, {include: '#punctuation-comma'}]\n }\n ]\n },\n 'explicit-anonymous-function-parameter': {\n captures: {\n 1: {name: 'storage.modifier.$1.cs'},\n 2: {patterns: [{include: '#type'}]},\n 7: {name: 'entity.name.variable.parameter.cs'}\n },\n match:\n '(?x)\\n(?:\\\\b(ref|params|out|in)\\\\b\\\\s*)?\\n(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?<(?:[^<>]|\\\\g)*>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^()]|\\\\g)*\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\\\s*\\n\\\\b(\\\\g)\\\\b'\n },\n expression: {\n patterns: [\n {include: '#preprocessor'},\n {include: '#comment'},\n {include: '#expression-operator-expression'},\n {include: '#type-operator-expression'},\n {include: '#default-literal-expression'},\n {include: '#throw-expression'},\n {include: '#raw-interpolated-string'},\n {include: '#interpolated-string'},\n {include: '#verbatim-interpolated-string'},\n {include: '#type-builtin'},\n {include: '#language-variable'},\n {include: '#switch-statement-or-expression'},\n {include: '#with-expression'},\n {include: '#conditional-operator'},\n {include: '#assignment-expression'},\n {include: '#expression-operators'},\n {include: '#await-expression'},\n {include: '#query-expression'},\n {include: '#as-expression'},\n {include: '#is-expression'},\n {include: '#anonymous-method-expression'},\n {include: '#object-creation-expression'},\n {include: '#array-creation-expression'},\n {include: '#anonymous-object-creation-expression'},\n {include: '#invocation-expression'},\n {include: '#member-access-expression'},\n {include: '#element-access-expression'},\n {include: '#cast-expression'},\n {include: '#literal'},\n {include: '#parenthesized-expression'},\n {include: '#tuple-deconstruction-assignment'},\n {include: '#initializer-expression'},\n {include: '#identifier'}\n ]\n },\n 'expression-body': {\n begin: '=>',\n beginCaptures: {0: {name: 'keyword.operator.arrow.cs'}},\n end: '(?=[,\\\\);}])',\n patterns: [{include: '#ref-modifier'}, {include: '#expression'}]\n },\n 'expression-operator-expression': {\n begin: '\\\\b(checked|unchecked|nameof)\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'keyword.operator.expression.$1.cs'},\n 2: {name: 'punctuation.parenthesis.open.cs'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [{include: '#expression'}]\n },\n 'expression-operators': {\n patterns: [\n {match: '<<|>>>?', name: 'keyword.operator.bitwise.shift.cs'},\n {match: '==|!=', name: 'keyword.operator.comparison.cs'},\n {match: '<=|>=|<|>', name: 'keyword.operator.relational.cs'},\n {match: '\\\\!|&&|\\\\|\\\\|', name: 'keyword.operator.logical.cs'},\n {match: '\\\\&|~|\\\\^|\\\\|', name: 'keyword.operator.bitwise.cs'},\n {match: '--', name: 'keyword.operator.decrement.cs'},\n {match: '\\\\+\\\\+', name: 'keyword.operator.increment.cs'},\n {match: '\\\\+|-(?!>)|\\\\*|/|%', name: 'keyword.operator.arithmetic.cs'},\n {match: '\\\\?\\\\?', name: 'keyword.operator.null-coalescing.cs'},\n {match: '\\\\.\\\\.', name: 'keyword.operator.range.cs'}\n ]\n },\n 'extern-alias-directive': {\n begin: '\\\\b(extern)\\\\s+(alias)\\\\b',\n beginCaptures: {\n 1: {name: 'keyword.other.directive.extern.cs'},\n 2: {name: 'keyword.other.directive.alias.cs'}\n },\n end: '(?=;)',\n patterns: [\n {\n match: '\\\\@?[_[:alpha:]][_[:alnum:]]*',\n name: 'variable.other.alias.cs'\n }\n ]\n },\n 'field-declaration': {\n begin:\n '(?x)\\n(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\\\s+\\n(\\\\g)\\\\s* # first field name\\n(?!=>|==)(?=,|;|=|$)',\n beginCaptures: {\n 1: {patterns: [{include: '#type'}]},\n 6: {name: 'entity.name.variable.field.cs'}\n },\n end: '(?=;)',\n patterns: [\n {\n match: '@?[_[:alpha:]][_[:alnum:]]*',\n name: 'entity.name.variable.field.cs'\n },\n {include: '#punctuation-comma'},\n {include: '#comment'},\n {include: '#variable-initializer'},\n {include: '#class-or-struct-members'}\n ]\n },\n 'finally-clause': {\n begin: '(?\\n (?:\\n (?:ref\\\\s+)? # ref local\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n )\\n)\\\\s+\\n(\\\\g)\\\\s+\\n\\\\b(in)\\\\b'\n },\n {\n captures: {\n 1: {name: 'storage.type.var.cs'},\n 2: {\n patterns: [\n {include: '#tuple-declaration-deconstruction-element-list'}\n ]\n },\n 3: {name: 'keyword.control.loop.in.cs'}\n },\n match:\n '(?x) # match foreach (var (x, y) in ...)\\n(?:\\\\b(var)\\\\b\\\\s*)?\\n(?\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\\\s+\\n\\\\b(in)\\\\b'\n },\n {include: '#expression'}\n ]\n }\n ]\n },\n 'generic-constraints': {\n begin: '(where)\\\\s+(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*(:)',\n beginCaptures: {\n 1: {name: 'storage.modifier.where.cs'},\n 2: {name: 'entity.name.type.type-parameter.cs'},\n 3: {name: 'punctuation.separator.colon.cs'}\n },\n end: '(?=\\\\{|where|;|=>)',\n patterns: [\n {match: '\\\\bclass\\\\b', name: 'storage.type.class.cs'},\n {match: '\\\\bstruct\\\\b', name: 'storage.type.struct.cs'},\n {match: '\\\\bdefault\\\\b', name: 'keyword.other.constraint.default.cs'},\n {match: '\\\\bnotnull\\\\b', name: 'keyword.other.constraint.notnull.cs'},\n {\n match: '\\\\bunmanaged\\\\b',\n name: 'keyword.other.constraint.unmanaged.cs'\n },\n {\n captures: {\n 1: {name: 'keyword.operator.expression.new.cs'},\n 2: {name: 'punctuation.parenthesis.open.cs'},\n 3: {name: 'punctuation.parenthesis.close.cs'}\n },\n match: '(new)\\\\s*(\\\\()\\\\s*(\\\\))'\n },\n {include: '#type'},\n {include: '#punctuation-comma'},\n {include: '#generic-constraints'}\n ]\n },\n 'goto-statement': {\n begin: '(?\\n (?\\n (?:\\n (?:ref\\\\s+(?:readonly\\\\s+)?)? # ref return\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n )\\\\s+\\n)\\n(?\\\\g\\\\s*\\\\.\\\\s*)?\\n(?this)\\\\s*\\n(?=\\\\[)',\n beginCaptures: {\n 1: {patterns: [{include: '#type'}]},\n 7: {patterns: [{include: '#type'}, {include: '#punctuation-accessor'}]},\n 8: {name: 'variable.language.this.cs'}\n },\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#bracketed-parameter-list'},\n {include: '#property-accessors'},\n {include: '#accessor-getter-expression'},\n {include: '#variable-initializer'}\n ]\n },\n 'initializer-expression': {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [{include: '#expression'}, {include: '#punctuation-comma'}]\n },\n 'interface-declaration': {\n begin: '(?=\\\\binterface\\\\b)',\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {\n begin: '(?x)\\n(interface)\\\\b\\\\s+\\n(@?[_[:alpha:]][_[:alnum:]]*)',\n beginCaptures: {\n 1: {name: 'storage.type.interface.cs'},\n 2: {name: 'entity.name.type.interface.cs'}\n },\n end: '(?=\\\\{)|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#type-parameter-list'},\n {include: '#base-types'},\n {include: '#generic-constraints'}\n ]\n },\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [{include: '#interface-members'}]\n },\n {include: '#preprocessor'},\n {include: '#comment'}\n ]\n },\n 'interface-members': {\n patterns: [\n {include: '#preprocessor'},\n {include: '#comment'},\n {include: '#storage-modifier'},\n {include: '#property-declaration'},\n {include: '#event-declaration'},\n {include: '#indexer-declaration'},\n {include: '#method-declaration'},\n {include: '#operator-declaration'},\n {include: '#attribute-section'},\n {include: '#punctuation-semicolon'}\n ]\n },\n 'interpolated-string': {\n begin: '\\\\$\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '(\")|((?:[^\\\\\\\\\\\\n])$)',\n endCaptures: {\n 1: {name: 'punctuation.definition.string.end.cs'},\n 2: {name: 'invalid.illegal.newline.cs'}\n },\n name: 'string.quoted.double.cs',\n patterns: [\n {include: '#string-character-escape'},\n {include: '#interpolation'}\n ]\n },\n interpolation: {\n begin: '(?<=[^\\\\{]|^)((?:\\\\{\\\\{)*)(\\\\{)(?=[^\\\\{])',\n beginCaptures: {\n 1: {name: 'string.quoted.double.cs'},\n 2: {name: 'punctuation.definition.interpolation.begin.cs'}\n },\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.interpolation.end.cs'}},\n name: 'meta.interpolation.cs',\n patterns: [{include: '#expression'}]\n },\n intrusive: {patterns: [{include: '#preprocessor'}, {include: '#comment'}]},\n 'invocation-expression': {\n begin:\n '(?x)\\n(?:\\n (?:(\\\\?)\\\\s*)? # preceding null-conditional operator?\\n (\\\\.)\\\\s*| # preceding dot?\\n (->)\\\\s* # preceding pointer arrow?\\n)?\\n(@?[_[:alpha:]][_[:alnum:]]*)\\\\s* # method name\\n(\\n <\\n (?\\n [^<>()]|\\n \\\\((?:[^<>()]|<[^<>()]*>|\\\\([^<>()]*\\\\))*\\\\)|\\n <\\\\g*>\\n )*\\n >\\\\s*\\n)? # type arguments\\n(?=\\\\() # open paren of argument list',\n beginCaptures: {\n 1: {name: 'keyword.operator.null-conditional.cs'},\n 2: {name: 'punctuation.accessor.cs'},\n 3: {name: 'punctuation.accessor.pointer.cs'},\n 4: {name: 'entity.name.function.cs'},\n 5: {patterns: [{include: '#type-arguments'}]}\n },\n end: '(?<=\\\\))',\n patterns: [{include: '#argument-list'}]\n },\n 'is-expression': {\n begin: '(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)?\\n\\\\s+(\\\\g)\\\\b\\\\s*\\n\\\\b(in)\\\\b\\\\s*',\n beginCaptures: {\n 1: {name: 'keyword.operator.expression.query.join.cs'},\n 2: {patterns: [{include: '#type'}]},\n 7: {name: 'entity.name.variable.range-variable.cs'},\n 8: {name: 'keyword.operator.expression.query.in.cs'}\n },\n end: '(?=;|\\\\))',\n patterns: [\n {include: '#join-on'},\n {include: '#join-equals'},\n {include: '#join-into'},\n {include: '#query-body'},\n {include: '#expression'}\n ]\n },\n 'join-equals': {\n captures: {1: {name: 'keyword.operator.expression.query.equals.cs'}},\n match: '\\\\b(equals)\\\\b\\\\s*'\n },\n 'join-into': {\n captures: {\n 1: {name: 'keyword.operator.expression.query.into.cs'},\n 2: {name: 'entity.name.variable.range-variable.cs'}\n },\n match: '(?x)\\n\\\\b(into)\\\\b\\\\s*\\n(@?[_[:alpha:]][_[:alnum:]]*)\\\\b\\\\s*'\n },\n 'join-on': {\n captures: {1: {name: 'keyword.operator.expression.query.on.cs'}},\n match: '\\\\b(on)\\\\b\\\\s*'\n },\n 'labeled-statement': {\n captures: {\n 1: {name: 'entity.name.label.cs'},\n 2: {name: 'punctuation.separator.colon.cs'}\n },\n match: '(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*(:)'\n },\n 'language-variable': {\n patterns: [\n {match: '\\\\b(base|this)\\\\b', name: 'variable.language.$1.cs'},\n {match: '\\\\b(value)\\\\b', name: 'variable.other.$1.cs'}\n ]\n },\n 'let-clause': {\n begin:\n '(?x)\\n\\\\b(let)\\\\b\\\\s*\\n(@?[_[:alpha:]][_[:alnum:]]*)\\\\b\\\\s*\\n(=)\\\\s*',\n beginCaptures: {\n 1: {name: 'keyword.operator.expression.query.let.cs'},\n 2: {name: 'entity.name.variable.range-variable.cs'},\n 3: {name: 'keyword.operator.assignment.cs'}\n },\n end: '(?=;|\\\\))',\n patterns: [{include: '#query-body'}, {include: '#expression'}]\n },\n 'list-pattern': {\n begin: '(?=\\\\[)',\n end: '(?=[)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {\n begin: '\\\\[',\n beginCaptures: {0: {name: 'punctuation.squarebracket.open.cs'}},\n end: '\\\\]',\n endCaptures: {0: {name: 'punctuation.squarebracket.close.cs'}},\n patterns: [{include: '#pattern'}, {include: '#punctuation-comma'}]\n },\n {\n begin: '(?<=\\\\])',\n end: '(?=[)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {include: '#intrusive'},\n {include: '#simple-designation-pattern'}\n ]\n }\n ]\n },\n literal: {\n patterns: [\n {include: '#boolean-literal'},\n {include: '#null-literal'},\n {include: '#numeric-literal'},\n {include: '#char-literal'},\n {include: '#raw-string-literal'},\n {include: '#string-literal'},\n {include: '#verbatim-string-literal'},\n {include: '#tuple-literal'}\n ]\n },\n 'local-constant-declaration': {\n begin:\n '(?x)\\n(?\\\\b(?:const)\\\\b)\\\\s*\\n(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\\\s+\\n(\\\\g)\\\\s*\\n(?=,|;|=)',\n beginCaptures: {\n 1: {name: 'storage.modifier.const.cs'},\n 2: {patterns: [{include: '#type'}]},\n 7: {name: 'entity.name.variable.local.cs'}\n },\n end: '(?=;)',\n patterns: [\n {\n match: '@?[_[:alpha:]][_[:alnum:]]*',\n name: 'entity.name.variable.local.cs'\n },\n {include: '#punctuation-comma'},\n {include: '#comment'},\n {include: '#variable-initializer'}\n ]\n },\n 'local-declaration': {\n patterns: [\n {include: '#local-constant-declaration'},\n {include: '#local-variable-declaration'},\n {include: '#local-function-declaration'},\n {include: '#local-tuple-var-deconstruction'}\n ]\n },\n 'local-function-declaration': {\n begin:\n '(?x)\\n\\\\b((?:(?:async|unsafe|static|extern)\\\\s+)*)\\n(?\\n (?:ref\\\\s+(?:readonly\\\\s+)?)? # ref return\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n \\\\s*(?:,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n (?:\\\\s*\\\\?)? # arrays can be nullable reference types\\n )*\\n)\\\\s+\\n(\\\\g)\\\\s*\\n(<[^<>]+>)?\\\\s*\\n(?=\\\\()',\n beginCaptures: {\n 1: {patterns: [{include: '#storage-modifier'}]},\n 2: {patterns: [{include: '#type'}]},\n 7: {name: 'entity.name.function.cs'},\n 8: {patterns: [{include: '#type-parameter-list'}]}\n },\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#parenthesized-parameter-list'},\n {include: '#generic-constraints'},\n {include: '#expression-body'},\n {include: '#block'}\n ]\n },\n 'local-tuple-var-deconstruction': {\n begin:\n '(?x) # e.g. var (x, y) = GetPoint();\\n(?:\\\\b(var)\\\\b\\\\s*)\\n(?\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\\\s*\\n(?=;|=|\\\\))',\n beginCaptures: {\n 1: {name: 'storage.type.var.cs'},\n 2: {\n patterns: [\n {include: '#tuple-declaration-deconstruction-element-list'}\n ]\n }\n },\n end: '(?=;|\\\\))',\n patterns: [{include: '#comment'}, {include: '#variable-initializer'}]\n },\n 'local-variable-declaration': {\n begin:\n '(?x)\\n(?:\\n (?:(\\\\bref)\\\\s+(?:(\\\\breadonly)\\\\s+)?)?(\\\\bvar\\\\b)| # ref local\\n (?\\n (?:\\n (?:ref\\\\s+(?:readonly\\\\s+)?)? # ref local\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*[?*]\\\\s*)? # nullable or pointer suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n )\\n)\\\\s+\\n(\\\\g)\\\\s*\\n(?!=>)\\n(?=,|;|=|\\\\))',\n beginCaptures: {\n 1: {name: 'storage.modifier.ref.cs'},\n 2: {name: 'storage.modifier.readonly.cs'},\n 3: {name: 'storage.type.var.cs'},\n 4: {patterns: [{include: '#type'}]},\n 9: {name: 'entity.name.variable.local.cs'}\n },\n end: '(?=[;)}])',\n patterns: [\n {\n match: '@?[_[:alpha:]][_[:alnum:]]*',\n name: 'entity.name.variable.local.cs'\n },\n {include: '#punctuation-comma'},\n {include: '#comment'},\n {include: '#variable-initializer'}\n ]\n },\n 'lock-statement': {\n begin: '\\\\b(lock)\\\\b',\n beginCaptures: {1: {name: 'keyword.control.context.lock.cs'}},\n end: '(?<=\\\\))|(?=;|})',\n patterns: [\n {include: '#intrusive'},\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [{include: '#intrusive'}, {include: '#expression'}]\n }\n ]\n },\n 'member-access-expression': {\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.operator.null-conditional.cs'},\n 2: {name: 'punctuation.accessor.cs'},\n 3: {name: 'punctuation.accessor.pointer.cs'},\n 4: {name: 'variable.other.object.property.cs'}\n },\n match:\n '(?x)\\n(?:\\n (?:(\\\\?)\\\\s*)? # preceding null-conditional operator?\\n (\\\\.)\\\\s*| # preceding dot?\\n (->)\\\\s* # preceding pointer arrow?\\n)\\n(@?[_[:alpha:]][_[:alnum:]]*)\\\\s* # property name\\n(?![_[:alnum:]]|\\\\(|(\\\\?)?\\\\[|<) # next character is not alpha-numeric, nor a (, [, or <. Also, test for ?['\n },\n {\n captures: {\n 1: {name: 'punctuation.accessor.cs'},\n 2: {name: 'variable.other.object.cs'},\n 3: {patterns: [{include: '#type-arguments'}]}\n },\n match:\n '(?x)\\n(\\\\.)?\\\\s*\\n(@?[_[:alpha:]][_[:alnum:]]*)\\n(?\\\\s*<([^<>]|\\\\g)+>\\\\s*)\\n(?=\\n (\\\\s*\\\\?)?\\n \\\\s*\\\\.\\\\s*@?[_[:alpha:]][_[:alnum:]]*\\n)'\n },\n {\n captures: {1: {name: 'variable.other.object.cs'}},\n match:\n '(?x)\\n(@?[_[:alpha:]][_[:alnum:]]*)\\n(?=\\n \\\\s*(?:(?:\\\\?\\\\s*)?\\\\.|->)\\n \\\\s*@?[_[:alpha:]][_[:alnum:]]*\\n)'\n }\n ]\n },\n 'method-declaration': {\n begin:\n '(?x)\\n(?\\n (?\\n (?:\\n (?:ref\\\\s+(?:readonly\\\\s+)?)? # ref return\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n )\\\\s+\\n)\\n(?\\\\g\\\\s*\\\\.\\\\s*)?\\n(\\\\g)\\\\s*\\n(<([^<>]+)>)?\\\\s*\\n(?=\\\\()',\n beginCaptures: {\n 1: {patterns: [{include: '#type'}]},\n 7: {patterns: [{include: '#type'}, {include: '#punctuation-accessor'}]},\n 8: {name: 'entity.name.function.cs'},\n 9: {patterns: [{include: '#type-parameter-list'}]}\n },\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#parenthesized-parameter-list'},\n {include: '#generic-constraints'},\n {include: '#expression-body'},\n {include: '#block'}\n ]\n },\n 'named-argument': {\n begin: '(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*(:)',\n beginCaptures: {\n 1: {name: 'entity.name.variable.parameter.cs'},\n 2: {name: 'punctuation.separator.colon.cs'}\n },\n end: '(?=(,|\\\\)|\\\\]))',\n patterns: [{include: '#argument'}]\n },\n 'namespace-declaration': {\n begin: '\\\\b(namespace)\\\\s+',\n beginCaptures: {1: {name: 'storage.type.namespace.cs'}},\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {include: '#comment'},\n {\n match: '@?[_[:alpha:]][_[:alnum:]]*',\n name: 'entity.name.type.namespace.cs'\n },\n {include: '#punctuation-accessor'},\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [\n {include: '#declarations'},\n {include: '#using-directive'},\n {include: '#punctuation-semicolon'}\n ]\n }\n ]\n },\n 'null-literal': {\n match: '(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\\\s*\\n(?=\\\\{|//|/\\\\*|$)'\n },\n 'object-creation-expression-with-parameters': {\n begin:\n '(?x)\\n(new)(?:\\\\s+\\n(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n))?\\\\s*\\n(?=\\\\()',\n beginCaptures: {\n 1: {name: 'keyword.operator.expression.new.cs'},\n 2: {patterns: [{include: '#type'}]}\n },\n end: '(?<=\\\\))',\n patterns: [{include: '#argument-list'}]\n },\n 'operator-assignment': {\n match: '(?\\n (?:\\n (?:ref\\\\s+(?:readonly\\\\s+)?)? # ref return\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\\\s*\\n\\\\b(?operator)\\\\b\\\\s*\\n(?[+\\\\-*/%&|\\\\^!=~<>]+|true|false)\\\\s*\\n(?=\\\\()',\n beginCaptures: {\n 1: {patterns: [{include: '#type'}]},\n 6: {name: 'storage.type.operator.cs'},\n 7: {name: 'entity.name.function.cs'}\n },\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#parenthesized-parameter-list'},\n {include: '#expression-body'},\n {include: '#block'}\n ]\n },\n 'orderby-clause': {\n begin: '\\\\b(orderby)\\\\b\\\\s*',\n beginCaptures: {\n 1: {name: 'keyword.operator.expression.query.orderby.cs'}\n },\n end: '(?=;|\\\\))',\n patterns: [\n {include: '#ordering-direction'},\n {include: '#query-body'},\n {include: '#expression'},\n {include: '#punctuation-comma'}\n ]\n },\n 'ordering-direction': {\n captures: {1: {name: 'keyword.operator.expression.query.$1.cs'}},\n match: '\\\\b(ascending|descending)\\\\b'\n },\n parameter: {\n captures: {\n 1: {name: 'storage.modifier.$1.cs'},\n 2: {patterns: [{include: '#type'}]},\n 7: {name: 'entity.name.variable.parameter.cs'}\n },\n match:\n '(?x)\\n(?:(?:\\\\b(ref|params|out|in|this)\\\\b)\\\\s+)?\\n(?\\n (?:\\n (?:ref\\\\s+)? # ref return\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^()]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\\\s+\\n(\\\\g)'\n },\n 'parenthesized-expression': {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [{include: '#expression'}]\n },\n 'parenthesized-parameter-list': {\n begin: '(\\\\()',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '(\\\\))',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [\n {include: '#comment'},\n {include: '#attribute-section'},\n {include: '#parameter'},\n {include: '#punctuation-comma'},\n {include: '#variable-initializer'}\n ]\n },\n pattern: {\n patterns: [\n {include: '#intrusive'},\n {include: '#combinator-pattern'},\n {include: '#discard-pattern'},\n {include: '#constant-pattern'},\n {include: '#relational-pattern'},\n {include: '#var-pattern'},\n {include: '#type-pattern'},\n {include: '#positional-pattern'},\n {include: '#property-pattern'},\n {include: '#list-pattern'},\n {include: '#slice-pattern'}\n ]\n },\n 'positional-pattern': {\n begin: '(?=\\\\()',\n end: '(?=[)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [{include: '#subpattern'}, {include: '#punctuation-comma'}]\n },\n {\n begin: '(?<=\\\\))',\n end: '(?=[)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {include: '#intrusive'},\n {include: '#property-pattern'},\n {include: '#simple-designation-pattern'}\n ]\n }\n ]\n },\n preprocessor: {\n begin: '^\\\\s*(\\\\#)\\\\s*',\n beginCaptures: {1: {name: 'punctuation.separator.hash.cs'}},\n end: '(?<=$)',\n name: 'meta.preprocessor.cs',\n patterns: [\n {include: '#comment'},\n {include: '#preprocessor-define-or-undef'},\n {include: '#preprocessor-if-or-elif'},\n {include: '#preprocessor-else-or-endif'},\n {include: '#preprocessor-warning-or-error'},\n {include: '#preprocessor-region'},\n {include: '#preprocessor-endregion'},\n {include: '#preprocessor-load'},\n {include: '#preprocessor-r'},\n {include: '#preprocessor-line'},\n {include: '#preprocessor-pragma-warning'},\n {include: '#preprocessor-pragma-checksum'}\n ]\n },\n 'preprocessor-define-or-undef': {\n captures: {\n 1: {name: 'keyword.preprocessor.define.cs'},\n 2: {name: 'keyword.preprocessor.undef.cs'},\n 3: {name: 'entity.name.variable.preprocessor.symbol.cs'}\n },\n match: '\\\\b(?:(define)|(undef))\\\\b\\\\s*\\\\b([_[:alpha:]][_[:alnum:]]*)\\\\b'\n },\n 'preprocessor-else-or-endif': {\n captures: {\n 1: {name: 'keyword.preprocessor.else.cs'},\n 2: {name: 'keyword.preprocessor.endif.cs'}\n },\n match: '\\\\b(?:(else)|(endif))\\\\b'\n },\n 'preprocessor-endregion': {\n captures: {1: {name: 'keyword.preprocessor.endregion.cs'}},\n match: '\\\\b(endregion)\\\\b'\n },\n 'preprocessor-expression': {\n patterns: [\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [{include: '#preprocessor-expression'}]\n },\n {\n captures: {\n 1: {name: 'constant.language.boolean.true.cs'},\n 2: {name: 'constant.language.boolean.false.cs'},\n 3: {name: 'entity.name.variable.preprocessor.symbol.cs'}\n },\n match: '\\\\b(?:(true)|(false)|([_[:alpha:]][_[:alnum:]]*))\\\\b'\n },\n {\n captures: {\n 1: {name: 'keyword.operator.comparison.cs'},\n 2: {name: 'keyword.operator.logical.cs'}\n },\n match: '(==|!=)|(\\\\!|&&|\\\\|\\\\|)'\n }\n ]\n },\n 'preprocessor-if-or-elif': {\n begin: '\\\\b(?:(if)|(elif))\\\\b',\n beginCaptures: {\n 1: {name: 'keyword.preprocessor.if.cs'},\n 2: {name: 'keyword.preprocessor.elif.cs'}\n },\n end: '(?=$)',\n patterns: [{include: '#comment'}, {include: '#preprocessor-expression'}]\n },\n 'preprocessor-line': {\n begin: '\\\\b(line)\\\\b',\n beginCaptures: {1: {name: 'keyword.preprocessor.line.cs'}},\n end: '(?=$)',\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.preprocessor.default.cs'},\n 2: {name: 'keyword.preprocessor.hidden.cs'}\n },\n match: '\\\\b(?:(default|hidden))'\n },\n {captures: {0: {name: 'constant.numeric.decimal.cs'}}, match: '[0-9]+'},\n {captures: {0: {name: 'string.quoted.double.cs'}}, match: '\\\\\"[^\"]*\\\\\"'}\n ]\n },\n 'preprocessor-load': {\n begin: '\\\\b(load)\\\\b',\n beginCaptures: {1: {name: 'keyword.preprocessor.load.cs'}},\n end: '(?=$)',\n patterns: [\n {captures: {0: {name: 'string.quoted.double.cs'}}, match: '\\\\\"[^\"]*\\\\\"'}\n ]\n },\n 'preprocessor-pragma-checksum': {\n captures: {\n 1: {name: 'keyword.preprocessor.pragma.cs'},\n 2: {name: 'keyword.preprocessor.checksum.cs'},\n 3: {name: 'string.quoted.double.cs'},\n 4: {name: 'string.quoted.double.cs'},\n 5: {name: 'string.quoted.double.cs'}\n },\n match:\n '\\\\b(pragma)\\\\b\\\\s*\\\\b(checksum)\\\\b\\\\s*(\\\\\"[^\"]*\\\\\")\\\\s*(\\\\\"[^\"]*\\\\\")\\\\s*(\\\\\"[^\"]*\\\\\")'\n },\n 'preprocessor-pragma-warning': {\n captures: {\n 1: {name: 'keyword.preprocessor.pragma.cs'},\n 2: {name: 'keyword.preprocessor.warning.cs'},\n 3: {name: 'keyword.preprocessor.disable.cs'},\n 4: {name: 'keyword.preprocessor.restore.cs'},\n 5: {\n patterns: [\n {\n captures: {0: {name: 'constant.numeric.decimal.cs'}},\n match: '[0-9]+'\n },\n {include: '#punctuation-comma'}\n ]\n }\n },\n match:\n '\\\\b(pragma)\\\\b\\\\s*\\\\b(warning)\\\\b\\\\s*\\\\b(?:(disable)|(restore))\\\\b(\\\\s*[0-9]+(?:\\\\s*,\\\\s*[0-9]+)?)?'\n },\n 'preprocessor-r': {\n begin: '\\\\b(r)\\\\b',\n beginCaptures: {1: {name: 'keyword.preprocessor.r.cs'}},\n end: '(?=$)',\n patterns: [\n {captures: {0: {name: 'string.quoted.double.cs'}}, match: '\\\\\"[^\"]*\\\\\"'}\n ]\n },\n 'preprocessor-region': {\n captures: {\n 1: {name: 'keyword.preprocessor.region.cs'},\n 2: {name: 'string.unquoted.preprocessor.message.cs'}\n },\n match: '\\\\b(region)\\\\b\\\\s*(.*)(?=$)'\n },\n 'preprocessor-warning-or-error': {\n captures: {\n 1: {name: 'keyword.preprocessor.warning.cs'},\n 2: {name: 'keyword.preprocessor.error.cs'},\n 3: {name: 'string.unquoted.preprocessor.message.cs'}\n },\n match: '\\\\b(?:(warning)|(error))\\\\b\\\\s*(.*)(?=$)'\n },\n 'property-accessors': {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [\n {include: '#comment'},\n {include: '#attribute-section'},\n {\n match: '\\\\b(private|protected|internal)\\\\b',\n name: 'storage.modifier.$1.cs'\n },\n {\n begin: '\\\\b(get)\\\\b\\\\s*(?=\\\\{|;|=>|//|/\\\\*|$)',\n beginCaptures: {1: {name: 'storage.type.accessor.$1.cs'}},\n end: '(?<=\\\\}|;)|(?=\\\\})',\n patterns: [{include: '#accessor-getter'}]\n },\n {\n begin: '\\\\b(set|init)\\\\b\\\\s*(?=\\\\{|;|=>|//|/\\\\*|$)',\n beginCaptures: {1: {name: 'storage.type.accessor.$1.cs'}},\n end: '(?<=\\\\}|;)|(?=\\\\})',\n patterns: [{include: '#accessor-setter'}]\n }\n ]\n },\n 'property-declaration': {\n begin:\n \"(?x)\\n\\n# The negative lookahead below ensures that we don't match nested types\\n# or other declarations as properties.\\n(?![[:word:][:space:]]*\\\\b(?:class|interface|struct|enum|event)\\\\b)\\n\\n(?\\n (?\\n (?:\\n (?:ref\\\\s+(?:readonly\\\\s+)?)? # ref return\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n )\\\\s+\\n)\\n(?\\\\g\\\\s*\\\\.\\\\s*)?\\n(?\\\\g)\\\\s*\\n(?=\\\\{|=>|//|/\\\\*|$)\",\n beginCaptures: {\n 1: {patterns: [{include: '#type'}]},\n 7: {patterns: [{include: '#type'}, {include: '#punctuation-accessor'}]},\n 8: {name: 'entity.name.variable.property.cs'}\n },\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#property-accessors'},\n {include: '#accessor-getter-expression'},\n {include: '#variable-initializer'},\n {include: '#class-or-struct-members'}\n ]\n },\n 'property-pattern': {\n begin: '(?={)',\n end: '(?=[)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [{include: '#subpattern'}, {include: '#punctuation-comma'}]\n },\n {\n begin: '(?<=\\\\})',\n end: '(?=[)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {include: '#intrusive'},\n {include: '#simple-designation-pattern'}\n ]\n }\n ]\n },\n 'punctuation-accessor': {match: '\\\\.', name: 'punctuation.accessor.cs'},\n 'punctuation-comma': {match: ',', name: 'punctuation.separator.comma.cs'},\n 'punctuation-semicolon': {\n match: ';',\n name: 'punctuation.terminator.statement.cs'\n },\n 'query-body': {\n patterns: [\n {include: '#let-clause'},\n {include: '#where-clause'},\n {include: '#join-clause'},\n {include: '#orderby-clause'},\n {include: '#select-clause'},\n {include: '#group-clause'}\n ]\n },\n 'query-expression': {\n begin:\n '(?x)\\n\\\\b(from)\\\\b\\\\s*\\n(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)?\\n\\\\s+(\\\\g)\\\\b\\\\s*\\n\\\\b(in)\\\\b\\\\s*',\n beginCaptures: {\n 1: {name: 'keyword.operator.expression.query.from.cs'},\n 2: {patterns: [{include: '#type'}]},\n 7: {name: 'entity.name.variable.range-variable.cs'},\n 8: {name: 'keyword.operator.expression.query.in.cs'}\n },\n end: '(?=;|\\\\))',\n patterns: [{include: '#query-body'}, {include: '#expression'}]\n },\n 'raw-interpolated-string': {\n patterns: [\n {\n include:\n '#raw-interpolated-string-five-or-more-quote-one-or-more-interpolation'\n },\n {\n include:\n '#raw-interpolated-string-three-or-more-quote-three-or-more-interpolation'\n },\n {\n include:\n '#raw-interpolated-string-quadruple-quote-double-interpolation'\n },\n {\n include:\n '#raw-interpolated-string-quadruple-quote-single-interpolation'\n },\n {include: '#raw-interpolated-string-triple-quote-double-interpolation'},\n {include: '#raw-interpolated-string-triple-quote-single-interpolation'}\n ]\n },\n 'raw-interpolated-string-five-or-more-quote-one-or-more-interpolation': {\n begin: '\\\\$+\"\"\"\"\"+',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"\"\"\"\"+',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs'\n },\n 'raw-interpolated-string-quadruple-quote-double-interpolation': {\n begin: '\\\\$\\\\$\"\"\"\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"\"\"\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs',\n patterns: [{include: '#double-raw-interpolation'}]\n },\n 'raw-interpolated-string-quadruple-quote-single-interpolation': {\n begin: '\\\\$\"\"\"\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"\"\"\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs',\n patterns: [{include: '#raw-interpolation'}]\n },\n 'raw-interpolated-string-three-or-more-quote-three-or-more-interpolation': {\n begin: '\\\\$\\\\$\\\\$+\"\"\"+',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"\"\"+',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs'\n },\n 'raw-interpolated-string-triple-quote-double-interpolation': {\n begin: '\\\\$\\\\$\"\"\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"\"\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs',\n patterns: [{include: '#double-raw-interpolation'}]\n },\n 'raw-interpolated-string-triple-quote-single-interpolation': {\n begin: '\\\\$\"\"\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"\"\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs',\n patterns: [{include: '#raw-interpolation'}]\n },\n 'raw-interpolation': {\n begin: '(?<=[^\\\\{]|^)((?:\\\\{)*)(\\\\{)(?=[^\\\\{])',\n beginCaptures: {\n 1: {name: 'string.quoted.double.cs'},\n 2: {name: 'punctuation.definition.interpolation.begin.cs'}\n },\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.interpolation.end.cs'}},\n name: 'meta.interpolation.cs',\n patterns: [{include: '#expression'}]\n },\n 'raw-string-literal': {\n patterns: [\n {include: '#raw-string-literal-more'},\n {include: '#raw-string-literal-quadruple'},\n {include: '#raw-string-literal-triple'}\n ]\n },\n 'raw-string-literal-more': {\n begin: '\"\"\"\"\"+',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"\"\"\"\"+',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs'\n },\n 'raw-string-literal-quadruple': {\n begin: '\"\"\"\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"\"\"\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs'\n },\n 'raw-string-literal-triple': {\n begin: '\"\"\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"\"\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs'\n },\n 'readonly-modifier': {\n match: '\\\\breadonly\\\\b',\n name: 'storage.modifier.readonly.cs'\n },\n 'record-declaration': {\n begin: '(?=\\\\brecord\\\\b)',\n end: '(?<=\\\\})|(?=;)',\n patterns: [\n {\n begin: '(?x)\\n(record)\\\\b\\\\s+\\n(@?[_[:alpha:]][_[:alnum:]]*)',\n beginCaptures: {\n 1: {name: 'storage.type.record.cs'},\n 2: {name: 'entity.name.type.class.cs'}\n },\n end: '(?=\\\\{)|(?=;)',\n patterns: [\n {include: '#comment'},\n {include: '#type-parameter-list'},\n {include: '#parenthesized-parameter-list'},\n {include: '#base-types'},\n {include: '#generic-constraints'}\n ]\n },\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [{include: '#class-or-struct-members'}]\n },\n {include: '#preprocessor'},\n {include: '#comment'}\n ]\n },\n 'ref-modifier': {match: '\\\\bref\\\\b', name: 'storage.modifier.ref.cs'},\n 'relational-pattern': {\n begin: '<=?|>=?',\n beginCaptures: {0: {name: 'keyword.operator.relational.cs'}},\n end: '(?=[)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [{include: '#expression'}]\n },\n 'return-statement': {\n begin: '(?',\n beginCaptures: {0: {name: 'keyword.operator.arrow.cs'}},\n end: '(?=,|})',\n patterns: [{include: '#expression'}]\n },\n {\n begin: '\\\\b(when)\\\\b',\n beginCaptures: {1: {name: 'keyword.control.conditional.when.cs'}},\n end: '(?==>|,|})',\n patterns: [{include: '#case-guard'}]\n },\n {\n begin: '(?!\\\\s)',\n end: '(?=\\\\bwhen\\\\b|=>|,|})',\n patterns: [{include: '#pattern'}]\n }\n ]\n },\n 'switch-label': {\n begin: '\\\\b(case|default)\\\\b',\n beginCaptures: {1: {name: 'keyword.control.conditional.$1.cs'}},\n end: '(:)|(?=})',\n endCaptures: {1: {name: 'punctuation.separator.colon.cs'}},\n patterns: [\n {\n begin: '\\\\b(when)\\\\b',\n beginCaptures: {1: {name: 'keyword.control.conditional.when.cs'}},\n end: '(?=:|})',\n patterns: [{include: '#case-guard'}]\n },\n {\n begin: '(?!\\\\s)',\n end: '(?=\\\\bwhen\\\\b|:|})',\n patterns: [{include: '#pattern'}]\n }\n ]\n },\n 'switch-statement': {\n patterns: [\n {include: '#intrusive'},\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [{include: '#expression'}]\n },\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.curlybrace.open.cs'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.curlybrace.close.cs'}},\n patterns: [{include: '#switch-label'}, {include: '#statement'}]\n }\n ]\n },\n 'switch-statement-or-expression': {\n begin: '(?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\\\s*\\n(?!=>|==)(?==)'\n },\n 'tuple-deconstruction-element-list': {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [\n {include: '#comment'},\n {include: '#tuple-deconstruction-element-list'},\n {include: '#declaration-expression-tuple'},\n {include: '#punctuation-comma'},\n {\n captures: {1: {name: 'variable.other.readwrite.cs'}},\n match: '(?x) # e.g. x\\n(@?[_[:alpha:]][_[:alnum:]]*)\\\\b\\\\s*\\n(?=[,)])'\n }\n ]\n },\n 'tuple-element': {\n captures: {\n 1: {patterns: [{include: '#type'}]},\n 6: {name: 'entity.name.variable.tuple-element.cs'}\n },\n match:\n '(?x)\\n(?\\n (?:\\n (?:\\n (?:(?@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\\\:\\\\:\\\\s*)? # alias-qualification\\n (? # identifier + type arguments (if any)\\n \\\\g\\\\s*\\n (?\\\\s*<(?:[^<>]|\\\\g)+>\\\\s*)?\\n )\\n (?:\\\\s*\\\\.\\\\s*\\\\g)* | # Are there any more names being dotted into?\\n (?\\\\s*\\\\((?:[^\\\\(\\\\)]|\\\\g)+\\\\))\\n )\\n (?:\\\\s*\\\\?\\\\s*)? # nullable suffix?\\n (?:\\\\s* # array suffix?\\n \\\\[\\n (?:\\\\s*,\\\\s*)* # commata for multi-dimensional arrays\\n \\\\]\\n \\\\s*\\n (?:\\\\?)? # arrays can be nullable reference types\\n \\\\s*\\n )*\\n )\\n)\\n(?:(?\\\\g)\\\\b)?'\n },\n 'tuple-literal': {\n begin: '(\\\\()(?=.*[:,])',\n beginCaptures: {1: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [\n {include: '#comment'},\n {include: '#tuple-literal-element'},\n {include: '#expression'},\n {include: '#punctuation-comma'}\n ]\n },\n 'tuple-literal-element': {\n begin: '(?x)\\n(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*\\n(?=:)',\n beginCaptures: {1: {name: 'entity.name.variable.tuple-element.cs'}},\n end: '(:)',\n endCaptures: {0: {name: 'punctuation.separator.colon.cs'}}\n },\n 'tuple-type': {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.open.cs'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [{include: '#tuple-element'}, {include: '#punctuation-comma'}]\n },\n type: {\n patterns: [\n {include: '#comment'},\n {include: '#ref-modifier'},\n {include: '#readonly-modifier'},\n {include: '#tuple-type'},\n {include: '#type-builtin'},\n {include: '#type-name'},\n {include: '#type-arguments'},\n {include: '#type-array-suffix'},\n {include: '#type-nullable-suffix'},\n {include: '#type-pointer-suffix'}\n ]\n },\n 'type-arguments': {\n begin: '<',\n beginCaptures: {\n 0: {name: 'punctuation.definition.typeparameters.begin.cs'}\n },\n end: '>',\n endCaptures: {0: {name: 'punctuation.definition.typeparameters.end.cs'}},\n patterns: [{include: '#type'}, {include: '#punctuation-comma'}]\n },\n 'type-array-suffix': {\n begin: '\\\\[',\n beginCaptures: {0: {name: 'punctuation.squarebracket.open.cs'}},\n end: '\\\\]',\n endCaptures: {0: {name: 'punctuation.squarebracket.close.cs'}},\n patterns: [{include: '#intrusive'}, {include: '#punctuation-comma'}]\n },\n 'type-builtin': {\n captures: {1: {name: 'keyword.type.$1.cs'}},\n match:\n '\\\\b(bool|s?byte|u?short|n?u?int|u?long|float|double|decimal|char|string|object|void|dynamic)\\\\b'\n },\n 'type-declarations': {\n patterns: [\n {include: '#preprocessor'},\n {include: '#comment'},\n {include: '#storage-modifier'},\n {include: '#class-declaration'},\n {include: '#delegate-declaration'},\n {include: '#enum-declaration'},\n {include: '#interface-declaration'},\n {include: '#struct-declaration'},\n {include: '#record-declaration'},\n {include: '#attribute-section'},\n {include: '#punctuation-semicolon'}\n ]\n },\n 'type-name': {\n patterns: [\n {\n captures: {\n 1: {name: 'entity.name.type.alias.cs'},\n 2: {name: 'punctuation.separator.coloncolon.cs'}\n },\n match: '(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*(\\\\:\\\\:)'\n },\n {\n captures: {\n 1: {name: 'entity.name.type.cs'},\n 2: {name: 'punctuation.accessor.cs'}\n },\n match: '(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*(\\\\.)'\n },\n {\n captures: {\n 1: {name: 'punctuation.accessor.cs'},\n 2: {name: 'entity.name.type.cs'}\n },\n match: '(\\\\.)\\\\s*(@?[_[:alpha:]][_[:alnum:]]*)'\n },\n {match: '@?[_[:alpha:]][_[:alnum:]]*', name: 'entity.name.type.cs'}\n ]\n },\n 'type-nullable-suffix': {\n match: '\\\\?',\n name: 'punctuation.separator.question-mark.cs'\n },\n 'type-operator-expression': {\n begin: '\\\\b(default|sizeof|typeof)\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'keyword.operator.expression.$1.cs'},\n 2: {name: 'punctuation.parenthesis.open.cs'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.close.cs'}},\n patterns: [{include: '#type'}]\n },\n 'type-parameter-list': {\n begin: '\\\\<',\n beginCaptures: {\n 0: {name: 'punctuation.definition.typeparameters.begin.cs'}\n },\n end: '\\\\>',\n endCaptures: {0: {name: 'punctuation.definition.typeparameters.end.cs'}},\n patterns: [\n {match: '\\\\b(in|out)\\\\b', name: 'storage.modifier.$1.cs'},\n {\n match: '(@?[_[:alpha:]][_[:alnum:]]*)\\\\b',\n name: 'entity.name.type.type-parameter.cs'\n },\n {include: '#comment'},\n {include: '#punctuation-comma'},\n {include: '#attribute-section'}\n ]\n },\n 'type-pattern': {\n begin: '(?=@?[_[:alpha:]][_[:alnum:]]*)',\n end: '(?=[)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {\n begin: '\\\\G',\n end: '(?!\\\\G[@_[:alpha:]])(?=[\\\\({@_[:alpha:])}\\\\],;:=&|^]|(?:\\\\s|^)\\\\?|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [{include: '#intrusive'}, {include: '#type-subpattern'}]\n },\n {\n begin: '(?=[\\\\({@_[:alpha:]])',\n end: '(?=[)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {include: '#intrusive'},\n {include: '#positional-pattern'},\n {include: '#property-pattern'},\n {include: '#simple-designation-pattern'}\n ]\n }\n ]\n },\n 'type-pointer-suffix': {\n match: '\\\\*',\n name: 'punctuation.separator.asterisk.cs'\n },\n 'type-subpattern': {\n patterns: [\n {include: '#type-builtin'},\n {\n begin: '(@?[_[:alpha:]][_[:alnum:]]*)\\\\s*(::)',\n beginCaptures: {\n 1: {name: 'entity.name.type.alias.cs'},\n 2: {name: 'punctuation.separator.coloncolon.cs'}\n },\n end: '(?<=[_[:alnum:]])|(?=[.<\\\\[\\\\({)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {include: '#intrusive'},\n {\n match: '\\\\@?[_[:alpha:]][_[:alnum:]]*',\n name: 'entity.name.type.cs'\n }\n ]\n },\n {match: '\\\\@?[_[:alpha:]][_[:alnum:]]*', name: 'entity.name.type.cs'},\n {\n begin: '\\\\.',\n beginCaptures: {0: {name: 'punctuation.accessor.cs'}},\n end: '(?<=[_[:alnum:]])|(?=[<\\\\[\\\\({)}\\\\],;:?=&|^]|!=|\\\\b(and|or|when)\\\\b)',\n patterns: [\n {include: '#intrusive'},\n {\n match: '\\\\@?[_[:alpha:]][_[:alnum:]]*',\n name: 'entity.name.type.cs'\n }\n ]\n },\n {include: '#type-arguments'},\n {include: '#type-array-suffix'},\n {match: '(?)',\n beginCaptures: {1: {name: 'keyword.operator.assignment.cs'}},\n end: '(?=[,\\\\)\\\\];}])',\n patterns: [{include: '#ref-modifier'}, {include: '#expression'}]\n },\n 'verbatim-interpolated-string': {\n begin: '(?:\\\\$@|@\\\\$)\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"(?=[^\"])',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs',\n patterns: [\n {include: '#verbatim-string-character-escape'},\n {include: '#interpolation'}\n ]\n },\n 'verbatim-string-character-escape': {\n match: '\"\"',\n name: 'constant.character.escape.cs'\n },\n 'verbatim-string-literal': {\n begin: '@\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\"(?=[^\"])',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs',\n patterns: [{include: '#verbatim-string-character-escape'}]\n },\n 'when-clause': {\n begin: '(?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.unquoted.cdata.cs'\n },\n 'xml-character-entity': {\n patterns: [\n {\n captures: {\n 1: {name: 'punctuation.definition.constant.cs'},\n 3: {name: 'punctuation.definition.constant.cs'}\n },\n match:\n '(?x)\\n(&)\\n(\\n (?:[[:alpha:]:_][[:alnum:]:_.-]*)|\\n (?:\\\\#[[:digit:]]+)|\\n (?:\\\\#x[[:xdigit:]]+)\\n)\\n(;)',\n name: 'constant.character.entity.cs'\n },\n {match: '&', name: 'invalid.illegal.bad-ampersand.cs'}\n ]\n },\n 'xml-comment': {\n begin: '',\n endCaptures: {0: {name: 'punctuation.definition.comment.cs'}},\n name: 'comment.block.cs'\n },\n 'xml-doc-comment': {\n patterns: [\n {include: '#xml-comment'},\n {include: '#xml-character-entity'},\n {include: '#xml-cdata'},\n {include: '#xml-tag'}\n ]\n },\n 'xml-string': {\n patterns: [\n {\n begin: \"\\\\'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: \"\\\\'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.single.cs',\n patterns: [{include: '#xml-character-entity'}]\n },\n {\n begin: '\\\\\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.cs'}},\n end: '\\\\\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.cs'}},\n name: 'string.quoted.double.cs',\n patterns: [{include: '#xml-character-entity'}]\n }\n ]\n },\n 'xml-tag': {\n begin:\n '(?x)\\n()',\n endCaptures: {1: {name: 'punctuation.definition.tag.cs'}},\n name: 'meta.tag.cs',\n patterns: [{include: '#xml-attribute'}]\n },\n 'yield-break-statement': {\n captures: {\n 1: {name: 'keyword.control.flow.yield.cs'},\n 2: {name: 'keyword.control.flow.break.cs'}\n },\n match: '(?\n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.css'],\n names: ['css'],\n patterns: [\n {include: '#comment-block'},\n {include: '#escapes'},\n {include: '#combinators'},\n {include: '#selector'},\n {include: '#at-rules'},\n {include: '#rule-list'}\n ],\n repository: {\n 'at-rules': {\n patterns: [\n {\n begin: '\\\\A(?:\\\\xEF\\\\xBB\\\\xBF)?(?i:(?=\\\\s*@charset\\\\b))',\n end: ';|(?=$)',\n endCaptures: {0: {name: 'punctuation.terminator.rule.css'}},\n name: 'meta.at-rule.charset.css',\n patterns: [\n {\n captures: {\n 1: {name: 'invalid.illegal.not-lowercase.charset.css'},\n 2: {name: 'invalid.illegal.leading-whitespace.charset.css'},\n 3: {name: 'invalid.illegal.no-whitespace.charset.css'},\n 4: {name: 'invalid.illegal.whitespace.charset.css'},\n 5: {name: 'invalid.illegal.not-double-quoted.charset.css'},\n 6: {name: 'invalid.illegal.unclosed-string.charset.css'},\n 7: {name: 'invalid.illegal.unexpected-characters.charset.css'}\n },\n match:\n '(?x) # Possible errors:\\n\\\\G\\n((?!@charset)@\\\\w+) # Not lowercase (@charset is case-sensitive)\\n|\\n\\\\G(\\\\s+) # Preceding whitespace\\n|\\n(@charset\\\\S[^;]*) # No whitespace after @charset\\n|\\n(?<=@charset) # Before quoted charset name\\n(\\\\x20{2,}|\\\\t+) # More than one space used, or a tab\\n|\\n(?<=@charset\\\\x20) # Beginning of charset name\\n([^\";]+) # Not double-quoted\\n|\\n(\"[^\"]+$) # Unclosed quote\\n|\\n(?<=\") # After charset name\\n([^;]+) # Unexpected junk instead of semicolon'\n },\n {\n captures: {\n 1: {name: 'keyword.control.at-rule.charset.css'},\n 2: {name: 'punctuation.definition.keyword.css'}\n },\n match: '((@)charset)(?=\\\\s)'\n },\n {\n begin: '\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.css'}\n },\n end: '\"|$',\n endCaptures: {0: {name: 'punctuation.definition.string.end.css'}},\n name: 'string.quoted.double.css',\n patterns: [\n {\n begin: '(?:\\\\G|^)(?=(?:[^\"])+$)',\n end: '$',\n name: 'invalid.illegal.unclosed.string.css'\n }\n ]\n }\n ]\n },\n {\n begin: '(?i)((@)import)(?:\\\\s+|$|(?=[\\'\"]|/\\\\*))',\n beginCaptures: {\n 1: {name: 'keyword.control.at-rule.import.css'},\n 2: {name: 'punctuation.definition.keyword.css'}\n },\n end: ';',\n endCaptures: {0: {name: 'punctuation.terminator.rule.css'}},\n name: 'meta.at-rule.import.css',\n patterns: [\n {\n begin: '\\\\G\\\\s*(?=/\\\\*)',\n end: '(?<=\\\\*/)\\\\s*',\n patterns: [{include: '#comment-block'}]\n },\n {include: '#string'},\n {include: '#url'},\n {include: '#media-query-list'}\n ]\n },\n {\n begin: '(?i)((@)font-face)(?=\\\\s*|{|/\\\\*|$)',\n beginCaptures: {\n 1: {name: 'keyword.control.at-rule.font-face.css'},\n 2: {name: 'punctuation.definition.keyword.css'}\n },\n end: '(?!\\\\G)',\n name: 'meta.at-rule.font-face.css',\n patterns: [\n {include: '#comment-block'},\n {include: '#escapes'},\n {include: '#rule-list'}\n ]\n },\n {\n begin: '(?i)(@)page(?=[\\\\s:{]|/\\\\*|$)',\n captures: {\n 0: {name: 'keyword.control.at-rule.page.css'},\n 1: {name: 'punctuation.definition.keyword.css'}\n },\n end: '(?=\\\\s*($|[:{;]))',\n name: 'meta.at-rule.page.css',\n patterns: [{include: '#rule-list'}]\n },\n {\n begin: '(?i)(?=@media(\\\\s|\\\\(|/\\\\*|$))',\n end: '(?<=})(?!\\\\G)',\n patterns: [\n {\n begin: '(?i)\\\\G(@)media',\n beginCaptures: {\n 0: {name: 'keyword.control.at-rule.media.css'},\n 1: {name: 'punctuation.definition.keyword.css'}\n },\n end: '(?=\\\\s*[{;])',\n name: 'meta.at-rule.media.header.css',\n patterns: [{include: '#media-query-list'}]\n },\n {\n begin: '{',\n beginCaptures: {\n 0: {name: 'punctuation.section.media.begin.bracket.curly.css'}\n },\n end: '}',\n endCaptures: {\n 0: {name: 'punctuation.section.media.end.bracket.curly.css'}\n },\n name: 'meta.at-rule.media.body.css',\n patterns: [{include: '$self'}]\n }\n ]\n },\n {\n begin: '(?i)(?=@counter-style([\\\\s\\'\"{;]|/\\\\*|$))',\n end: '(?<=})(?!\\\\G)',\n patterns: [\n {\n begin: '(?i)\\\\G(@)counter-style',\n beginCaptures: {\n 0: {name: 'keyword.control.at-rule.counter-style.css'},\n 1: {name: 'punctuation.definition.keyword.css'}\n },\n end: '(?=\\\\s*{)',\n name: 'meta.at-rule.counter-style.header.css',\n patterns: [\n {include: '#comment-block'},\n {include: '#escapes'},\n {\n captures: {0: {patterns: [{include: '#escapes'}]}},\n match:\n '(?x)\\n(?:[-a-zA-Z_] | [^\\\\x00-\\\\x7F]) # First letter\\n(?:[-a-zA-Z0-9_] | [^\\\\x00-\\\\x7F] # Remainder of identifier\\n |\\\\\\\\(?:[0-9a-fA-F]{1,6}|.)\\n)*',\n name: 'variable.parameter.style-name.css'\n }\n ]\n },\n {\n begin: '{',\n beginCaptures: {\n 0: {\n name: 'punctuation.section.property-list.begin.bracket.curly.css'\n }\n },\n end: '}',\n endCaptures: {\n 0: {\n name: 'punctuation.section.property-list.end.bracket.curly.css'\n }\n },\n name: 'meta.at-rule.counter-style.body.css',\n patterns: [\n {include: '#comment-block'},\n {include: '#escapes'},\n {include: '#rule-list-innards'}\n ]\n }\n ]\n },\n {\n begin: '(?i)(?=@document([\\\\s\\'\"{;]|/\\\\*|$))',\n end: '(?<=})(?!\\\\G)',\n patterns: [\n {\n begin: '(?i)\\\\G(@)document',\n beginCaptures: {\n 0: {name: 'keyword.control.at-rule.document.css'},\n 1: {name: 'punctuation.definition.keyword.css'}\n },\n end: '(?=\\\\s*[{;])',\n name: 'meta.at-rule.document.header.css',\n patterns: [\n {\n begin: '(?i)(?>>', name: 'invalid.deprecated.combinator.css'},\n {match: '>>|>|\\\\+|~', name: 'keyword.operator.combinator.css'}\n ]\n },\n commas: {match: ',', name: 'punctuation.separator.list.comma.css'},\n 'comment-block': {\n begin: '/\\\\*',\n beginCaptures: {0: {name: 'punctuation.definition.comment.begin.css'}},\n end: '\\\\*/',\n endCaptures: {0: {name: 'punctuation.definition.comment.end.css'}},\n name: 'comment.block.css'\n },\n escapes: {\n patterns: [\n {\n match: '\\\\\\\\[0-9a-fA-F]{1,6}',\n name: 'constant.character.escape.codepoint.css'\n },\n {\n begin: '\\\\\\\\$\\\\s*',\n end: '^(?<:=]|\\\\)|/\\\\*) # Terminates cleanly'\n },\n 'media-query': {\n begin: '\\\\G',\n end: '(?=\\\\s*[{;])',\n patterns: [\n {include: '#comment-block'},\n {include: '#escapes'},\n {include: '#media-types'},\n {\n match: '(?i)(?<=\\\\s|^|,|\\\\*/)(only|not)(?=\\\\s|{|/\\\\*|$)',\n name: 'keyword.operator.logical.$1.media.css'\n },\n {\n match: '(?i)(?<=\\\\s|^|\\\\*/|\\\\))and(?=\\\\s|/\\\\*|$)',\n name: 'keyword.operator.logical.and.media.css'\n },\n {\n match: ',(?:(?:\\\\s*,)+|(?=\\\\s*[;){]))',\n name: 'invalid.illegal.comma.css'\n },\n {include: '#commas'},\n {\n begin: '\\\\(',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.parameters.begin.bracket.round.css'\n }\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.parameters.end.bracket.round.css'}\n },\n patterns: [\n {include: '#media-features'},\n {include: '#media-feature-keywords'},\n {match: ':', name: 'punctuation.separator.key-value.css'},\n {match: '>=|<=|=|<|>', name: 'keyword.operator.comparison.css'},\n {\n captures: {\n 1: {name: 'constant.numeric.css'},\n 2: {name: 'keyword.operator.arithmetic.css'},\n 3: {name: 'constant.numeric.css'}\n },\n match: '(\\\\d+)\\\\s*(/)\\\\s*(\\\\d+)',\n name: 'meta.ratio.css'\n },\n {include: '#numeric-values'},\n {include: '#comment-block'}\n ]\n }\n ]\n },\n 'media-query-list': {\n begin: '(?=\\\\s*[^{;])',\n end: '(?=\\\\s*[{;])',\n patterns: [{include: '#media-query'}]\n },\n 'media-types': {\n captures: {\n 1: {name: 'support.constant.media.css'},\n 2: {name: 'invalid.deprecated.constant.media.css'}\n },\n match:\n '(?xi)\\n(?<=^|\\\\s|,|\\\\*/)\\n(?:\\n # Valid media types\\n (all|print|screen|speech)\\n |\\n # Deprecated in Media Queries 4: http://dev.w3.org/csswg/mediaqueries/#media-types\\n (aural|braille|embossed|handheld|projection|tty|tv)\\n)\\n(?=$|[{,\\\\s;]|/\\\\*)'\n },\n 'numeric-values': {\n patterns: [\n {\n captures: {1: {name: 'punctuation.definition.constant.css'}},\n match: '(#)(?:[0-9a-fA-F]{3,4}|[0-9a-fA-F]{6}|[0-9a-fA-F]{8})\\\\b',\n name: 'constant.other.color.rgb-value.hex.css'\n },\n {\n captures: {\n 1: {name: 'keyword.other.unit.percentage.css'},\n 2: {name: 'keyword.other.unit.${2:/downcase}.css'}\n },\n match:\n '(?xi) (?+~|] # - Followed by another selector\\n | /\\\\* # - Followed by a block comment\\n )\\n |\\n # Name contains unescaped ASCII symbol\\n (?: # Check for acceptable preceding characters\\n [-a-zA-Z_0-9]|[^\\\\x00-\\\\x7F] # - Valid selector character\\n | \\\\\\\\(?:[0-9a-fA-F]{1,6}|.) # - Escape sequence\\n )*\\n (?: # Invalid punctuation\\n [!\"\\'%&(*;+~|] # - Another selector\\n | /\\\\* # - A block comment\\n)',\n name: 'entity.other.attribute-name.class.css'\n },\n {\n captures: {\n 1: {name: 'punctuation.definition.entity.css'},\n 2: {patterns: [{include: '#escapes'}]}\n },\n match:\n '(?x)\\n(\\\\#)\\n(\\n -?\\n (?![0-9])\\n (?:[-a-zA-Z0-9_]|[^\\\\x00-\\\\x7F]|\\\\\\\\(?:[0-9a-fA-F]{1,6}|.))+\\n)\\n(?=$|[\\\\s,.\\\\#)\\\\[:{>+~|]|/\\\\*)',\n name: 'entity.other.attribute-name.id.css'\n },\n {\n begin: '\\\\[',\n beginCaptures: {\n 0: {name: 'punctuation.definition.entity.begin.bracket.square.css'}\n },\n end: '\\\\]',\n endCaptures: {\n 0: {name: 'punctuation.definition.entity.end.bracket.square.css'}\n },\n name: 'meta.attribute-selector.css',\n patterns: [\n {include: '#comment-block'},\n {include: '#string'},\n {\n captures: {1: {name: 'storage.modifier.ignore-case.css'}},\n match: '(?<=[\"\\'\\\\s]|^|\\\\*/)\\\\s*([iI])\\\\s*(?=[\\\\s\\\\]]|/\\\\*|$)'\n },\n {\n captures: {\n 1: {\n name: 'string.unquoted.attribute-value.css',\n patterns: [{include: '#escapes'}]\n }\n },\n match: '(?x)(?<==)\\\\s*((?!/\\\\*)(?:[^\\\\\\\\\"\\'\\\\s\\\\]]|\\\\\\\\.)+)'\n },\n {include: '#escapes'},\n {match: '[~|^$*]?=', name: 'keyword.operator.pattern.css'},\n {match: '\\\\|', name: 'punctuation.separator.css'},\n {\n captures: {\n 1: {\n name: 'entity.other.namespace-prefix.css',\n patterns: [{include: '#escapes'}]\n }\n },\n match:\n \"(?x)\\n# Qualified namespace prefix\\n( -?(?!\\\\d)(?:[\\\\w-]|[^\\\\x00-\\\\x7F]|\\\\\\\\(?:[0-9a-fA-F]{1,6}|.))+\\n| \\\\*\\n)\\n# Lookahead to ensure there's a valid identifier ahead\\n(?=\\n \\\\| (?!\\\\s|=|$|\\\\])\\n (?: -?(?!\\\\d)\\n | [\\\\\\\\\\\\w-]\\n | [^\\\\x00-\\\\x7F]\\n )\\n)\"\n },\n {\n captures: {\n 1: {\n name: 'entity.other.attribute-name.css',\n patterns: [{include: '#escapes'}]\n }\n },\n match:\n '(?x)\\n(-?(?!\\\\d)(?>[\\\\w-]|[^\\\\x00-\\\\x7F]|\\\\\\\\(?:[0-9a-fA-F]{1,6}|.))+)\\n\\\\s*\\n(?=[~|^\\\\]$*=]|/\\\\*)'\n }\n ]\n },\n {include: '#pseudo-classes'},\n {include: '#pseudo-elements'},\n {include: '#functional-pseudo-classes'},\n {\n match:\n '(?x) (?\\\\s,.\\\\#|){:\\\\[]|/\\\\*|$)',\n name: 'entity.name.tag.css'\n },\n 'unicode-range': {\n captures: {\n 0: {name: 'constant.other.unicode-range.css'},\n 1: {name: 'punctuation.separator.dash.unicode-range.css'}\n },\n match:\n '(?\n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n dependencies: ['source.css'],\n extensions: ['.less'],\n names: ['less', 'less-css'],\n patterns: [\n {include: '#strings'},\n {\n captures: {1: {name: 'entity.other.attribute-name.class.mixin.css'}},\n match: '(\\\\.[_a-zA-Z][a-zA-Z0-9_-]*(?=\\\\())'\n },\n {\n captures: {\n 1: {name: 'entity.other.attribute-name.class.css'},\n 2: {name: 'punctuation.definition.entity.css'},\n 4: {name: 'variable.other.interpolation.less'}\n },\n match: '((\\\\.)([_a-zA-Z]|(@{[a-zA-Z0-9_-]+}))[a-zA-Z0-9_-]*)'\n },\n {\n captures: {\n 0: {name: 'entity.other.attribute-name.parent-selector.css'},\n 1: {name: 'punctuation.definition.entity.css'}\n },\n match: '(&)[a-zA-Z0-9_-]*'\n },\n {\n begin: '(format|local|url|attr|counter|counters)\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'support.function.misc.css'},\n 2: {name: 'punctuation.section.function.css'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.section.function.css'}},\n patterns: [\n {\n begin: \"'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.css'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.css'}},\n name: 'string.quoted.single.css',\n patterns: [{match: '\\\\\\\\.', name: 'constant.character.escape.css'}]\n },\n {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.css'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.css'}},\n name: 'string.quoted.double.css',\n patterns: [\n {match: '\\\\\\\\(\\\\d{1,6}|.)', name: 'constant.character.escape.css'}\n ]\n },\n {match: '[^\\'\") \\\\t]+', name: 'variable.parameter.misc.css'}\n ]\n },\n {\n match: '(#)([0-9a-fA-F]{3}|[0-9a-fA-F]{6})\\\\b(?!.*?(?([\\'\"])(?:[^\\\\\\\\]|\\\\\\\\.)*?(\\\\6)))))?\\\\s*(\\\\])',\n name: 'meta.attribute-selector.css'\n },\n {\n begin: '((@)import\\\\b)',\n beginCaptures: {\n 1: {name: 'keyword.control.at-rule.import.less'},\n 2: {name: 'punctuation.definition.keyword.less'}\n },\n end: ';',\n endCaptures: {0: {name: 'punctuation.terminator.rule.css'}},\n name: 'meta.at-rule.import.css',\n patterns: [\n {\n match:\n '(?<=\\\\(|,|\\\\s)\\\\b(reference|optional|once|multiple|less|inline)\\\\b(?=\\\\)|,)',\n name: 'keyword.control.import.option.less'\n },\n {include: '#brace_round'},\n {include: 'source.css#commas'},\n {include: '#strings'}\n ]\n },\n {\n captures: {\n 1: {name: 'keyword.control.at-rule.fontface.css'},\n 2: {name: 'punctuation.definition.keyword.css'}\n },\n match: '^\\\\s*((@)font-face\\\\b)',\n name: 'meta.at-rule.fontface.css'\n },\n {\n captures: {\n 1: {name: 'keyword.control.at-rule.media.css'},\n 2: {name: 'punctuation.definition.keyword.css'}\n },\n match: '^\\\\s*((@)media\\\\b)',\n name: 'meta.at-rule.media.css'\n },\n {include: 'source.css#media-features'},\n {\n match:\n '\\\\b(tv|tty|screen|projection|print|handheld|embossed|braille|aural|all)\\\\b',\n name: 'support.constant.media-type.media.css'\n },\n {\n match: '\\\\b(portrait|landscape)\\\\b',\n name: 'support.constant.property-value.media-property.media.css'\n },\n {\n captures: {1: {name: 'support.function.less'}},\n match: '(\\\\.[a-zA-Z0-9_-]+)\\\\s*(;|\\\\()'\n },\n {\n begin: '(^[ \\\\t]+)?(?=//)',\n beginCaptures: {1: {name: 'punctuation.whitespace.comment.leading.less'}},\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '//',\n beginCaptures: {0: {name: 'punctuation.definition.comment.less'}},\n end: '\\\\n',\n name: 'comment.line.double-slash.less'\n }\n ]\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.less'}},\n match: '(@|\\\\-\\\\-)[\\\\w-]+(?=\\\\s*)',\n name: 'variable.other.less'\n },\n {include: '#variable_interpolation'},\n {\n begin: '{',\n beginCaptures: {\n 0: {name: 'punctuation.section.property-list.begin.bracket.curly.css'}\n },\n end: '}',\n endCaptures: {\n 0: {name: 'punctuation.section.property-list.end.bracket.curly.css'}\n },\n name: 'meta.property-list.css',\n patterns: [\n {include: 'source.css#pseudo-elements'},\n {include: 'source.css#pseudo-classes'},\n {include: 'source.css#tag-names'},\n {include: 'source.css#commas'},\n {include: '#variable_interpolation'},\n {include: 'source.css#property-names'},\n {include: '#property_values'},\n {include: '$self'}\n ]\n },\n {match: '\\\\!\\\\s*important', name: 'keyword.other.important.css'},\n {match: '\\\\*|\\\\/|\\\\-|\\\\+|~|=|<=|>=|<|>', name: 'keyword.operator.less'},\n {\n match: '\\\\b(not|and|when)\\\\b',\n name: 'keyword.control.logical.operator.less'\n },\n {include: 'source.css#tag-names'},\n {\n match: '(?\n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n dependencies: ['source.css'],\n extensions: ['.scss'],\n names: ['scss'],\n patterns: [\n {include: '#variable_setting'},\n {include: '#at_rule_forward'},\n {include: '#at_rule_use'},\n {include: '#at_rule_include'},\n {include: '#at_rule_import'},\n {include: '#general'},\n {include: '#flow_control'},\n {include: '#rules'},\n {include: '#property_list'},\n {include: '#at_rule_mixin'},\n {include: '#at_rule_media'},\n {include: '#at_rule_function'},\n {include: '#at_rule_charset'},\n {include: '#at_rule_option'},\n {include: '#at_rule_namespace'},\n {include: '#at_rule_fontface'},\n {include: '#at_rule_page'},\n {include: '#at_rule_keyframes'},\n {include: '#at_rule_at_root'},\n {include: '#at_rule_supports'},\n {match: ';', name: 'punctuation.terminator.rule.css'}\n ],\n repository: {\n at_rule_at_root: {\n begin: '\\\\s*((@)(at-root))(\\\\s+|$)',\n beginCaptures: {\n 1: {name: 'keyword.control.at-rule.at-root.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*(?={)',\n name: 'meta.at-rule.at-root.scss',\n patterns: [\n {include: '#function_attributes'},\n {include: '#functions'},\n {include: '#selectors'}\n ]\n },\n at_rule_charset: {\n begin: '\\\\s*((@)charset\\\\b)\\\\s*',\n captures: {\n 1: {name: 'keyword.control.at-rule.charset.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*((?=;|$))',\n name: 'meta.at-rule.charset.scss',\n patterns: [\n {include: '#variable'},\n {include: '#string_single'},\n {include: '#string_double'}\n ]\n },\n at_rule_content: {\n begin: '\\\\s*((@)content\\\\b)\\\\s*',\n captures: {1: {name: 'keyword.control.content.scss'}},\n end: '\\\\s*((?=;))',\n name: 'meta.content.scss',\n patterns: [\n {include: '#variable'},\n {include: '#selectors'},\n {include: '#property_values'}\n ]\n },\n at_rule_each: {\n begin: '\\\\s*((@)each\\\\b)\\\\s*',\n captures: {\n 1: {name: 'keyword.control.each.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*((?=}))',\n name: 'meta.at-rule.each.scss',\n patterns: [\n {match: '\\\\b(in|,)\\\\b', name: 'keyword.control.operator'},\n {include: '#variable'},\n {include: '#property_values'},\n {include: '$self'}\n ]\n },\n at_rule_else: {\n begin: '\\\\s*((@)else(\\\\s*(if)?))\\\\s*',\n captures: {\n 1: {name: 'keyword.control.else.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*(?={)',\n name: 'meta.at-rule.else.scss',\n patterns: [\n {include: '#conditional_operators'},\n {include: '#variable'},\n {include: '#property_values'}\n ]\n },\n at_rule_extend: {\n begin: '\\\\s*((@)extend\\\\b)\\\\s*',\n captures: {\n 1: {name: 'keyword.control.at-rule.extend.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*(?=;)',\n name: 'meta.at-rule.extend.scss',\n patterns: [\n {include: '#variable'},\n {include: '#selectors'},\n {include: '#property_values'}\n ]\n },\n at_rule_fontface: {\n patterns: [\n {\n begin: '^\\\\s*((@)font-face\\\\b)',\n beginCaptures: {\n 1: {name: 'keyword.control.at-rule.fontface.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*(?={)',\n name: 'meta.at-rule.fontface.scss',\n patterns: [{include: '#function_attributes'}]\n }\n ]\n },\n at_rule_for: {\n begin: '\\\\s*((@)for\\\\b)\\\\s*',\n captures: {\n 1: {name: 'keyword.control.for.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*(?={)',\n name: 'meta.at-rule.for.scss',\n patterns: [\n {\n match: '(==|!=|<=|>=|<|>|from|to|through)',\n name: 'keyword.control.operator'\n },\n {include: '#variable'},\n {include: '#property_values'},\n {include: '$self'}\n ]\n },\n at_rule_forward: {\n begin: '\\\\s*((@)forward\\\\b)\\\\s*',\n captures: {\n 1: {name: 'keyword.control.at-rule.forward.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*(?=;)',\n name: 'meta.at-rule.forward.scss',\n patterns: [\n {match: '\\\\b(as|hide|show)\\\\b', name: 'keyword.control.operator'},\n {\n captures: {\n 1: {name: 'entity.other.attribute-name.module.scss'},\n 2: {name: 'punctuation.definition.wildcard.scss'}\n },\n match: '\\\\b([\\\\w-]+)(\\\\*)'\n },\n {match: '\\\\b[\\\\w-]+\\\\b', name: 'entity.name.function.scss'},\n {include: '#variable'},\n {include: '#string_single'},\n {include: '#string_double'},\n {include: '#comment_line'},\n {include: '#comment_block'}\n ]\n },\n at_rule_function: {\n patterns: [\n {\n begin: '\\\\s*((@)function\\\\b)\\\\s*',\n captures: {\n 1: {name: 'keyword.control.at-rule.function.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'},\n 3: {name: 'entity.name.function.scss'}\n },\n end: '\\\\s*(?={)',\n name: 'meta.at-rule.function.scss',\n patterns: [{include: '#function_attributes'}]\n },\n {\n captures: {\n 1: {name: 'keyword.control.at-rule.function.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'},\n 3: {name: 'entity.name.function.scss'}\n },\n match: '\\\\s*((@)function\\\\b)\\\\s*',\n name: 'meta.at-rule.function.scss'\n }\n ]\n },\n at_rule_if: {\n begin: '\\\\s*((@)if\\\\b)\\\\s*',\n captures: {\n 1: {name: 'keyword.control.if.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*(?={)',\n name: 'meta.at-rule.if.scss',\n patterns: [\n {include: '#conditional_operators'},\n {include: '#variable'},\n {include: '#property_values'}\n ]\n },\n at_rule_import: {\n begin: '\\\\s*((@)import\\\\b)\\\\s*',\n captures: {\n 1: {name: 'keyword.control.at-rule.import.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*((?=;)|(?=}))',\n name: 'meta.at-rule.import.scss',\n patterns: [\n {include: '#variable'},\n {include: '#string_single'},\n {include: '#string_double'},\n {include: '#functions'},\n {include: '#comment_line'}\n ]\n },\n at_rule_include: {\n patterns: [\n {\n begin: '(?<=@include)\\\\s+(?:([\\\\w-]+)\\\\s*(\\\\.))?([\\\\w-]+)\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'variable.scss'},\n 2: {name: 'punctuation.access.module.scss'},\n 3: {name: 'entity.name.function.scss'},\n 4: {\n name: 'punctuation.definition.parameters.begin.bracket.round.scss'\n }\n },\n end: '\\\\)',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.parameters.end.bracket.round.scss'\n }\n },\n name: 'meta.at-rule.include.scss',\n patterns: [{include: '#function_attributes'}]\n },\n {\n captures: {\n 0: {name: 'meta.at-rule.include.scss'},\n 1: {name: 'variable.scss'},\n 2: {name: 'punctuation.access.module.scss'},\n 3: {name: 'entity.name.function.scss'}\n },\n match: '(?<=@include)\\\\s+(?:([\\\\w-]+)\\\\s*(\\\\.))?([\\\\w-]+)'\n },\n {\n captures: {\n 0: {name: 'meta.at-rule.include.scss'},\n 1: {name: 'keyword.control.at-rule.include.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n match: '((@)include)\\\\b'\n }\n ]\n },\n at_rule_keyframes: {\n begin: '(?<=^|\\\\s)(@)(?:-(?:webkit|moz)-)?keyframes\\\\b',\n beginCaptures: {\n 0: {name: 'keyword.control.at-rule.keyframes.scss'},\n 1: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '(?<=})',\n name: 'meta.at-rule.keyframes.scss',\n patterns: [\n {\n captures: {1: {name: 'entity.name.function.scss'}},\n match: '(?<=@keyframes)\\\\s+((?:[_A-Za-z][-\\\\w]|-[_A-Za-z])[-\\\\w]*)'\n },\n {\n begin: '(?<=@keyframes)\\\\s+(\")',\n beginCaptures: {\n 1: {name: 'punctuation.definition.string.begin.scss'}\n },\n contentName: 'entity.name.function.scss',\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.scss'}},\n name: 'string.quoted.double.scss',\n patterns: [\n {\n match: '\\\\\\\\([[:xdigit:]]{1,6}|.)',\n name: 'constant.character.escape.scss'\n },\n {include: '#interpolation'}\n ]\n },\n {\n begin: \"(?<=@keyframes)\\\\s+(')\",\n beginCaptures: {\n 1: {name: 'punctuation.definition.string.begin.scss'}\n },\n contentName: 'entity.name.function.scss',\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.scss'}},\n name: 'string.quoted.single.scss',\n patterns: [\n {\n match: '\\\\\\\\([[:xdigit:]]{1,6}|.)',\n name: 'constant.character.escape.scss'\n },\n {include: '#interpolation'}\n ]\n },\n {\n begin: '{',\n beginCaptures: {\n 0: {name: 'punctuation.section.keyframes.begin.scss'}\n },\n end: '}',\n endCaptures: {0: {name: 'punctuation.section.keyframes.end.scss'}},\n patterns: [\n {\n match: '\\\\b(?:(?:100|[1-9]\\\\d|\\\\d)%|from|to)(?=\\\\s*{)',\n name: 'entity.other.attribute-name.scss'\n },\n {include: '#flow_control'},\n {include: '#interpolation'},\n {include: '#property_list'},\n {include: '#rules'}\n ]\n }\n ]\n },\n at_rule_media: {\n patterns: [\n {\n begin: '^\\\\s*((@)media)\\\\b',\n beginCaptures: {\n 1: {name: 'keyword.control.at-rule.media.scss'},\n 2: {name: 'punctuation.definition.keyword.scss'}\n },\n end: '\\\\s*(?={)',\n name: 'meta.at-rule.media.scss',\n patterns: [\n {include: '#comment_docblock'},\n {include: '#comment_block'},\n {include: '#comment_line'},\n {match: '\\\\b(only)\\\\b', name: 'keyword.control.operator.css.scss'},\n {\n begin: '\\\\(',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.media-query.begin.bracket.round.scss'\n }\n },\n end: '\\\\)',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.media-query.end.bracket.round.scss'\n }\n },\n name: 'meta.property-list.media-query.scss',\n patterns: [\n {\n begin: '(?=|<|>',\n name: 'keyword.operator.comparison.scss'\n },\n conditional_operators: {\n patterns: [\n {include: '#comparison_operators'},\n {include: '#logical_operators'}\n ]\n },\n constant_default: {match: '!default', name: 'keyword.other.default.scss'},\n constant_functions: {\n begin: '(?:([\\\\w-]+)(\\\\.))?([\\\\w-]+)(\\\\()',\n beginCaptures: {\n 1: {name: 'variable.scss'},\n 2: {name: 'punctuation.access.module.scss'},\n 3: {name: 'support.function.misc.scss'},\n 4: {name: 'punctuation.section.function.scss'}\n },\n end: '(\\\\))',\n endCaptures: {1: {name: 'punctuation.section.function.scss'}},\n patterns: [{include: '#parameters'}]\n },\n constant_important: {\n match: '!important',\n name: 'keyword.other.important.scss'\n },\n constant_mathematical_symbols: {\n match: '\\\\b(\\\\+|-|\\\\*|/)\\\\b',\n name: 'support.constant.mathematical-symbols.scss'\n },\n constant_optional: {\n match: '!optional',\n name: 'keyword.other.optional.scss'\n },\n constant_sass_functions: {\n begin:\n '(headings|stylesheet-url|rgba?|hsla?|ie-hex-str|red|green|blue|alpha|opacity|hue|saturation|lightness|prefixed|prefix|-moz|-svg|-css2|-pie|-webkit|-ms|font-(?:files|url)|grid-image|image-(?:width|height|url|color)|sprites?|sprite-(?:map|map-name|file|url|position)|inline-(?:font-files|image)|opposite-position|grad-point|grad-end-position|color-stops|color-stops-in-percentages|grad-color-stops|(?:radial|linear)-(?:gradient|svg-gradient)|opacify|fade-?in|transparentize|fade-?out|lighten|darken|saturate|desaturate|grayscale|adjust-(?:hue|lightness|saturation|color)|scale-(?:lightness|saturation|color)|change-color|spin|complement|invert|mix|-compass-(?:list|space-list|slice|nth|list-size)|blank|compact|nth|first-value-of|join|length|append|nest|append-selector|headers|enumerate|range|percentage|unitless|unit|if|type-of|comparable|elements-of-type|quote|unquote|escape|e|sin|cos|tan|abs|round|ceil|floor|pi|translate(?:X|Y))(\\\\()',\n beginCaptures: {\n 1: {name: 'support.function.misc.scss'},\n 2: {name: 'punctuation.section.function.scss'}\n },\n end: '(\\\\))',\n endCaptures: {1: {name: 'punctuation.section.function.scss'}},\n patterns: [{include: '#parameters'}]\n },\n flow_control: {\n patterns: [\n {include: '#at_rule_if'},\n {include: '#at_rule_else'},\n {include: '#at_rule_warn'},\n {include: '#at_rule_for'},\n {include: '#at_rule_while'},\n {include: '#at_rule_each'},\n {include: '#at_rule_return'}\n ]\n },\n function_attributes: {\n patterns: [\n {match: ':', name: 'punctuation.separator.key-value.scss'},\n {include: '#general'},\n {include: '#property_values'},\n {match: '[={}\\\\?;@]', name: 'invalid.illegal.scss'}\n ]\n },\n functions: {\n patterns: [\n {\n begin: '([\\\\w-]{1,})(\\\\()\\\\s*',\n beginCaptures: {\n 1: {name: 'support.function.misc.scss'},\n 2: {name: 'punctuation.section.function.scss'}\n },\n end: '(\\\\))',\n endCaptures: {1: {name: 'punctuation.section.function.scss'}},\n patterns: [{include: '#parameters'}]\n },\n {match: '([\\\\w-]{1,})', name: 'support.function.misc.scss'}\n ]\n },\n general: {\n patterns: [\n {include: '#variable'},\n {include: '#comment_docblock'},\n {include: '#comment_block'},\n {include: '#comment_line'}\n ]\n },\n interpolation: {\n begin: '#{',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.interpolation.begin.bracket.curly.scss'\n }\n },\n end: '}',\n endCaptures: {\n 0: {name: 'punctuation.definition.interpolation.end.bracket.curly.scss'}\n },\n name: 'variable.interpolation.scss',\n patterns: [{include: '#variable'}, {include: '#property_values'}]\n },\n logical_operators: {\n match: '\\\\b(not|or|and)\\\\b',\n name: 'keyword.operator.logical.scss'\n },\n map: {\n begin: '\\\\(',\n beginCaptures: {\n 0: {name: 'punctuation.definition.map.begin.bracket.round.scss'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.map.end.bracket.round.scss'}\n },\n name: 'meta.definition.variable.map.scss',\n patterns: [\n {include: '#comment_docblock'},\n {include: '#comment_block'},\n {include: '#comment_line'},\n {\n captures: {\n 1: {name: 'support.type.map.key.scss'},\n 2: {name: 'punctuation.separator.key-value.scss'}\n },\n match: '\\\\b([\\\\w-]+)\\\\s*(:)'\n },\n {match: ',', name: 'punctuation.separator.delimiter.scss'},\n {include: '#map'},\n {include: '#variable'},\n {include: '#property_values'}\n ]\n },\n operators: {match: '[-+*/](?!\\\\s*[-+*/])', name: 'keyword.operator.css'},\n parameters: {\n patterns: [\n {include: '#variable'},\n {\n begin: '\\\\(',\n beginCaptures: {\n 0: {name: 'punctuation.definition.begin.bracket.round.scss'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.end.bracket.round.scss'}\n },\n patterns: [{include: '#function_attributes'}]\n },\n {include: '#property_values'},\n {include: '#comment_block'},\n {match: '[^\\'\",) \\\\t]+', name: 'variable.parameter.url.scss'},\n {match: ',', name: 'punctuation.separator.delimiter.scss'}\n ]\n },\n parent_selector_suffix: {\n captures: {\n 1: {name: 'punctuation.definition.entity.css'},\n 2: {\n patterns: [\n {include: '#interpolation'},\n {\n match: '\\\\\\\\([0-9a-fA-F]{1,6}|.)',\n name: 'constant.character.escape.scss'\n },\n {match: '\\\\$|}', name: 'invalid.illegal.identifier.scss'}\n ]\n }\n },\n match:\n '(?x)\\n(?<=&)\\n(\\n (?: [-a-zA-Z_0-9]|[^\\\\x00-\\\\x7F] # Valid identifier characters\\n | \\\\\\\\(?:[0-9a-fA-F]{1,6}|.) # Escape sequence\\n | \\\\#\\\\{ # Interpolation (escaped to avoid Coffeelint errors)\\n | \\\\$ # Possible start of interpolation variable\\n | } # Possible end of interpolation\\n )+\\n) # Followed by either:\\n(?= $ # - End of the line\\n | [\\\\s,.\\\\#)\\\\[:{>+~|] # - Another selector\\n | /\\\\* # - A block comment\\n)',\n name: 'entity.other.attribute-name.parent-selector-suffix.css'\n },\n properties: {\n patterns: [\n {\n begin: '(?+~|] # - Another selector\\n | \\\\.[^$] # - Class selector, negating module variable\\n | /\\\\* # - A block comment\\n | ; # - A semicolon\\n)',\n name: 'entity.other.attribute-name.class.css'\n },\n selector_custom: {\n match:\n '\\\\b([a-zA-Z0-9]+(-[a-zA-Z0-9]+)+)(?=\\\\.|\\\\s++[^:]|\\\\s*[,\\\\[{]|:(link|visited|hover|active|focus|target|lang|disabled|enabled|checked|indeterminate|root|nth-(child|last-child|of-type|last-of-type)|first-child|last-child|first-of-type|last-of-type|only-child|only-of-type|empty|not|valid|invalid)(\\\\([0-9A-Za-z]*\\\\))?)',\n name: 'entity.name.tag.custom.scss'\n },\n selector_id: {\n captures: {\n 1: {name: 'punctuation.definition.entity.css'},\n 2: {\n patterns: [\n {include: '#interpolation'},\n {\n match: '\\\\\\\\([0-9a-fA-F]{1,6}|.)',\n name: 'constant.character.escape.scss'\n },\n {match: '\\\\$|}', name: 'invalid.illegal.identifier.scss'}\n ]\n }\n },\n match:\n '(?x)\\n(\\\\#) # Valid id-name\\n(\\n (?: [-a-zA-Z_0-9]|[^\\\\x00-\\\\x7F] # Valid identifier characters\\n | \\\\\\\\(?:[0-9a-fA-F]{1,6}|.) # Escape sequence\\n | \\\\#\\\\{ # Interpolation (escaped to avoid Coffeelint errors)\\n | \\\\.?\\\\$ # Possible start of interpolation variable\\n | } # Possible end of interpolation\\n )+\\n) # Followed by either:\\n(?= $ # - End of the line\\n | [\\\\s,\\\\#)\\\\[:{>+~|] # - Another selector\\n | \\\\.[^$] # - Class selector, negating module variable\\n | /\\\\* # - A block comment\\n)',\n name: 'entity.other.attribute-name.id.css'\n },\n selector_placeholder: {\n captures: {\n 1: {name: 'punctuation.definition.entity.css'},\n 2: {\n patterns: [\n {include: '#interpolation'},\n {\n match: '\\\\\\\\([0-9a-fA-F]{1,6}|.)',\n name: 'constant.character.escape.scss'\n },\n {match: '\\\\$|}', name: 'invalid.illegal.identifier.scss'}\n ]\n }\n },\n match:\n '(?x)\\n(%) # Valid placeholder-name\\n(\\n (?: [-a-zA-Z_0-9]|[^\\\\x00-\\\\x7F] # Valid identifier characters\\n | \\\\\\\\(?:[0-9a-fA-F]{1,6}|.) # Escape sequence\\n | \\\\#\\\\{ # Interpolation (escaped to avoid Coffeelint errors)\\n | \\\\.\\\\$ # Possible start of interpolation module scope variable\\n | \\\\$ # Possible start of interpolation variable\\n | } # Possible end of interpolation\\n )+\\n) # Followed by either:\\n(?= ; # - End of statement\\n | $ # - End of the line\\n | [\\\\s,\\\\#)\\\\[:{>+~|] # - Another selector\\n | \\\\.[^$] # - Class selector, negating module variable\\n | /\\\\* # - A block comment\\n)',\n name: 'entity.other.attribute-name.placeholder.css'\n },\n selector_pseudo_class: {\n patterns: [\n {\n begin: '((:)\\\\bnth-(?:child|last-child|of-type|last-of-type))(\\\\()',\n beginCaptures: {\n 1: {name: 'entity.other.attribute-name.pseudo-class.css'},\n 2: {name: 'punctuation.definition.entity.css'},\n 3: {\n name: 'punctuation.definition.pseudo-class.begin.bracket.round.css'\n }\n },\n end: '\\\\)',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.pseudo-class.end.bracket.round.css'\n }\n },\n patterns: [\n {include: '#interpolation'},\n {match: '\\\\d+', name: 'constant.numeric.css'},\n {\n match: '(?<=\\\\d)n\\\\b|\\\\b(n|even|odd)\\\\b',\n name: 'constant.other.scss'\n },\n {match: '\\\\w+', name: 'invalid.illegal.scss'}\n ]\n },\n {include: 'source.css#pseudo-classes'},\n {include: 'source.css#pseudo-elements'},\n {include: 'source.css#functional-pseudo-classes'}\n ]\n },\n selectors: {\n patterns: [\n {include: 'source.css#tag-names'},\n {include: '#selector_custom'},\n {include: '#selector_class'},\n {include: '#selector_id'},\n {include: '#selector_pseudo_class'},\n {include: '#tag_wildcard'},\n {include: '#tag_parent_reference'},\n {include: 'source.css#pseudo-elements'},\n {include: '#selector_attribute'},\n {include: '#selector_placeholder'},\n {include: '#parent_selector_suffix'}\n ]\n },\n string_double: {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.scss'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.scss'}},\n name: 'string.quoted.double.scss',\n patterns: [\n {\n match: '\\\\\\\\([[:xdigit:]]{1,6}|.)',\n name: 'constant.character.escape.scss'\n },\n {include: '#interpolation'}\n ]\n },\n string_single: {\n begin: \"'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.scss'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.scss'}},\n name: 'string.quoted.single.scss',\n patterns: [\n {\n match: '\\\\\\\\([[:xdigit:]]{1,6}|.)',\n name: 'constant.character.escape.scss'\n },\n {include: '#interpolation'}\n ]\n },\n tag_parent_reference: {match: '&', name: 'entity.name.tag.reference.scss'},\n tag_wildcard: {match: '\\\\*', name: 'entity.name.tag.wildcard.scss'},\n variable: {\n patterns: [{include: '#variables'}, {include: '#interpolation'}]\n },\n variable_setting: {\n begin: '(?=\\\\$[\\\\w-]+\\\\s*:)',\n contentName: 'meta.definition.variable.scss',\n end: ';',\n endCaptures: {0: {name: 'punctuation.terminator.rule.scss'}},\n patterns: [\n {match: '\\\\$[\\\\w-]+(?=\\\\s*:)', name: 'variable.scss'},\n {\n begin: ':',\n beginCaptures: {0: {name: 'punctuation.separator.key-value.scss'}},\n end: '(?=;)',\n patterns: [\n {include: '#comment_docblock'},\n {include: '#comment_block'},\n {include: '#comment_line'},\n {include: '#map'},\n {include: '#property_values'},\n {include: '#variable'},\n {match: ',', name: 'punctuation.separator.delimiter.scss'}\n ]\n }\n ]\n },\n variables: {\n patterns: [\n {\n captures: {\n 1: {name: 'variable.scss'},\n 2: {name: 'punctuation.access.module.scss'},\n 3: {name: 'variable.scss'}\n },\n match: '\\\\b([\\\\w-]+)(\\\\.)(\\\\$[\\\\w-]+)\\\\b'\n },\n {match: '(\\\\$|\\\\-\\\\-)[A-Za-z0-9_-]+\\\\b', name: 'variable.scss'}\n ]\n }\n },\n scopeName: 'source.css.scss'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is licensed permissive.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.diff', '.patch'],\n names: ['diff', 'udiff'],\n patterns: [\n {\n captures: {1: {name: 'punctuation.definition.separator.diff'}},\n match: '^((\\\\*{15})|(={67})|(-{3}))$\\\\n?',\n name: 'meta.separator.diff'\n },\n {\n match: '^\\\\d+(,\\\\d+)*(a|d|c)\\\\d+(,\\\\d+)*$\\\\n?',\n name: 'meta.diff.range.normal'\n },\n {\n captures: {\n 1: {name: 'punctuation.definition.range.diff'},\n 2: {name: 'meta.toc-list.line-number.diff'},\n 3: {name: 'punctuation.definition.range.diff'}\n },\n match: '^(@@)\\\\s*(.+?)\\\\s*(@@)($\\\\n?)?',\n name: 'meta.diff.range.unified'\n },\n {\n captures: {\n 3: {name: 'punctuation.definition.range.diff'},\n 4: {name: 'punctuation.definition.range.diff'},\n 6: {name: 'punctuation.definition.range.diff'},\n 7: {name: 'punctuation.definition.range.diff'}\n },\n match: '^(((\\\\-{3}) .+ (\\\\-{4}))|((\\\\*{3}) .+ (\\\\*{4})))$\\\\n?',\n name: 'meta.diff.range.context'\n },\n {match: '^diff --git a/.*$\\\\n?', name: 'meta.diff.header.git'},\n {match: '^diff (-|\\\\S+\\\\s+\\\\S+).*$\\\\n?', name: 'meta.diff.header.command'},\n {\n captures: {\n 4: {name: 'punctuation.definition.from-file.diff'},\n 6: {name: 'punctuation.definition.from-file.diff'},\n 7: {name: 'punctuation.definition.from-file.diff'}\n },\n match: '(^(((-{3}) .+)|((\\\\*{3}) .+))$\\\\n?|^(={4}) .+(?= - ))',\n name: 'meta.diff.header.from-file'\n },\n {\n captures: {\n 2: {name: 'punctuation.definition.to-file.diff'},\n 3: {name: 'punctuation.definition.to-file.diff'},\n 4: {name: 'punctuation.definition.to-file.diff'}\n },\n match: '(^(\\\\+{3}) .+$\\\\n?| (-) .* (={4})$\\\\n?)',\n name: 'meta.diff.header.to-file'\n },\n {\n captures: {\n 3: {name: 'punctuation.definition.inserted.diff'},\n 6: {name: 'punctuation.definition.inserted.diff'}\n },\n match: '^(((>)( .*)?)|((\\\\+).*))$\\\\n?',\n name: 'markup.inserted.diff'\n },\n {\n captures: {1: {name: 'punctuation.definition.changed.diff'}},\n match: '^(!).*$\\\\n?',\n name: 'markup.changed.diff'\n },\n {\n captures: {\n 3: {name: 'punctuation.definition.deleted.diff'},\n 6: {name: 'punctuation.definition.deleted.diff'}\n },\n match: '^(((<)( .*)?)|((-).*))$\\\\n?',\n name: 'markup.deleted.diff'\n },\n {\n begin: '^(#)',\n captures: {1: {name: 'punctuation.definition.comment.diff'}},\n end: '\\\\n',\n name: 'comment.line.number-sign.diff'\n },\n {\n match: '^index [0-9a-f]{7,40}\\\\.\\\\.[0-9a-f]{7,40}.*$\\\\n?',\n name: 'meta.diff.index.git'\n },\n {\n captures: {\n 1: {name: 'punctuation.separator.key-value.diff'},\n 2: {name: 'meta.toc-list.file-name.diff'}\n },\n match: '^Index(:) (.+)$\\\\n?',\n name: 'meta.diff.index'\n },\n {match: '^Only in .*: .*$\\\\n?', name: 'meta.diff.only-in'}\n ],\n scopeName: 'source.diff'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `bsd-3-clause`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.go'],\n names: ['go', 'golang'],\n patterns: [\n {include: '#receiver_function_declaration'},\n {include: '#plain_function_declaration'},\n {include: '#basic_things'},\n {include: '#exported_variables'},\n {\n begin: '^[[:blank:]]*(import)\\\\b\\\\s+',\n beginCaptures: {1: {name: 'keyword.control.import.go'}},\n end: '(?=(?://|/\\\\*))|$',\n name: 'meta.preprocessor.go.import',\n patterns: [\n {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.go'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.go'}},\n name: 'string.quoted.double.import.go'\n }\n ]\n },\n {include: '#block'},\n {include: '#root_parens'},\n {include: '#function_calls'}\n ],\n repository: {\n access: {\n match: '(?<=\\\\.)[[:alpha:]_][[:alnum:]_]*\\\\b(?!\\\\s*\\\\()',\n name: 'variable.other.dot-access.go'\n },\n basic_things: {\n patterns: [\n {include: '#comments'},\n {include: '#initializers'},\n {include: '#access'},\n {include: '#strings'},\n {include: '#keywords'}\n ]\n },\n block: {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.section.block.begin.go'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.section.block.end.go'}},\n name: 'meta.block.go',\n patterns: [{include: '#block_innards'}]\n },\n block_innards: {\n patterns: [\n {include: '#function_block_innards'},\n {include: '#exported_variables'}\n ]\n },\n comments: {\n patterns: [\n {\n captures: {1: {name: 'meta.toc-list.banner.block.go'}},\n match: '^/\\\\* =(\\\\s*.*?)\\\\s*= \\\\*/$\\\\n?',\n name: 'comment.block.go'\n },\n {\n begin: '/\\\\*',\n captures: {0: {name: 'punctuation.definition.comment.go'}},\n end: '\\\\*/',\n name: 'comment.block.go'\n },\n {match: '\\\\*/.*\\\\n', name: 'invalid.illegal.stray-comment-end.go'},\n {\n captures: {\n 1: {name: 'punctuation.definition.comment.go'},\n 2: {name: 'meta.toc-list.banner.line.go'}\n },\n match: '^(//) =(\\\\s*.*?)\\\\s*=\\\\s*$\\\\n?',\n name: 'comment.line.double-slash.banner.go'\n },\n {\n begin: '(^[ \\\\t]+)?(?=//)',\n beginCaptures: {\n 1: {name: 'punctuation.whitespace.comment.leading.go'}\n },\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '//',\n beginCaptures: {0: {name: 'punctuation.definition.comment.go'}},\n end: '\\\\n',\n name: 'comment.line.double-slash.go',\n patterns: [\n {\n match: '(?>\\\\\\\\\\\\s*\\\\n)',\n name: 'punctuation.separator.continuation.go'\n }\n ]\n }\n ]\n }\n ]\n },\n exported_variables: {\n match: '(?<=\\\\s|\\\\[\\\\])([[:upper:]][[:alnum:]_]*)(?=\\\\W+)',\n name: 'variable.exported.go'\n },\n fn_parens: {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.parens.begin.go'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.section.parens.end.go'}},\n name: 'meta.parens.go',\n patterns: [{include: '#basic_things'}, {include: '#function_calls'}]\n },\n function_block: {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.section.function-block.begin.go'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.section.function-block.end.go'}},\n name: 'meta.block.go',\n patterns: [{include: '#function_block_innards'}]\n },\n function_block_innards: {\n patterns: [\n {include: '#basic_things'},\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading.go'},\n 2: {name: 'support.function.builtin.go'}\n },\n match:\n '(\\\\s*)\\\\b(new|c(lose|ap)|p(anic|rint(ln)?)|len|make|append)(?:\\\\b|\\\\()'\n },\n {include: '#function_block'},\n {include: '#function_calls'},\n {include: '#fn_parens'}\n ]\n },\n function_calls: {\n captures: {\n 1: {name: 'punctuation.whitespace.function-call.leading.go'},\n 2: {name: 'support.function.any-method.go'},\n 3: {name: 'punctuation.definition.parameters.go'}\n },\n match:\n '(?x)\\n (?: (?= \\\\s ) (?:(?<=else|new|return) | (?-]|(?:interface\\\\{\\\\}))*)? \\\\) ) # required braces for parameters (even if empty)\\n \\t \\\\s*\\n \\t (?: \\\\(? ((?:[\\\\[\\\\]\\\\w\\\\d\\\\s,._*&<>-]|(?:interface\\\\{\\\\}))*) \\\\)? )? # optional return types, optionally within braces\\n )\\n \\t ',\n beginCaptures: {\n 1: {name: 'meta.function.declaration.go'},\n 2: {name: 'keyword.control.go'},\n 3: {name: 'entity.name.function.go'},\n 4: {\n patterns: [\n {match: '[[:alpha:]_][[:alnum:]_]*', name: 'variable.parameters.go'}\n ]\n },\n 5: {\n patterns: [\n {\n match: '[[:alpha:]_][[:alnum:]_]*',\n name: 'variable.return-types.go'\n }\n ]\n }\n },\n end: '(?<=\\\\})',\n name: 'meta.function.plain.go',\n patterns: [\n {include: '#comments'},\n {include: '#storage_type'},\n {include: '#storage_modifier'},\n {include: '#function_block'}\n ]\n },\n receiver_function_declaration: {\n begin:\n '(?x)\\n \\t (\\n (func)\\\\s*\\n \\t (\\n \\t (?: \\\\( ((?:[\\\\[\\\\]\\\\w\\\\d\\\\s,._*&<>-]|(?:interface\\\\{\\\\}))*) \\\\)\\\\s+ ) # receiver variable declarations, in brackets\\n \\t (?: ([[:alpha:]_][[:alnum:]_]*)? ) # name of function is optional\\n \\t )\\n \\t (?: \\\\( ((?:[\\\\[\\\\]\\\\w\\\\d\\\\s,._*&<>-]|(?:interface\\\\{\\\\}))*)? \\\\) ) # required braces for parameters (even if empty)\\n \\t \\\\s*\\n \\t (?: \\\\(? ((?:[\\\\[\\\\]\\\\w\\\\d\\\\s,._*&<>-]|(?:interface\\\\{\\\\}))*) \\\\)? )? # optional return types, optionally within braces\\n )\\n \\t ',\n beginCaptures: {\n 1: {name: 'meta.function.receiver.declaration.go'},\n 2: {name: 'keyword.control.go'},\n 3: {name: 'entity.name.function.go.full-name'},\n 4: {\n patterns: [\n {match: '[[:alpha:]_][[:alnum:]_]*', name: 'variable.receiver.go'}\n ]\n },\n 5: {name: 'entity.name.function.go.name'},\n 6: {\n patterns: [\n {match: '[[:alpha:]_][[:alnum:]_]*', name: 'variable.parameters.go'}\n ]\n },\n 7: {\n patterns: [\n {\n match: '[[:alpha:]_][[:alnum:]_]*',\n name: 'variable.return-types.go'\n }\n ]\n }\n },\n end: '(?<=\\\\})',\n name: 'meta.function.receiver.go',\n patterns: [\n {include: '#comments'},\n {include: '#storage_type'},\n {include: '#storage_modifier'},\n {include: '#function_block'}\n ]\n },\n root_parens: {\n begin: '\\\\(',\n end: '(?<=\\\\()(\\\\))?|(?:\\\\))',\n endCaptures: {1: {name: 'meta.parens.empty.go'}},\n name: 'meta.parens.go',\n patterns: [\n {include: '#basic_things'},\n {include: '#exported_variables'},\n {include: '#function_calls'}\n ]\n },\n string_escaped_char: {\n patterns: [\n {\n match:\n '\\\\\\\\(\\\\\\\\|[abfnrutv\\'\"]|x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|U[0-9a-fA-F]{8}|[0-7]{3})',\n name: 'constant.character.escape.go'\n },\n {match: '\\\\\\\\.', name: 'invalid.illegal.unknown-escape.go'}\n ]\n },\n string_placeholder: {\n patterns: [\n {\n match:\n \"(?x)%\\n (\\\\d+\\\\$)? # field (argument #)\\n [#0\\\\- +']* # flags\\n [,;:_]? # separator character (AltiVec)\\n ((-?\\\\d+)|\\\\*(-?\\\\d+\\\\$)?)? # minimum field width\\n (\\\\.((-?\\\\d+)|\\\\*(-?\\\\d+\\\\$)?)?)? # precision\\n [diouxXDOUeEfFgGaAcCsSpnvtTbyYhHmMzZq%] # conversion type\\n \",\n name: 'constant.other.placeholder.go'\n },\n {match: '%', name: 'invalid.illegal.placeholder.go'}\n ]\n },\n strings: {\n patterns: [\n {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.go'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.go'}},\n name: 'string.quoted.double.go',\n patterns: [\n {include: '#string_placeholder'},\n {include: '#string_escaped_char'}\n ]\n },\n {\n begin: \"'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.go'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.go'}},\n name: 'string.quoted.single.go',\n patterns: [{include: '#string_escaped_char'}]\n },\n {\n begin: '`',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.go'}},\n end: '`',\n endCaptures: {0: {name: 'punctuation.definition.string.end.go'}},\n name: 'string.quoted.raw.go'\n }\n ]\n }\n },\n scopeName: 'source.go'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.graphql', '.gql', '.graphqls'],\n names: ['graphql'],\n patterns: [{include: '#graphql'}],\n repository: {\n graphql: {\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-fragment-definition'},\n {include: '#graphql-directive-definition'},\n {include: '#graphql-type-interface'},\n {include: '#graphql-enum'},\n {include: '#graphql-scalar'},\n {include: '#graphql-union'},\n {include: '#graphql-schema'},\n {include: '#graphql-operation-def'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-ampersand': {\n captures: {1: {name: 'keyword.operator.logical.graphql'}},\n match: '\\\\s*(&)'\n },\n 'graphql-arguments': {\n begin: '\\\\s*(\\\\()',\n beginCaptures: {1: {name: 'meta.brace.round.directive.graphql'}},\n end: '\\\\s*(\\\\))',\n endCaptures: {1: {name: 'meta.brace.round.directive.graphql'}},\n name: 'meta.arguments.graphql',\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {\n begin: '\\\\s*([_A-Za-z][_0-9A-Za-z]*)(?:\\\\s*(:))',\n beginCaptures: {\n 1: {name: 'variable.parameter.graphql'},\n 2: {name: 'punctuation.colon.graphql'}\n },\n end: '(?=\\\\s*(?:(?:([_A-Za-z][_0-9A-Za-z]*)\\\\s*(:))|\\\\)))|\\\\s*(,)',\n endCaptures: {3: {name: 'punctuation.comma.graphql'}},\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-directive'},\n {include: '#graphql-value'},\n {include: '#graphql-skip-newlines'}\n ]\n },\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-boolean-value': {\n captures: {1: {name: 'constant.language.boolean.graphql'}},\n match: '\\\\s*\\\\b(true|false)\\\\b'\n },\n 'graphql-colon': {\n captures: {1: {name: 'punctuation.colon.graphql'}},\n match: '\\\\s*(:)'\n },\n 'graphql-comma': {\n captures: {1: {name: 'punctuation.comma.graphql'}},\n match: '\\\\s*(,)'\n },\n 'graphql-comment': {\n patterns: [\n {\n captures: {\n 1: {name: 'punctuation.whitespace.comment.leading.graphql'}\n },\n match: '(\\\\s*)(#).*',\n name: 'comment.line.graphql.js'\n },\n {\n begin: '(\"\"\")',\n beginCaptures: {\n 1: {name: 'punctuation.whitespace.comment.leading.graphql'}\n },\n end: '(\"\"\")',\n name: 'comment.line.graphql.js'\n },\n {\n begin: '(\")',\n beginCaptures: {\n 1: {name: 'punctuation.whitespace.comment.leading.graphql'}\n },\n end: '(\")',\n name: 'comment.line.graphql.js'\n }\n ]\n },\n 'graphql-description-docstring': {\n begin: '\"\"\"',\n end: '\"\"\"',\n name: 'comment.block.graphql'\n },\n 'graphql-description-singleline': {\n match: '#(?=([^\"]*\"[^\"]*\")*[^\"]*$).*$',\n name: 'comment.line.number-sign.graphql'\n },\n 'graphql-directive': {\n applyEndPatternLast: true,\n begin: '\\\\s*((@)\\\\s*([_A-Za-z][_0-9A-Za-z]*))',\n beginCaptures: {1: {name: 'entity.name.function.directive.graphql'}},\n end: '(?=.)',\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-arguments'},\n {include: '#literal-quasi-embedded'},\n {include: '#graphql-skip-newlines'}\n ]\n },\n 'graphql-directive-definition': {\n applyEndPatternLast: true,\n begin: '\\\\s*(\\\\bdirective\\\\b)\\\\s*(@[_A-Za-z][_0-9A-Za-z]*)',\n beginCaptures: {\n 1: {name: 'keyword.directive.graphql'},\n 2: {name: 'entity.name.function.directive.graphql'},\n 3: {name: 'keyword.repeatable.graphql'},\n 4: {name: 'keyword.on.graphql'},\n 5: {name: 'support.type.graphql'}\n },\n end: '(?=.)',\n patterns: [\n {include: '#graphql-variable-definitions'},\n {\n applyEndPatternLast: true,\n begin: '\\\\s*(\\\\brepeatable\\\\b)?\\\\s*(\\\\bon\\\\b)\\\\s*([_A-Za-z]*)',\n beginCaptures: {\n 1: {name: 'keyword.repeatable.graphql'},\n 2: {name: 'keyword.on.graphql'},\n 3: {name: 'support.type.location.graphql'}\n },\n end: '(?=.)',\n patterns: [\n {include: '#graphql-skip-newlines'},\n {include: '#graphql-comment'},\n {include: '#literal-quasi-embedded'},\n {\n captures: {2: {name: 'support.type.location.graphql'}},\n match: '\\\\s*(\\\\|)\\\\s*([_A-Za-z]*)'\n }\n ]\n },\n {include: '#graphql-skip-newlines'},\n {include: '#graphql-comment'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-enum': {\n begin: '\\\\s*+\\\\b(enum)\\\\b\\\\s*([_A-Za-z][_0-9A-Za-z]*)',\n beginCaptures: {\n 1: {name: 'keyword.enum.graphql'},\n 2: {name: 'support.type.enum.graphql'}\n },\n end: '(?<=})',\n name: 'meta.enum.graphql',\n patterns: [\n {\n begin: '\\\\s*({)',\n beginCaptures: {1: {name: 'punctuation.operation.graphql'}},\n end: '\\\\s*(})',\n endCaptures: {1: {name: 'punctuation.operation.graphql'}},\n name: 'meta.type.object.graphql',\n patterns: [\n {include: '#graphql-object-type'},\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-directive'},\n {include: '#graphql-enum-value'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-directive'}\n ]\n },\n 'graphql-enum-value': {\n match: '\\\\s*(?!=\\\\b(true|false|null)\\\\b)([_A-Za-z][_0-9A-Za-z]*)',\n name: 'constant.character.enum.graphql'\n },\n 'graphql-field': {\n patterns: [\n {\n captures: {\n 1: {name: 'string.unquoted.alias.graphql'},\n 2: {name: 'punctuation.colon.graphql'}\n },\n match: '\\\\s*([_A-Za-z][_0-9A-Za-z]*)\\\\s*(:)'\n },\n {\n captures: {1: {name: 'variable.graphql'}},\n match: '\\\\s*([_A-Za-z][_0-9A-Za-z]*)'\n },\n {include: '#graphql-arguments'},\n {include: '#graphql-directive'},\n {include: '#graphql-selection-set'},\n {include: '#literal-quasi-embedded'},\n {include: '#graphql-skip-newlines'}\n ]\n },\n 'graphql-float-value': {\n captures: {1: {name: 'constant.numeric.float.graphql'}},\n match: '\\\\s*(-?(0|[1-9][0-9]*)(\\\\.[0-9]+)?((e|E)(\\\\+|-)?[0-9]+)?)'\n },\n 'graphql-fragment-definition': {\n begin: '\\\\s*(?:(\\\\bfragment\\\\b)\\\\s*([_A-Za-z][_0-9A-Za-z]*)?)',\n captures: {\n 1: {name: 'keyword.fragment.graphql'},\n 2: {name: 'entity.name.fragment.graphql'}\n },\n end: '(?<=})',\n name: 'meta.fragment.graphql',\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.on.graphql'},\n 2: {name: 'support.type.graphql'}\n },\n match: '\\\\s*(?:(\\\\bon\\\\b)\\\\s*([_A-Za-z][_0-9A-Za-z]*))'\n },\n {include: '#graphql-variable-definitions'},\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-selection-set'},\n {include: '#graphql-directive'},\n {include: '#graphql-skip-newlines'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-fragment-spread': {\n applyEndPatternLast: true,\n begin: '\\\\s*(\\\\.\\\\.\\\\.)\\\\s*(?!\\\\bon\\\\b)([_A-Za-z][_0-9A-Za-z]*)',\n captures: {\n 1: {name: 'keyword.operator.spread.graphql'},\n 2: {name: 'variable.fragment.graphql'}\n },\n end: '(?=.)',\n patterns: [\n {include: '#graphql-arguments'},\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-selection-set'},\n {include: '#graphql-directive'},\n {include: '#literal-quasi-embedded'},\n {include: '#graphql-skip-newlines'}\n ]\n },\n 'graphql-ignore-spaces': {match: '\\\\s*'},\n 'graphql-inline-fragment': {\n applyEndPatternLast: true,\n begin: '\\\\s*(\\\\.\\\\.\\\\.)\\\\s*(?:(\\\\bon\\\\b)\\\\s*([_A-Za-z][_0-9A-Za-z]*))?',\n captures: {\n 1: {name: 'keyword.operator.spread.graphql'},\n 2: {name: 'keyword.on.graphql'},\n 3: {name: 'support.type.graphql'}\n },\n end: '(?=.)',\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-selection-set'},\n {include: '#graphql-directive'},\n {include: '#graphql-skip-newlines'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-input-types': {\n patterns: [\n {include: '#graphql-scalar-type'},\n {\n captures: {\n 1: {name: 'support.type.graphql'},\n 2: {name: 'keyword.operator.nulltype.graphql'}\n },\n match: '\\\\s*([_A-Za-z][_0-9A-Za-z]*)(?:\\\\s*(!))?'\n },\n {\n begin: '\\\\s*(\\\\[)',\n captures: {\n 1: {name: 'meta.brace.square.graphql'},\n 2: {name: 'keyword.operator.nulltype.graphql'}\n },\n end: '\\\\s*(\\\\])(?:\\\\s*(!))?',\n name: 'meta.type.list.graphql',\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-input-types'},\n {include: '#graphql-comma'},\n {include: '#literal-quasi-embedded'}\n ]\n }\n ]\n },\n 'graphql-list-value': {\n patterns: [\n {\n begin: '\\\\s*+(\\\\[)',\n beginCaptures: {1: {name: 'meta.brace.square.graphql'}},\n end: '\\\\s*(\\\\])',\n endCaptures: {1: {name: 'meta.brace.square.graphql'}},\n name: 'meta.listvalues.graphql',\n patterns: [{include: '#graphql-value'}]\n }\n ]\n },\n 'graphql-name': {\n captures: {1: {name: 'entity.name.function.graphql'}},\n match: '\\\\s*([_A-Za-z][_0-9A-Za-z]*)'\n },\n 'graphql-null-value': {\n captures: {1: {name: 'constant.language.null.graphql'}},\n match: '\\\\s*\\\\b(null)\\\\b'\n },\n 'graphql-object-field': {\n captures: {\n 1: {name: 'constant.object.key.graphql'},\n 2: {name: 'string.unquoted.graphql'},\n 3: {name: 'punctuation.graphql'}\n },\n match: '\\\\s*(([_A-Za-z][_0-9A-Za-z]*))\\\\s*(:)'\n },\n 'graphql-object-value': {\n patterns: [\n {\n begin: '\\\\s*+({)',\n beginCaptures: {1: {name: 'meta.brace.curly.graphql'}},\n end: '\\\\s*(})',\n endCaptures: {1: {name: 'meta.brace.curly.graphql'}},\n name: 'meta.objectvalues.graphql',\n patterns: [\n {include: '#graphql-object-field'},\n {include: '#graphql-value'}\n ]\n }\n ]\n },\n 'graphql-operation-def': {\n patterns: [\n {include: '#graphql-query-mutation'},\n {include: '#graphql-name'},\n {include: '#graphql-variable-definitions'},\n {include: '#graphql-directive'},\n {include: '#graphql-selection-set'}\n ]\n },\n 'graphql-query-mutation': {\n captures: {1: {name: 'keyword.operation.graphql'}},\n match: '\\\\s*\\\\b(query|mutation)\\\\b'\n },\n 'graphql-scalar': {\n captures: {\n 1: {name: 'keyword.scalar.graphql'},\n 2: {name: 'entity.scalar.graphql'}\n },\n match: '\\\\s*\\\\b(scalar)\\\\b\\\\s*([_A-Za-z][_0-9A-Za-z]*)'\n },\n 'graphql-scalar-type': {\n captures: {\n 1: {name: 'support.type.builtin.graphql'},\n 2: {name: 'keyword.operator.nulltype.graphql'}\n },\n match: '\\\\s*\\\\b(Int|Float|String|Boolean|ID)\\\\b(?:\\\\s*(!))?'\n },\n 'graphql-schema': {\n begin: '\\\\s*\\\\b(schema)\\\\b',\n beginCaptures: {1: {name: 'keyword.schema.graphql'}},\n end: '(?<=})',\n patterns: [\n {\n begin: '\\\\s*({)',\n beginCaptures: {1: {name: 'punctuation.operation.graphql'}},\n end: '\\\\s*(})',\n endCaptures: {1: {name: 'punctuation.operation.graphql'}},\n patterns: [\n {\n begin: '\\\\s*([_A-Za-z][_0-9A-Za-z]*)(?=\\\\s*\\\\(|:)',\n beginCaptures: {1: {name: 'variable.arguments.graphql'}},\n end: '(?=\\\\s*(([_A-Za-z][_0-9A-Za-z]*)\\\\s*(\\\\(|:)|(})))|\\\\s*(,)',\n endCaptures: {5: {name: 'punctuation.comma.graphql'}},\n patterns: [\n {\n captures: {1: {name: 'support.type.graphql'}},\n match: '\\\\s*([_A-Za-z][_0-9A-Za-z]*)'\n },\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-colon'},\n {include: '#graphql-skip-newlines'}\n ]\n },\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-skip-newlines'}\n ]\n },\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-directive'},\n {include: '#graphql-skip-newlines'}\n ]\n },\n 'graphql-selection-set': {\n begin: '\\\\s*({)',\n beginCaptures: {1: {name: 'punctuation.operation.graphql'}},\n end: '\\\\s*(})',\n endCaptures: {1: {name: 'punctuation.operation.graphql'}},\n name: 'meta.selectionset.graphql',\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-field'},\n {include: '#graphql-fragment-spread'},\n {include: '#graphql-inline-fragment'},\n {include: '#graphql-comma'},\n {include: '#native-interpolation'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-skip-newlines': {match: '\\\\s*\\n'},\n 'graphql-string-content': {\n patterns: [\n {\n match: '\\\\\\\\[/\\'\"\\\\\\\\nrtbf]',\n name: 'constant.character.escape.graphql'\n },\n {\n match: '\\\\\\\\u([0-9a-fA-F]{4})',\n name: 'constant.character.escape.graphql'\n }\n ]\n },\n 'graphql-string-value': {\n begin: '\\\\s*+((\"))',\n beginCaptures: {\n 1: {name: 'string.quoted.double.graphql'},\n 2: {name: 'punctuation.definition.string.begin.graphql'}\n },\n contentName: 'string.quoted.double.graphql',\n end: '\\\\s*+(?:((\"))|(\\n))',\n endCaptures: {\n 1: {name: 'string.quoted.double.graphql'},\n 2: {name: 'punctuation.definition.string.end.graphql'},\n 3: {name: 'invalid.illegal.newline.graphql'}\n },\n patterns: [\n {include: '#graphql-string-content'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-type-definition': {\n begin: '\\\\s*([_A-Za-z][_0-9A-Za-z]*)(?=\\\\s*\\\\(|:)',\n beginCaptures: {1: {name: 'variable.graphql'}},\n end: '(?=\\\\s*(([_A-Za-z][_0-9A-Za-z]*)\\\\s*(\\\\(|:)|(})))|\\\\s*(,)',\n endCaptures: {5: {name: 'punctuation.comma.graphql'}},\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-directive'},\n {include: '#graphql-variable-definitions'},\n {include: '#graphql-type-object'},\n {include: '#graphql-colon'},\n {include: '#graphql-input-types'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-type-interface': {\n applyEndPatternLast: true,\n begin:\n '\\\\s*\\\\b(?:(extends?)?\\\\b\\\\s*\\\\b(type)|(interface)|(input))\\\\b\\\\s*([_A-Za-z][_0-9A-Za-z]*)?',\n captures: {\n 1: {name: 'keyword.type.graphql'},\n 2: {name: 'keyword.type.graphql'},\n 3: {name: 'keyword.interface.graphql'},\n 4: {name: 'keyword.input.graphql'},\n 5: {name: 'support.type.graphql'}\n },\n end: '(?=.)',\n name: 'meta.type.interface.graphql',\n patterns: [\n {\n begin: '\\\\s*\\\\b(implements)\\\\b\\\\s*',\n beginCaptures: {1: {name: 'keyword.implements.graphql'}},\n end: '\\\\s*(?={)',\n patterns: [\n {\n captures: {1: {name: 'support.type.graphql'}},\n match: '\\\\s*([_A-Za-z][_0-9A-Za-z]*)'\n },\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-directive'},\n {include: '#graphql-ampersand'},\n {include: '#graphql-comma'}\n ]\n },\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-directive'},\n {include: '#graphql-type-object'},\n {include: '#literal-quasi-embedded'},\n {include: '#graphql-ignore-spaces'}\n ]\n },\n 'graphql-type-object': {\n begin: '\\\\s*({)',\n beginCaptures: {1: {name: 'punctuation.operation.graphql'}},\n end: '\\\\s*(})',\n endCaptures: {1: {name: 'punctuation.operation.graphql'}},\n name: 'meta.type.object.graphql',\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-object-type'},\n {include: '#graphql-type-definition'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-union': {\n applyEndPatternLast: true,\n begin: '\\\\s*\\\\b(union)\\\\b\\\\s*([_A-Za-z][_0-9A-Za-z]*)',\n captures: {\n 1: {name: 'keyword.union.graphql'},\n 2: {name: 'support.type.graphql'}\n },\n end: '(?=.)',\n patterns: [\n {\n applyEndPatternLast: true,\n begin: '\\\\s*(=)\\\\s*([_A-Za-z][_0-9A-Za-z]*)',\n captures: {\n 1: {name: 'punctuation.assignment.graphql'},\n 2: {name: 'support.type.graphql'}\n },\n end: '(?=.)',\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-skip-newlines'},\n {include: '#literal-quasi-embedded'},\n {\n captures: {\n 1: {name: 'punctuation.or.graphql'},\n 2: {name: 'support.type.graphql'}\n },\n match: '\\\\s*(\\\\|)\\\\s*([_A-Za-z][_0-9A-Za-z]*)'\n }\n ]\n },\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-skip-newlines'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-union-mark': {\n captures: {1: {name: 'punctuation.union.graphql'}},\n match: '\\\\s*(\\\\|)'\n },\n 'graphql-value': {\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-variable-name'},\n {include: '#graphql-float-value'},\n {include: '#graphql-string-value'},\n {include: '#graphql-boolean-value'},\n {include: '#graphql-null-value'},\n {include: '#graphql-enum-value'},\n {include: '#graphql-list-value'},\n {include: '#graphql-object-value'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-variable-assignment': {\n applyEndPatternLast: true,\n begin: '\\\\s(=)',\n beginCaptures: {1: {name: 'punctuation.assignment.graphql'}},\n end: '(?=[\\n,)])',\n patterns: [{include: '#graphql-value'}]\n },\n 'graphql-variable-definition': {\n begin: '\\\\s*(\\\\$?[_A-Za-z][_0-9A-Za-z]*)(?=\\\\s*\\\\(|:)',\n beginCaptures: {1: {name: 'variable.parameter.graphql'}},\n end: '(?=\\\\s*((\\\\$?[_A-Za-z][_0-9A-Za-z]*)\\\\s*(\\\\(|:)|(}|\\\\))))|\\\\s*(,)',\n endCaptures: {5: {name: 'punctuation.comma.graphql'}},\n name: 'meta.variables.graphql',\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-directive'},\n {include: '#graphql-colon'},\n {include: '#graphql-input-types'},\n {include: '#graphql-variable-assignment'},\n {include: '#literal-quasi-embedded'},\n {include: '#graphql-skip-newlines'}\n ]\n },\n 'graphql-variable-definitions': {\n begin: '\\\\s*(\\\\()',\n captures: {1: {name: 'meta.brace.round.graphql'}},\n end: '\\\\s*(\\\\))',\n patterns: [\n {include: '#graphql-comment'},\n {include: '#graphql-description-docstring'},\n {include: '#graphql-description-singleline'},\n {include: '#graphql-variable-definition'},\n {include: '#literal-quasi-embedded'}\n ]\n },\n 'graphql-variable-name': {\n captures: {1: {name: 'variable.graphql'}},\n match: '\\\\s*(\\\\$[_A-Za-z][_0-9A-Za-z]*)'\n },\n 'native-interpolation': {\n begin: '\\\\s*(\\\\${)',\n beginCaptures: {1: {name: 'keyword.other.substitution.begin'}},\n end: '(})',\n endCaptures: {1: {name: 'keyword.other.substitution.end'}},\n name: 'native.interpolation',\n patterns: [\n {include: 'source.js'},\n {include: 'source.ts'},\n {include: 'source.tsx'}\n ]\n }\n },\n scopeName: 'source.graphql'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is licensed permissive.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [\n '.cnf',\n '.dof',\n '.ini',\n '.lektorproject',\n '.outjob',\n '.pcbdoc',\n '.prefs',\n '.prjpcb',\n '.properties',\n '.schdoc',\n '.url'\n ],\n names: ['altium', 'altium-designer', 'dosini', 'ini'],\n patterns: [\n {\n begin: '(^[ \\\\t]+)?(?=#)',\n beginCaptures: {1: {name: 'punctuation.whitespace.comment.leading.ini'}},\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '#',\n beginCaptures: {0: {name: 'punctuation.definition.comment.ini'}},\n end: '\\\\n',\n name: 'comment.line.number-sign.ini'\n }\n ]\n },\n {\n begin: '(^[ \\\\t]+)?(?=;)',\n beginCaptures: {1: {name: 'punctuation.whitespace.comment.leading.ini'}},\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: ';',\n beginCaptures: {0: {name: 'punctuation.definition.comment.ini'}},\n end: '\\\\n',\n name: 'comment.line.semicolon.ini'\n }\n ]\n },\n {\n captures: {\n 1: {name: 'keyword.other.definition.ini'},\n 2: {name: 'punctuation.separator.key-value.ini'}\n },\n match: '\\\\b([a-zA-Z0-9_.-]+)\\\\b\\\\s*(=)'\n },\n {\n captures: {\n 1: {name: 'punctuation.definition.entity.ini'},\n 3: {name: 'punctuation.definition.entity.ini'}\n },\n match: '^(\\\\[)(.*?)(\\\\])',\n name: 'entity.name.section.group-title.ini'\n },\n {\n begin: \"'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ini'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.ini'}},\n name: 'string.quoted.single.ini',\n patterns: [{match: '\\\\\\\\.', name: 'constant.character.escape.ini'}]\n },\n {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ini'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ini'}},\n name: 'string.quoted.double.ini'\n }\n ],\n scopeName: 'source.ini'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed permissive.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.ck', '.jav', '.java', '.jsh', '.uc'],\n names: ['chuck', 'java', 'unrealscript'],\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.other.package.java'},\n 2: {name: 'storage.modifier.package.java'},\n 3: {name: 'punctuation.terminator.java'}\n },\n match: '^\\\\s*(package)\\\\b(?:\\\\s*([^ ;$]+)\\\\s*(;)?)?',\n name: 'meta.package.java'\n },\n {\n begin: '(import static)\\\\b\\\\s*',\n beginCaptures: {1: {name: 'keyword.other.import.static.java'}},\n captures: {\n 1: {name: 'keyword.other.import.java'},\n 2: {name: 'storage.modifier.import.java'},\n 3: {name: 'punctuation.terminator.java'}\n },\n contentName: 'storage.modifier.import.java',\n end: '\\\\s*(?:$|(;))',\n endCaptures: {1: {name: 'punctuation.terminator.java'}},\n name: 'meta.import.java',\n patterns: [\n {match: '\\\\.', name: 'punctuation.separator.java'},\n {match: '\\\\s', name: 'invalid.illegal.character_not_allowed_here.java'}\n ]\n },\n {\n begin: '(import)\\\\b\\\\s*',\n beginCaptures: {1: {name: 'keyword.other.import.java'}},\n captures: {\n 1: {name: 'keyword.other.import.java'},\n 2: {name: 'storage.modifier.import.java'},\n 3: {name: 'punctuation.terminator.java'}\n },\n contentName: 'storage.modifier.import.java',\n end: '\\\\s*(?:$|(;))',\n endCaptures: {1: {name: 'punctuation.terminator.java'}},\n name: 'meta.import.java',\n patterns: [\n {match: '\\\\.', name: 'punctuation.separator.java'},\n {match: '\\\\s', name: 'invalid.illegal.character_not_allowed_here.java'}\n ]\n },\n {include: '#code'}\n ],\n repository: {\n 'all-types': {\n patterns: [\n {include: '#primitive-arrays'},\n {include: '#primitive-types'},\n {include: '#object-types'}\n ]\n },\n annotations: {\n patterns: [\n {\n begin: '(@[^ (]+)(\\\\()',\n beginCaptures: {\n 1: {name: 'storage.type.annotation.java'},\n 2: {name: 'punctuation.definition.annotation-arguments.begin.java'}\n },\n end: '(\\\\))',\n endCaptures: {\n 1: {name: 'punctuation.definition.annotation-arguments.end.java'}\n },\n name: 'meta.declaration.annotation.java',\n patterns: [\n {\n captures: {\n 1: {name: 'constant.other.key.java'},\n 2: {name: 'keyword.operator.assignment.java'}\n },\n match: '(\\\\w*)\\\\s*(=)'\n },\n {include: '#code'},\n {match: ',', name: 'punctuation.separator.property.java'}\n ]\n },\n {match: '@\\\\w*', name: 'storage.type.annotation.java'}\n ]\n },\n 'anonymous-classes-and-new': {\n begin: '\\\\bnew\\\\b',\n beginCaptures: {0: {name: 'keyword.control.new.java'}},\n end: '(?<=\\\\)|\\\\])(?!\\\\s*{)|(?<=})|(?=;)',\n patterns: [\n {\n begin: '(\\\\w+)\\\\s*(?=\\\\[)',\n beginCaptures: {1: {name: 'storage.type.java'}},\n end: '(})|(?=\\\\s*(?:,|;|\\\\)))',\n endCaptures: {1: {name: 'punctuation.section.block.end.java'}},\n patterns: [\n {begin: '\\\\[', end: '\\\\]', patterns: [{include: '#code'}]},\n {\n begin: '{',\n beginCaptures: {\n 0: {name: 'punctuation.section.block.begin.java'}\n },\n end: '(?=})',\n patterns: [{include: '#code'}]\n }\n ]\n },\n {\n begin: '(?=\\\\w.*\\\\()',\n end: '(?<=\\\\))',\n patterns: [\n {include: '#object-types'},\n {\n begin: '\\\\(',\n beginCaptures: {1: {name: 'storage.type.java'}},\n end: '\\\\)',\n patterns: [{include: '#code'}]\n }\n ]\n },\n {\n begin: '{',\n beginCaptures: {\n 0: {name: 'punctuation.section.inner-class.begin.java'}\n },\n end: '}',\n endCaptures: {0: {name: 'punctuation.section.inner-class.end.java'}},\n name: 'meta.inner-class.java',\n patterns: [{include: '#class-body'}]\n }\n ]\n },\n assertions: {\n patterns: [\n {\n begin: '\\\\b(assert)\\\\s',\n beginCaptures: {1: {name: 'keyword.control.assert.java'}},\n end: '$',\n name: 'meta.declaration.assertion.java',\n patterns: [\n {\n match: ':',\n name: 'keyword.operator.assert.expression-seperator.java'\n },\n {include: '#code'}\n ]\n }\n ]\n },\n class: {\n begin: '(?=\\\\w?[\\\\w\\\\s]*(?:class|(?:@)?interface|enum)\\\\s+\\\\w+)',\n end: '}',\n endCaptures: {0: {name: 'punctuation.section.class.end.java'}},\n name: 'meta.class.java',\n patterns: [\n {include: '#storage-modifiers'},\n {include: '#comments'},\n {\n captures: {\n 1: {name: 'storage.modifier.java'},\n 2: {name: 'entity.name.type.class.java'}\n },\n match: '(class|(?:@)?interface|enum)\\\\s+(\\\\w+)',\n name: 'meta.class.identifier.java'\n },\n {\n begin: 'extends',\n beginCaptures: {0: {name: 'storage.modifier.extends.java'}},\n end: '(?={|implements)',\n name: 'meta.definition.class.inherited.classes.java',\n patterns: [\n {include: '#object-types-inherited'},\n {include: '#comments'}\n ]\n },\n {\n begin: '(implements)\\\\s',\n beginCaptures: {1: {name: 'storage.modifier.implements.java'}},\n end: '(?=\\\\s*extends|\\\\{)',\n name: 'meta.definition.class.implemented.interfaces.java',\n patterns: [\n {include: '#object-types-inherited'},\n {include: '#comments'}\n ]\n },\n {\n begin: '{',\n beginCaptures: {0: {name: 'punctuation.section.class.begin.java'}},\n end: '(?=})',\n name: 'meta.class.body.java',\n patterns: [{include: '#class-body'}]\n }\n ]\n },\n 'class-body': {\n patterns: [\n {include: '#comments'},\n {include: '#class'},\n {include: '#enums'},\n {include: '#variables'},\n {include: '#methods'},\n {include: '#annotations'},\n {include: '#storage-modifiers'},\n {include: '#code'}\n ]\n },\n code: {\n patterns: [\n {include: '#comments'},\n {include: '#class'},\n {\n begin: '{',\n beginCaptures: {0: {name: 'punctuation.section.block.begin.java'}},\n end: '}',\n endCaptures: {0: {name: 'punctuation.section.block.end.java'}},\n patterns: [{include: '#code'}]\n },\n {include: '#assertions'},\n {include: '#parens'},\n {include: '#constants-and-special-vars'},\n {include: '#anonymous-classes-and-new'},\n {include: '#annotations'},\n {include: '#keywords'},\n {include: '#storage-modifiers'},\n {include: '#method-call'},\n {include: '#strings'},\n {include: '#all-types'}\n ]\n },\n comments: {\n patterns: [\n {\n captures: {0: {name: 'punctuation.definition.comment.java'}},\n match: '/\\\\*\\\\*/',\n name: 'comment.block.empty.java'\n },\n {include: 'text.html.javadoc'},\n {include: '#comments-inline'}\n ]\n },\n 'comments-inline': {\n patterns: [\n {\n begin: '/\\\\*',\n captures: {0: {name: 'punctuation.definition.comment.java'}},\n end: '\\\\*/',\n name: 'comment.block.java'\n },\n {\n begin: '(^[ \\\\t]+)?(?=//)',\n beginCaptures: {\n 1: {name: 'punctuation.whitespace.comment.leading.java'}\n },\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '//',\n beginCaptures: {0: {name: 'punctuation.definition.comment.java'}},\n end: '\\\\n',\n name: 'comment.line.double-slash.java'\n }\n ]\n }\n ]\n },\n 'constants-and-special-vars': {\n patterns: [\n {match: '\\\\b(true|false|null)\\\\b', name: 'constant.language.java'},\n {match: '\\\\b(this|super)\\\\b', name: 'variable.language.java'},\n {\n match:\n '\\\\b0[xX][0-9A-Fa-f]([0-9A-Fa-f_]*[0-9A-Fa-f])?[lL]?(?!\\\\w|\\\\.)',\n name: 'constant.numeric.hex.java'\n },\n {\n match: '\\\\b0[0-7_]*[0-7][lL]?\\\\b',\n name: 'constant.numeric.octal.java'\n },\n {\n match: '\\\\b0[bB][01]([01_]*[01])?[lL]?\\\\b',\n name: 'constant.numeric.binary.java'\n },\n {\n match: '\\\\b(0|[1-9]([0-9_]*[0-9])?)[lL]?(?!\\\\w|\\\\.)',\n name: 'constant.numeric.integer.java'\n },\n {\n match:\n '(?x)\\n\\t\\t\\t\\t\\t\\t(?\\n\\t\\t\\t\\t\\t\\t\\t0[xX]\\t\\t\\t\\t\\t\\t\\t\\t\\t# Start literal\\n\\t\\t\\t\\t\\t\\t\\t([0-9A-Fa-f]([0-9A-Fa-f_]*[0-9A-Fa-f])?)?\\t\\t\\t\\t\\t\\t# Optional Number\\n\\t\\t\\t\\t\\t\\t\\t(\\n\\t\\t\\t\\t\\t\\t\\t\\t(?<=[0-9A-Fa-f])\\\\.\\t\\t\\t\\t\\t\\t\\t# A number must exist on\\n\\t\\t\\t\\t\\t\\t | \\\\.(?=[0-9A-Fa-f])\\t\\t\\t\\t\\t\\t\\t# one side of the decimal\\n\\t\\t\\t\\t\\t\\t | (?<=[0-9A-Fa-f])\\t\\t\\t\\t\\t\\t\\t\\t# Decimal not required\\n\\t\\t\\t\\t\\t\\t\\t)\\n\\t\\t\\t\\t\\t\\t\\t([0-9A-Fa-f]([0-9A-Fa-f_]*[0-9A-Fa-f])?)?\\t\\t\\t\\t\\t\\t# Optional Number\\n\\t\\t\\t\\t\\t\\t\\t[pP]\\t\\t\\t\\t\\t\\t\\t\\t\\t# Exponent Indicator\\n\\t\\t\\t\\t\\t\\t\\t[+-]?(0|[1-9]([0-9_]*[0-9])?)\\t\\t\\t# Signed Integer\\n\\t\\t\\t\\t\\t\\t\\t[fFdD]?\\t\\t\\t\\t\\t\\t\\t\\t\\t# Float Type Suffix\\n\\t\\t\\t\\t\\t\\t)\\n\\t\\t\\t\\t\\t\\t(?!\\\\w)\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t# Ensure word boundry\\n\\t\\t\\t\\t\\t',\n name: 'constant.numeric.hex-float.java'\n },\n {\n match:\n '(?x)\\n\\t\\t\\t\\t\\t\\t(?\\n\\t\\t\\t\\t\\t\\t\\t(\\n\\t\\t\\t\\t\\t\\t\\t\\t(0|[1-9]([0-9_]*[0-9])?)\\t\\t\\t\\t# Leading digits\\n\\t\\t\\t\\t\\t\\t\\t\\t(?=[eEfFdD.])\\t\\t\\t\\t\\t\\t\\t# Allow for numbers without .\\n\\t\\t\\t\\t\\t\\t\\t)?\\n\\t\\t\\t\\t\\t\\t\\t(\\n\\t\\t\\t\\t\\t\\t\\t\\t(?<=[0-9])(?=[eEfFdD])\\t\\t\\t\\t\\t# Allow for numbers without .\\n\\t\\t\\t\\t\\t\\t\\t | \\\\.\\n\\t\\t\\t\\t\\t\\t\\t)\\n\\t\\t\\t\\t\\t\\t\\t(\\n\\t\\t\\t\\t\\t\\t\\t\\t[0-9]([0-9_]*[0-9])?\\t\\t\\t\\t\\t# Numbers after .\\n\\t\\t\\t\\t\\t\\t\\t)?\\n\\t\\t\\t\\t\\t\\t\\t(\\n\\t\\t\\t\\t\\t\\t\\t\\t[eE][+-]?(0|[1-9]([0-9_]*[0-9])?)\\t\\t# Exponent\\n\\t\\t\\t\\t\\t\\t\\t)?\\n\\t\\t\\t\\t\\t\\t\\t[fFdD]?\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t# Float Type Suffix\\n\\t\\t\\t\\t\\t\\t)\\n\\t\\t\\t\\t\\t\\t(?!\\\\w)\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t\\t# Ensure word boundry\\n\\t\\t\\t\\t\\t',\n name: 'constant.numeric.float.java'\n },\n {\n captures: {1: {name: 'keyword.operator.dereference.java'}},\n match: '(\\\\.)?\\\\b([A-Z][A-Z0-9_]+)(?!<|\\\\.class|\\\\s*\\\\w+\\\\s*=)\\\\b',\n name: 'constant.other.java'\n }\n ]\n },\n enums: {\n begin: '^(?=\\\\s*[A-Z0-9_]+\\\\s*({|\\\\(|,))',\n end: '(?=;|})',\n patterns: [\n {\n begin: '\\\\w+',\n beginCaptures: {0: {name: 'constant.other.enum.java'}},\n end: '(?=,|;|})',\n name: 'meta.enum.java',\n patterns: [\n {include: '#parens'},\n {\n begin: '{',\n beginCaptures: {0: {name: 'punctuation.section.enum.begin.java'}},\n end: '}',\n endCaptures: {0: {name: 'punctuation.section.enum.end.java'}},\n patterns: [{include: '#class-body'}]\n }\n ]\n },\n {include: '#comments'},\n {include: '#annotations'}\n ]\n },\n keywords: {\n patterns: [\n {\n match: '\\\\b(try|catch|finally|throw)\\\\b',\n name: 'keyword.control.catch-exception.java'\n },\n {match: '\\\\?|:', name: 'keyword.control.ternary.java'},\n {\n match:\n '\\\\b(return|break|case|continue|default|do|while|for|switch|if|else)\\\\b',\n name: 'keyword.control.java'\n },\n {match: '\\\\b(instanceof)\\\\b', name: 'keyword.operator.java'},\n {match: '(<<|>>>?|~|\\\\^)', name: 'keyword.operator.bitwise.java'},\n {\n match: '((&|\\\\^|\\\\||<<|>>>?)=)',\n name: 'keyword.operator.assignment.bitwise.java'\n },\n {\n match: '(===?|!=|<=|>=|<>|<|>)',\n name: 'keyword.operator.comparison.java'\n },\n {\n match: '([+*/%-]=)',\n name: 'keyword.operator.assignment.arithmetic.java'\n },\n {match: '(=)', name: 'keyword.operator.assignment.java'},\n {\n match: '(\\\\-\\\\-|\\\\+\\\\+)',\n name: 'keyword.operator.increment-decrement.java'\n },\n {\n match: '(\\\\-|\\\\+|\\\\*|\\\\/|%)',\n name: 'keyword.operator.arithmetic.java'\n },\n {match: '(!|&&|\\\\|\\\\|)', name: 'keyword.operator.logical.java'},\n {match: '(\\\\||&)', name: 'keyword.operator.bitwise.java'},\n {\n match: '(?<=\\\\S)\\\\.(?=\\\\S)',\n name: 'keyword.operator.dereference.java'\n },\n {match: ';', name: 'punctuation.terminator.java'}\n ]\n },\n 'method-call': {\n begin: '([\\\\w$]+)(\\\\()',\n beginCaptures: {\n 1: {name: 'meta.method.java'},\n 2: {name: 'punctuation.definition.method-parameters.begin.java'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.method-parameters.end.java'}\n },\n name: 'meta.method-call.java',\n patterns: [\n {match: ',', name: 'punctuation.definition.seperator.parameter.java'},\n {include: '#code'}\n ]\n },\n methods: {\n begin: '(?!new)(?=[\\\\w<].*\\\\s+)(?=([^=/]|/(?!/))+\\\\()',\n end: '(})|(?=;)',\n endCaptures: {1: {name: 'punctuation.section.method.end.java'}},\n name: 'meta.method.java',\n patterns: [\n {include: '#storage-modifiers'},\n {\n begin: '(\\\\w+)\\\\s*\\\\(',\n beginCaptures: {1: {name: 'entity.name.function.java'}},\n end: '\\\\)',\n name: 'meta.method.identifier.java',\n patterns: [{include: '#parameters'}, {include: '#comments'}]\n },\n {\n begin: '<',\n end: '>',\n name: 'storage.type.token.java',\n patterns: [\n {include: '#object-types'},\n {\n begin: '<',\n end: '>|[^\\\\w\\\\s,\\\\[\\\\]<]',\n name: 'storage.type.generic.java'\n }\n ]\n },\n {\n begin: '(?=\\\\w.*\\\\s+\\\\w+\\\\s*\\\\()',\n end: '(?=\\\\w+\\\\s*\\\\()',\n name: 'meta.method.return-type.java',\n patterns: [{include: '#all-types'}, {include: '#comments'}]\n },\n {include: '#throws'},\n {\n begin: '{',\n beginCaptures: {0: {name: 'punctuation.section.method.begin.java'}},\n end: '(?=})',\n name: 'meta.method.body.java',\n patterns: [{include: '#code'}]\n },\n {include: '#comments'}\n ]\n },\n 'object-types': {\n patterns: [\n {\n begin: '\\\\b((?:[a-z]\\\\w*\\\\.)*[A-Z]+\\\\w*)<',\n end: '>|[^\\\\w\\\\s,\\\\?<\\\\[\\\\]]',\n name: 'storage.type.generic.java',\n patterns: [\n {include: '#object-types'},\n {\n begin: '<',\n end: '>|[^\\\\w\\\\s,\\\\[\\\\]<]',\n name: 'storage.type.generic.java'\n }\n ]\n },\n {\n begin: '\\\\b((?:[a-z]\\\\w*\\\\.)*[A-Z]+\\\\w*)(?=\\\\[)',\n end: '(?=[^\\\\]\\\\s])',\n name: 'storage.type.object.array.java',\n patterns: [{begin: '\\\\[', end: '\\\\]', patterns: [{include: '#code'}]}]\n },\n {\n captures: {1: {name: 'keyword.operator.dereference.java'}},\n match: '\\\\b(?:[a-z]\\\\w*(\\\\.))*[A-Z]+\\\\w*\\\\b',\n name: 'storage.type.java'\n }\n ]\n },\n 'object-types-inherited': {\n patterns: [\n {\n begin: '\\\\b((?:[a-z]\\\\w*\\\\.)*[A-Z]+\\\\w*)<',\n end: '>|[^\\\\w\\\\s,<]',\n name: 'entity.other.inherited-class.java',\n patterns: [\n {include: '#object-types'},\n {\n begin: '<',\n end: '>|[^\\\\w\\\\s,<]',\n name: 'storage.type.generic.java'\n }\n ]\n },\n {\n captures: {1: {name: 'keyword.operator.dereference.java'}},\n match: '\\\\b(?:[a-z]\\\\w*(\\\\.))*[A-Z]+\\\\w*',\n name: 'entity.other.inherited-class.java'\n }\n ]\n },\n parameters: {\n patterns: [\n {match: 'final', name: 'storage.modifier.java'},\n {include: '#annotations'},\n {include: '#primitive-arrays'},\n {include: '#primitive-types'},\n {include: '#object-types'},\n {match: '\\\\w+', name: 'variable.parameter.java'}\n ]\n },\n parens: {begin: '\\\\(', end: '\\\\)', patterns: [{include: '#code'}]},\n 'primitive-arrays': {\n patterns: [\n {\n match:\n '\\\\b(?:void|boolean|byte|char|short|int|float|long|double)(\\\\[\\\\])*\\\\b',\n name: 'storage.type.primitive.array.java'\n }\n ]\n },\n 'primitive-types': {\n patterns: [\n {\n match:\n '\\\\b(?:void|var|boolean|byte|char|short|int|float|long|double)\\\\b',\n name: 'storage.type.primitive.java'\n }\n ]\n },\n 'storage-modifiers': {\n captures: {1: {name: 'storage.modifier.java'}},\n match:\n '\\\\b(public|private|protected|static|final|native|synchronized|volatile|abstract|threadsafe|transient)\\\\b'\n },\n strings: {\n patterns: [\n {\n begin: '\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.java'}\n },\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.java'}},\n name: 'string.quoted.double.java',\n patterns: [{match: '\\\\\\\\.', name: 'constant.character.escape.java'}]\n },\n {\n begin: \"'\",\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.java'}\n },\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.java'}},\n name: 'string.quoted.single.java',\n patterns: [{match: '\\\\\\\\.', name: 'constant.character.escape.java'}]\n }\n ]\n },\n throws: {\n begin: 'throws',\n beginCaptures: {0: {name: 'storage.modifier.java'}},\n end: '(?={|;)',\n name: 'meta.throwables.java',\n patterns: [{include: '#object-types'}]\n },\n values: {\n patterns: [\n {include: '#strings'},\n {include: '#object-types'},\n {include: '#constants-and-special-vars'}\n ]\n },\n variables: {\n applyEndPatternLast: true,\n patterns: [\n {\n begin:\n '(?x:(?=\\n (?:\\n (?:private|protected|public|native|synchronized|volatile|abstract|threadsafe|transient|static|final) # visibility/modifier\\n |\\n (?:def)\\n |\\n (?:void|boolean|byte|char|short|int|float|long|double)\\n |\\n (?:(?:[a-z]\\\\w*\\\\.)*[A-Z]+\\\\w*) # object type\\n )\\n \\\\s+\\n (?!private|protected|public|native|synchronized|volatile|abstract|threadsafe|transient|static|final|def|void|boolean|byte|char|short|int|float|long|double)\\n [\\\\w\\\\d_<>\\\\[\\\\],\\\\?][\\\\w\\\\d_<>\\\\[\\\\],\\\\? \\\\t]*\\n (?:=|$)\\n \\n\\t\\t\\t\\t\\t))',\n end: '(?=;)',\n name: 'meta.definition.variable.java',\n patterns: [\n {match: '\\\\s'},\n {\n captures: {1: {name: 'constant.other.variable.java'}},\n match: '([A-Z_0-9]+)\\\\s+(?=\\\\=)'\n },\n {\n captures: {1: {name: 'meta.definition.variable.name.java'}},\n match: '(\\\\w[^\\\\s,]*)\\\\s+(?=\\\\=)'\n },\n {\n begin: '=',\n beginCaptures: {0: {name: 'keyword.operator.assignment.java'}},\n end: '(?=;)',\n patterns: [{include: '#code'}]\n },\n {\n captures: {1: {name: 'meta.definition.variable.name.java'}},\n match: '(\\\\w[^\\\\s=]*)(?=\\\\s*;)'\n },\n {include: '#code'}\n ]\n }\n ]\n }\n },\n scopeName: 'source.java'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [\n '._js',\n '.bones',\n '.cjs',\n '.cy',\n '.es6',\n '.jake',\n '.javascript',\n '.js',\n '.js.erb',\n '.jsb',\n '.jscad',\n '.jsfl',\n '.jslib',\n '.jsm',\n '.json5',\n '.jsonld',\n '.jspre',\n '.jss',\n '.jsx',\n '.mjs',\n '.njs',\n '.pac',\n '.sjs',\n '.ssjs',\n '.xsjs',\n '.xsjslib'\n ],\n names: [\n 'cycript',\n 'javascript',\n 'javascript+erb',\n 'js',\n 'json5',\n 'jsonld',\n 'node',\n 'qt-script'\n ],\n patterns: [\n {\n begin: '(?\\n)',\n end: '(?x)\\n(?<=})|\\n((?!\\n \\\\s*{|\\n \\\\G\\\\(|\\n \\\\G[\\\\w$]+|\\n \\\\s*/\\\\*|\\\\s*//\\n)(?=\\\\s*\\\\S))',\n patterns: [\n {include: '#comments'},\n {include: '#function_body'},\n {\n begin: '\\\\G',\n end: '(?<=(=>))',\n name: 'meta.function.arrow.js',\n patterns: [{include: '#arrow_function_innards'}]\n }\n ]\n },\n {\n begin:\n '(?x)\\n(?=\\n (\\\\.)?[a-zA-Z_$][\\\\w$]*\\n \\\\s*(=)\\\\s*\\n ((\\\\(([^\\\\(\\\\)]*)?\\\\))|[\\\\w$]+)\\n \\\\s*=>\\n)',\n end: '(?x)\\n(?<=})|\\n((?!\\n \\\\s*{|\\n \\\\G(\\\\.)?[a-zA-Z_$][\\\\w$]*\\\\s*(=)\\\\s*\\\\(|\\n \\\\G(\\\\.)?[a-zA-Z_$][\\\\w$]*\\\\s*(=)\\\\s*[\\\\w$]+|\\n \\\\s*/\\\\*|\\\\s*//\\n)(?=\\\\s*\\\\S))',\n patterns: [\n {include: '#comments'},\n {include: '#function_body'},\n {\n begin: '\\\\G',\n end: '(?<=(=>))',\n name: 'meta.function.arrow.js',\n patterns: [\n {\n captures: {\n 1: {name: 'meta.delimiter.method.period.js'},\n 2: {name: 'entity.name.function.js'},\n 3: {name: 'keyword.operator.assignment.js'}\n },\n match: '\\\\G(\\\\.)?([a-zA-Z_$][\\\\w$]*)\\\\s*(=)'\n },\n {include: '#arrow_function_innards'}\n ]\n }\n ]\n },\n {\n begin:\n '(?x)\\n(?=\\n \\\\b[a-zA-Z_$][\\\\w$]*\\n \\\\s*:\\\\s*\\n ((\\\\(([^\\\\(\\\\)]*)?\\\\))|[\\\\w$]+)\\n \\\\s*=>\\n)',\n end: '(?x)\\n(?<=})|\\n((?!\\n \\\\s*{|\\n \\\\G[\\\\w$]+\\\\s*:|\\n \\\\s*/\\\\*|\\\\s*//\\n)(?=\\\\s*\\\\S))',\n patterns: [\n {include: '#comments'},\n {include: '#function_body'},\n {\n begin: '\\\\G',\n end: '(?<=(=>))',\n name: 'meta.function.arrow.json.js',\n patterns: [\n {\n captures: {\n 1: {name: 'entity.name.function.js'},\n 2: {name: 'keyword.operator.assignment.js'}\n },\n match: '\\\\b([a-zA-Z_$][\\\\w$]*)\\\\s*(:)\\\\s*'\n },\n {include: '#arrow_function_innards'}\n ]\n }\n ]\n },\n {\n begin:\n '(?x)\\n(?=\\n ((\\'[^\\']*?\\')|(\"[^\"]*?\"))\\n \\\\s*:\\\\s*\\n ((\\\\(([^\\\\(\\\\)]*)?\\\\))|[\\\\w$]+)\\n \\\\s*=>\\n)',\n end: '(?x)\\n(?<=})|\\n((?!\\n \\\\G((\\'[^\\']*?\\')|(\"[^\"]*?\"))|\\n \\\\s*{|\\n \\\\s*/\\\\*|\\\\s*//\\n)(?=\\\\s*\\\\S))',\n patterns: [\n {include: '#comments'},\n {include: '#function_body'},\n {\n begin: '\\\\G',\n end: '(?<=(=>))',\n name: 'meta.function.arrow.json.js',\n patterns: [\n {\n captures: {\n 1: {name: 'string.quoted.single.js'},\n 2: {name: 'punctuation.definition.string.begin.js'},\n 3: {name: 'entity.name.function.js'},\n 4: {name: 'punctuation.definition.string.end.js'},\n 5: {name: 'string.quoted.double.js'},\n 6: {name: 'punctuation.definition.string.begin.js'},\n 7: {name: 'entity.name.function.js'},\n 8: {name: 'punctuation.definition.string.end.js'},\n 9: {name: 'keyword.operator.assignment.js'}\n },\n match: '(?:((\\')([^\\']*?)(\\'))|((\")([^\"]*?)(\")))\\\\s*(:)'\n },\n {include: '#arrow_function_innards'}\n ]\n }\n ]\n },\n {\n captures: {\n 0: {name: 'meta.function.arrow.js'},\n 1: {name: 'storage.type.function.arrow.js'}\n },\n match: '(=>)'\n },\n {\n captures: {\n 1: {name: 'storage.type.class.js'},\n 2: {name: 'storage.modifier.js'},\n 3: {name: 'entity.other.inherited-class.js'},\n 4: {name: 'entity.name.type.class.js'},\n 5: {name: 'storage.modifier.js'},\n 6: {name: 'entity.other.inherited-class.js'}\n },\n match:\n '(?x)\\n\\\\b(class)\\n(?:\\n (?:\\\\s+(extends)\\\\s+([a-zA-Z_$][\\\\w$]*))\\n |\\n (?:\\n (?:\\\\s+([a-zA-Z_$][\\\\w$]*))\\n (?:\\\\s+(extends)\\\\s+([a-zA-Z_$][\\\\w$]*))?\\n )\\n)',\n name: 'meta.class.js'\n },\n {\n captures: {\n 1: {name: 'keyword.operator.new.js'},\n 2: {\n name: 'entity.name.type.instance.js',\n patterns: [{match: '\\\\.', name: 'meta.delimiter.property.period.js'}]\n }\n },\n match: '(new)\\\\s+([\\\\w$]+[\\\\w.$]*)',\n name: 'meta.class.instance.constructor.js'\n },\n {\n begin: '(?)',\n name: 'comment.block.html.js'\n },\n {\n match: '(?|&&|\\\\|\\\\|)\\\\s*(/)(?![/*+?])(?=.*/)',\n beginCaptures: {1: {name: 'punctuation.definition.string.begin.js'}},\n end: '(/)([gimsuy]*)',\n endCaptures: {\n 1: {name: 'punctuation.definition.string.end.js'},\n 2: {name: 'meta.flag.regexp'}\n },\n name: 'string.regexp.js',\n patterns: [{include: 'source.js.regexp'}]\n },\n {\n begin: '\\\\?',\n beginCaptures: {0: {name: 'keyword.operator.ternary.js'}},\n end: ':',\n endCaptures: {0: {name: 'keyword.operator.ternary.js'}},\n patterns: [{include: '#prevent_object_keys_matching'}, {include: '$self'}]\n },\n {include: '#operators'},\n {include: '#method_calls'},\n {include: '#function_calls'},\n {include: '#numbers'},\n {include: '#objects'},\n {include: '#properties'},\n {\n match:\n '((?', name: 'storage.type.function.arrow.js'},\n {include: '#function_params'},\n {\n captures: {\n 0: {name: 'meta.parameters.js'},\n 1: {name: 'variable.parameter.function.js'}\n },\n match: '([a-zA-Z_$][\\\\w$]*)(?=\\\\s*=>)'\n },\n {\n captures: {\n 0: {name: 'meta.parameters.js'},\n 1: {name: 'invalid.illegal.identifier.js'}\n },\n match: '(\\\\d[\\\\w$]*)'\n }\n ]\n },\n comments: {\n patterns: [\n {\n captures: {\n 1: {name: 'punctuation.definition.comment.begin.js'},\n 2: {name: 'punctuation.definition.comment.end.js'}\n },\n match: '(/\\\\*)(\\\\*/)',\n name: 'comment.block.empty.js'\n },\n {\n begin: '/\\\\*\\\\*',\n beginCaptures: {0: {name: 'punctuation.definition.comment.begin.js'}},\n end: '\\\\*/',\n endCaptures: {0: {name: 'punctuation.definition.comment.end.js'}},\n name: 'comment.block.documentation.js',\n patterns: [{include: 'source.jsdoc'}]\n },\n {\n begin: '/\\\\*',\n beginCaptures: {0: {name: 'punctuation.definition.comment.begin.js'}},\n end: '\\\\*/',\n endCaptures: {0: {name: 'punctuation.definition.comment.end.js'}},\n name: 'comment.block.js'\n },\n {\n begin: '//',\n beginCaptures: {0: {name: 'punctuation.definition.comment.js'}},\n end: '$',\n name: 'comment.line.double-slash.js'\n }\n ]\n },\n function_body: {\n patterns: [\n {\n begin: '{',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.function.body.begin.bracket.curly.js'\n }\n },\n end: '}',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.function.body.end.bracket.curly.js'\n }\n },\n patterns: [{include: '$self'}]\n }\n ]\n },\n function_calls: {\n patterns: [\n {\n begin: '([\\\\w$]+)\\\\s*(?=\\\\()',\n beginCaptures: {\n 1: {\n patterns: [\n {\n match:\n '(?x)\\n\\\\b(isNaN|isFinite|eval|uneval|parseInt|parseFloat|decodeURI|\\ndecodeURIComponent|encodeURI|encodeURIComponent|escape|unescape|\\nrequire|set(Interval|Timeout)|clear(Interval|Timeout))\\\\b',\n name: 'support.function.js'\n },\n {match: '[a-zA-Z_$][\\\\w$]*', name: 'entity.name.function.js'},\n {match: '\\\\d[\\\\w$]*', name: 'invalid.illegal.identifier.js'}\n ]\n }\n },\n end: '(?<=\\\\))',\n name: 'meta.function-call.js',\n patterns: [{include: '#arguments'}]\n }\n ]\n },\n function_innards: {\n patterns: [\n {\n captures: {\n 1: {name: 'storage.modifier.async.js'},\n 2: {name: 'storage.type.function.js'},\n 3: {name: 'storage.modifier.generator.js'}\n },\n match: '(?:\\\\b(async)\\\\b\\\\s*)?\\\\b(function)\\\\b(?:\\\\s*(\\\\*))?'\n },\n {\n match: '[a-zA-Z_$][\\\\w$]*(?=\\\\s*\\\\()',\n name: 'entity.name.function.js'\n },\n {include: '#function_params'},\n {include: '#comments'}\n ]\n },\n function_params: {\n patterns: [\n {\n begin: '\\\\(',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.parameters.begin.bracket.round.js'\n }\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.parameters.end.bracket.round.js'}\n },\n name: 'meta.parameters.js',\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.operator.spread.js'},\n 2: {name: 'variable.parameter.rest.function.js'}\n },\n match: '(\\\\.\\\\.\\\\.)([a-zA-Z_$][\\\\w$]*)'\n },\n {include: '$self'},\n {match: '[a-zA-Z_$][\\\\w$]*', name: 'variable.parameter.function.js'}\n ]\n }\n ]\n },\n interpolated_js: {\n patterns: [\n {\n begin: '\\\\${',\n captures: {0: {name: 'punctuation.section.embedded.js'}},\n end: '}',\n name: 'source.js.embedded.source',\n patterns: [\n {\n begin: '{',\n beginCaptures: {0: {name: 'meta.brace.curly.js'}},\n end: '}',\n endCaptures: {0: {name: 'meta.brace.curly.js'}},\n patterns: [{include: '$self'}]\n },\n {include: '$self'}\n ]\n }\n ]\n },\n method_calls: {\n patterns: [\n {\n begin: '(\\\\.)\\\\s*([\\\\w$]+)\\\\s*(?=\\\\()',\n beginCaptures: {\n 1: {name: 'meta.delimiter.method.period.js'},\n 2: {\n patterns: [\n {\n match:\n '(?x)\\n\\\\bon(Rowsinserted|Rowsdelete|Rowenter|Rowexit|Resize|Resizestart|Resizeend|Reset|\\nReadystatechange|Mouseout|Mouseover|Mousedown|Mouseup|Mousemove|\\nBefore(cut|deactivate|unload|update|paste|print|editfocus|activate)|\\nBlur|Scrolltop|Submit|Select|Selectstart|Selectionchange|Hover|Help|\\nChange|Contextmenu|Controlselect|Cut|Cellchange|Clock|Close|Deactivate|\\nDatasetchanged|Datasetcomplete|Dataavailable|Drop|Drag|Dragstart|Dragover|\\nDragdrop|Dragenter|Dragend|Dragleave|Dblclick|Unload|Paste|Propertychange|Error|\\nErrorupdate|Keydown|Keyup|Keypress|Focus|Load|Activate|Afterupdate|Afterprint|Abort)\\\\b',\n name: 'support.function.event-handler.js'\n },\n {\n match:\n '(?x)\\n\\\\b(catch|finally|then|shift|showModelessDialog|showModalDialog|showHelp|scroll|scrollX|scrollByPages|\\nscrollByLines|scrollY|scrollTo|stop|strike|sizeToContent|sidebar|signText|sort|\\nsup|sub|substr|substring|splice|split|send|set(Milliseconds|Seconds|Minutes|Hours|\\nMonth|Year|FullYear|Date|UTC(Milliseconds|Seconds|Minutes|Hours|Month|FullYear|Date)|\\nTime|Hotkeys|Cursor|ZOptions|Active|Resizable|RequestHeader)|search|slice|\\nsavePreferences|small|home|handleEvent|navigate|char|charCodeAt|charAt|concat|\\ncontextual|confirm|compile|clear|captureEvents|call|createStyleSheet|createPopup|\\ncreateEventObject|to(GMTString|UTCString|String|Source|UpperCase|LowerCase|LocaleString)|\\ntest|taint|taintEnabled|indexOf|italics|disableExternalCapture|dump|detachEvent|unshift|\\nuntaint|unwatch|updateCommands|join|javaEnabled|pop|push|plugins.refresh|paddings|parse|stringify|\\nprint|prompt|preference|enableExternalCapture|exec|execScript|valueOf|UTC|find|file|\\nfileModifiedDate|fileSize|fileCreatedDate|fileUpdatedDate|fixed|fontsize|fontcolor|\\nforward|fromCharCode|watch|link|load|lastIndexOf|anchor|attachEvent|atob|apply|alert|\\nabort|routeEvents|resize|resizeBy|resizeTo|recalc|returnValue|replace|reverse|reload|\\nreleaseCapture|releaseEvents|go|get(Milliseconds|Seconds|Minutes|Hours|Month|Day|Year|FullYear|\\nTime|Date|TimezoneOffset|UTC(Milliseconds|Seconds|Minutes|Hours|Day|Month|FullYear|Date)|\\nAttention|Selection|ResponseHeader|AllResponseHeaders)|moveBy|moveBelow|moveTo|\\nmoveToAbsolute|moveAbove|mergeAttributes|match|margins|btoa|big|bold|borderWidths|blink|back)\\\\b',\n name: 'support.function.js'\n },\n {\n match:\n '(?x)\\n\\\\b(acceptNode|add|addEventListener|addTextTrack|adoptNode|after|animate|append|\\nappendChild|appendData|before|blur|canPlayType|captureStream|\\ncaretPositionFromPoint|caretRangeFromPoint|checkValidity|clear|click|\\ncloneContents|cloneNode|cloneRange|close|closest|collapse|\\ncompareBoundaryPoints|compareDocumentPosition|comparePoint|contains|\\nconvertPointFromNode|convertQuadFromNode|convertRectFromNode|createAttribute|\\ncreateAttributeNS|createCaption|createCDATASection|createComment|\\ncreateContextualFragment|createDocument|createDocumentFragment|\\ncreateDocumentType|createElement|createElementNS|createEntityReference|\\ncreateEvent|createExpression|createHTMLDocument|createNodeIterator|\\ncreateNSResolver|createProcessingInstruction|createRange|createShadowRoot|\\ncreateTBody|createTextNode|createTFoot|createTHead|createTreeWalker|delete|\\ndeleteCaption|deleteCell|deleteContents|deleteData|deleteRow|deleteTFoot|\\ndeleteTHead|detach|disconnect|dispatchEvent|elementFromPoint|elementsFromPoint|\\nenableStyleSheetsForSet|entries|evaluate|execCommand|exitFullscreen|\\nexitPointerLock|expand|extractContents|fastSeek|firstChild|focus|forEach|get|\\ngetAll|getAnimations|getAttribute|getAttributeNames|getAttributeNode|\\ngetAttributeNodeNS|getAttributeNS|getBoundingClientRect|getBoxQuads|\\ngetClientRects|getContext|getDestinationInsertionPoints|getElementById|\\ngetElementsByClassName|getElementsByName|getElementsByTagName|\\ngetElementsByTagNameNS|getItem|getNamedItem|getSelection|getStartDate|\\ngetVideoPlaybackQuality|has|hasAttribute|hasAttributeNS|hasAttributes|\\nhasChildNodes|hasFeature|hasFocus|importNode|initEvent|insertAdjacentElement|\\ninsertAdjacentHTML|insertAdjacentText|insertBefore|insertCell|insertData|\\ninsertNode|insertRow|intersectsNode|isDefaultNamespace|isEqualNode|\\nisPointInRange|isSameNode|item|key|keys|lastChild|load|lookupNamespaceURI|\\nlookupPrefix|matches|move|moveAttribute|moveAttributeNode|moveChild|\\nmoveNamedItem|namedItem|nextNode|nextSibling|normalize|observe|open|\\nparentNode|pause|play|postMessage|prepend|preventDefault|previousNode|\\npreviousSibling|probablySupportsContext|queryCommandEnabled|\\nqueryCommandIndeterm|queryCommandState|queryCommandSupported|queryCommandValue|\\nquerySelector|querySelectorAll|registerContentHandler|registerElement|\\nregisterProtocolHandler|releaseCapture|releaseEvents|remove|removeAttribute|\\nremoveAttributeNode|removeAttributeNS|removeChild|removeEventListener|\\nremoveItem|replace|replaceChild|replaceData|replaceWith|reportValidity|\\nrequestFullscreen|requestPointerLock|reset|scroll|scrollBy|scrollIntoView|\\nscrollTo|seekToNextFrame|select|selectNode|selectNodeContents|set|setAttribute|\\nsetAttributeNode|setAttributeNodeNS|setAttributeNS|setCapture|\\nsetCustomValidity|setEnd|setEndAfter|setEndBefore|setItem|setNamedItem|\\nsetRangeText|setSelectionRange|setSinkId|setStart|setStartAfter|setStartBefore|\\nslice|splitText|stepDown|stepUp|stopImmediatePropagation|stopPropagation|\\nsubmit|substringData|supports|surroundContents|takeRecords|terminate|toBlob|\\ntoDataURL|toggle|toString|values|write|writeln)\\\\b',\n name: 'support.function.dom.js'\n },\n {match: '[a-zA-Z_$][\\\\w$]*', name: 'entity.name.function.js'},\n {match: '\\\\d[\\\\w$]*', name: 'invalid.illegal.identifier.js'}\n ]\n }\n },\n end: '(?<=\\\\))',\n name: 'meta.method-call.js',\n patterns: [{include: '#arguments'}]\n }\n ]\n },\n numbers: {\n patterns: [\n {\n captures: {0: {patterns: [{include: '#numeric_separators'}]}},\n match: '\\\\b(?>=|>>>=|\\\\|=',\n name: 'keyword.operator.assignment.compound.bitwise.js'\n },\n {match: '<<|>>>|>>', name: 'keyword.operator.bitwise.shift.js'},\n {\n match: '!==|!=|<=|>=|===|==|<|>',\n name: 'keyword.operator.comparison.js'\n },\n {match: '&&|!!|!|\\\\|\\\\|', name: 'keyword.operator.logical.js'},\n {match: '&|\\\\||\\\\^|~', name: 'keyword.operator.bitwise.js'},\n {match: '=|:', name: 'keyword.operator.assignment.js'},\n {match: '--', name: 'keyword.operator.decrement.js'},\n {match: '\\\\+\\\\+', name: 'keyword.operator.increment.js'},\n {match: '%|\\\\*|/|-|\\\\+', name: 'keyword.operator.js'}\n ]\n },\n prevent_object_keys_matching: {\n patterns: [\n {\n captures: {1: {patterns: [{include: '$self'}]}},\n match: '(\\\\w+)(?=\\\\s*:)'\n }\n ]\n },\n properties: {\n patterns: [\n {\n captures: {\n 1: {name: 'meta.delimiter.property.period.js'},\n 2: {name: 'constant.other.object.property.js'}\n },\n match:\n '(\\\\.)\\\\s*([A-Z][A-Z0-9_$]*\\\\b\\\\$*)(?=\\\\s*\\\\.\\\\s*[a-zA-Z_$]\\\\w*)'\n },\n {\n captures: {\n 1: {name: 'meta.delimiter.property.period.js'},\n 2: {name: 'variable.other.object.property.js'}\n },\n match: '(\\\\.)\\\\s*(\\\\$*[a-zA-Z_$][\\\\w$]*)(?=\\\\s*\\\\.\\\\s*[a-zA-Z_$]\\\\w*)'\n },\n {\n captures: {\n 1: {name: 'meta.delimiter.property.period.js'},\n 2: {name: 'constant.other.property.js'}\n },\n match: '(\\\\.)\\\\s*([A-Z][A-Z0-9_$]*\\\\b\\\\$*)'\n },\n {\n captures: {\n 1: {name: 'meta.delimiter.property.period.js'},\n 2: {name: 'variable.other.property.js'}\n },\n match: '(\\\\.)\\\\s*(\\\\$*[a-zA-Z_$][\\\\w$]*)'\n },\n {\n captures: {\n 1: {name: 'meta.delimiter.property.period.js'},\n 2: {name: 'invalid.illegal.identifier.js'}\n },\n match: '(\\\\.)\\\\s*([0-9][\\\\w$]*)'\n }\n ]\n },\n string_escapes: {\n patterns: [\n {\n match: '\\\\\\\\u(?![A-Fa-f0-9]{4}|{[A-Fa-f0-9]+})[^\\'\"]*',\n name: 'invalid.illegal.unicode-escape.js'\n },\n {\n captures: {\n 1: {\n name: 'punctuation.definition.unicode-escape.begin.bracket.curly.js'\n },\n 2: {\n patterns: [\n {\n match: '[A-Fa-f\\\\d]{7,}|(?!10)[A-Fa-f\\\\d]{6}',\n name: 'invalid.illegal.unicode-escape.js'\n }\n ]\n },\n 3: {\n name: 'punctuation.definition.unicode-escape.end.bracket.curly.js'\n }\n },\n match: '\\\\\\\\u(?:[A-Fa-f0-9]{4}|({)([A-Fa-f0-9]+)(}))',\n name: 'constant.character.escape.js'\n },\n {\n match:\n '\\\\\\\\(x[0-9A-Fa-f]{2}|[0-2][0-7]{0,2}|3[0-6][0-7]?|37[0-7]?|[4-7][0-7]?|.)',\n name: 'constant.character.escape.js'\n }\n ]\n },\n strings: {\n patterns: [\n {\n begin: \"'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.js'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.js'}},\n name: 'string.quoted.single.js',\n patterns: [{include: '#string_escapes'}]\n },\n {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.js'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.js'}},\n name: 'string.quoted.double.js',\n patterns: [{include: '#string_escapes'}]\n },\n {\n begin: '((\\\\w+)?(html|HTML|Html))\\\\s*(`)',\n beginCaptures: {\n 1: {name: 'entity.name.function.js'},\n 4: {name: 'punctuation.definition.string.begin.js'}\n },\n end: '`',\n endCaptures: {0: {name: 'punctuation.definition.string.end.js'}},\n name: 'string.quoted.template.html.js',\n patterns: [\n {include: '#string_escapes'},\n {include: '#interpolated_js'},\n {include: 'text.html.basic'}\n ]\n },\n {\n begin: '(?<=innerHTML)\\\\s*(\\\\+?=)\\\\s*(?=`)',\n beginCaptures: {1: {name: 'keyword.operator.assignment.js'}},\n contentName: 'string.quoted.template.html.js',\n end: '(?<=`)',\n endCaptures: {0: {name: 'punctuation.definition.string.end.js'}},\n patterns: [\n {\n begin: '`',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.js'}\n },\n end: '`',\n endCaptures: {0: {name: 'punctuation.definition.string.end.js'}},\n patterns: [\n {include: '#string_escapes'},\n {include: '#interpolated_js'},\n {include: 'text.html.basic'}\n ]\n }\n ]\n },\n {\n begin: '(Relay\\\\.QL|gql)\\\\s*(`)',\n beginCaptures: {\n 1: {name: 'entity.name.function.js'},\n 2: {name: 'punctuation.definition.string.begin.js'}\n },\n end: '`',\n endCaptures: {0: {name: 'punctuation.definition.string.end.js'}},\n name: 'string.quoted.template.graphql.js',\n patterns: [\n {include: '#string_escapes'},\n {include: '#interpolated_js'},\n {include: 'source.graphql'}\n ]\n },\n {\n begin: '(sql|SQL|Sql)\\\\s*(`)',\n beginCaptures: {\n 1: {name: 'entity.name.function.js'},\n 2: {name: 'punctuation.definition.string.begin.js'}\n },\n end: '`',\n endCaptures: {0: {name: 'punctuation.definition.string.end.js'}},\n name: 'string.quoted.template.sql.js',\n patterns: [\n {include: '#string_escapes'},\n {include: '#interpolated_js'},\n {include: 'source.sql'}\n ]\n },\n {\n begin: '`',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.js'}},\n end: '`',\n endCaptures: {0: {name: 'punctuation.definition.string.end.js'}},\n name: 'string.quoted.template.js',\n patterns: [\n {include: '#string_escapes'},\n {include: '#interpolated_js'}\n ]\n }\n ]\n },\n switch_statement: {\n patterns: [\n {\n begin: '\\\\bswitch\\\\b',\n beginCaptures: {0: {name: 'keyword.control.switch.js'}},\n end: '}',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.section.switch-block.end.bracket.curly.js'\n }\n },\n name: 'meta.switch-statement.js',\n patterns: [\n {\n begin: '\\\\(',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.switch-expression.begin.bracket.round.js'\n }\n },\n end: '\\\\)',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.switch-expression.end.bracket.round.js'\n }\n },\n patterns: [{include: '$self'}]\n },\n {\n begin: '{',\n beginCaptures: {\n 0: {\n name: 'punctuation.definition.section.switch-block.begin.bracket.curly.js'\n }\n },\n end: '(?=})',\n patterns: [\n {\n begin: '\\\\bcase\\\\b',\n beginCaptures: {0: {name: 'keyword.control.case.js'}},\n end: ':',\n endCaptures: {\n 0: {\n name: 'punctuation.definition.section.case-statement.js'\n }\n },\n patterns: [\n {include: '#prevent_object_keys_matching'},\n {include: '$self'}\n ]\n },\n {\n captures: {\n 1: {name: 'keyword.control.default.js'},\n 2: {\n name: 'punctuation.definition.section.case-statement.js'\n }\n },\n match: '(?:^\\\\s*)?\\\\b(default)\\\\b\\\\s*(:)'\n },\n {include: '$self'}\n ]\n }\n ]\n }\n ]\n }\n },\n scopeName: 'source.js'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `isc`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [\n '.4dform',\n '.4dproject',\n '.avsc',\n '.epj',\n '.geojson',\n '.gltf',\n '.har',\n '.ice',\n '.ipynb',\n '.json',\n '.json',\n '.json',\n '.json-tmlanguage',\n '.json.example',\n '.jsonl',\n '.maxhelp',\n '.maxpat',\n '.maxproj',\n '.mcmeta',\n '.mxt',\n '.pat',\n '.sarif',\n '.tfstate',\n '.tfstate.backup',\n '.topojson',\n '.webapp',\n '.webmanifest',\n '.yy',\n '.yyp'\n ],\n extensionsWithDot: ['.tact'],\n names: [\n 'ecere-projects',\n 'geojson',\n 'ipython-notebook',\n 'json',\n 'jsonl',\n 'jupyter-notebook',\n 'max',\n 'max/msp',\n 'maxmsp',\n 'oasv2-json',\n 'oasv3-json',\n 'sarif',\n 'topojson'\n ],\n patterns: [{include: '#main'}],\n repository: {\n array: {\n begin: '\\\\[',\n beginCaptures: {\n 0: {name: 'punctuation.definition.block.array.begin.json'}\n },\n end: '\\\\]',\n endCaptures: {0: {name: 'punctuation.definition.block.array.end.json'}},\n name: 'meta.block.array.json',\n patterns: [{include: '#main'}]\n },\n boolean: {\n match: '(?<=^|[,:\\\\s\\\\[])(true|false)(?=$|[,\\\\s}\\\\]])',\n name: 'constant.language.boolean.$1.json'\n },\n delimiters: {\n patterns: [\n {\n match: '(?<=\")\\\\s*:',\n name: 'punctuation.separator.key-value.colon.json'\n },\n {match: ',(?!\\\\s*[}\\\\]])', name: 'punctuation.separator.comma.json'}\n ]\n },\n escapes: {\n patterns: [\n {\n captures: {1: {name: 'punctuation.definition.escape.backslash.json'}},\n match: '(\\\\\\\\)[\"\\\\\\\\/bfnrt]',\n name: 'constant.character.escape.json'\n },\n {\n captures: {1: {name: 'punctuation.definition.escape.backslash.json'}},\n match: '(\\\\\\\\)u[0-9A-Fa-f]{4}',\n name: 'constant.character.escape.unicode.json'\n },\n {match: '\\\\\\\\.', name: 'invalid.illegal.unrecognised-escape.json'}\n ]\n },\n invalid: {\n match: '\\\\S[^}\\\\]]*',\n name: 'invalid.illegal.unexpected-character.json'\n },\n key: {\n captures: {\n 1: {name: 'punctuation.definition.key.start.json'},\n 2: {patterns: [{include: '#escapes'}]},\n 3: {name: 'punctuation.definition.key.end.json'}\n },\n match: '(\")((?:[^\\\\\\\\\"]|\\\\\\\\.)*+)(\")(?=\\\\s*:)',\n name: 'entity.name.tag.key.json'\n },\n main: {\n patterns: [\n {include: '#object'},\n {include: '#key'},\n {include: '#array'},\n {include: '#string'},\n {include: '#number'},\n {include: '#boolean'},\n {include: '#null'},\n {include: '#delimiters'},\n {include: '#invalid'}\n ]\n },\n null: {\n match: '(?<=^|[,:\\\\s\\\\[])null(?=$|[,\\\\s}\\\\]])',\n name: 'constant.language.null.json'\n },\n number: {\n patterns: [\n {\n match: '-?0\\\\d+(?:\\\\.\\\\d+)?(?:[eE][-+]?[0-9]+)?',\n name: 'invalid.illegal.leading-zero.json'\n },\n {\n match: '-?\\\\d+(?:\\\\.\\\\d+)?(?:[eE][-+]?[0-9]+)?',\n name: 'constant.numeric.json'\n }\n ]\n },\n object: {\n begin: '{',\n beginCaptures: {\n 0: {name: 'punctuation.definition.block.object.begin.json'}\n },\n end: '}',\n endCaptures: {0: {name: 'punctuation.definition.block.object.end.json'}},\n name: 'meta.block.object.json',\n patterns: [{include: '#main'}]\n },\n string: {\n captures: {\n 1: {name: 'punctuation.definition.string.begin.json'},\n 2: {patterns: [{include: '#escapes'}]},\n 3: {name: 'punctuation.definition.string.end.json'}\n },\n match: '(\")((?:[^\\\\\\\\\"]|\\\\\\\\.)*+)(\")(?!\\\\s*:)',\n name: 'string.quoted.double.json'\n }\n },\n scopeName: 'source.json'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `apache-2.0`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.gradle.kts', '.kt', '.ktm', '.kts'],\n names: ['gradle-kotlin-dsl', 'kotlin'],\n patterns: [\n {include: '#comments'},\n {include: '#package'},\n {include: '#imports'},\n {include: '#code'}\n ],\n repository: {\n annotations: {\n patterns: [\n {\n match:\n '@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\\\s*:\\\\s*?[a-zA-Z_]\\\\w*',\n name: 'meta.annotation.kotlin'\n },\n {\n begin: '@[a-zA-Z_]\\\\w*\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'punctuation.definition.arguments.begin.kotlin'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.arguments.end.kotlin'}\n },\n name: 'meta.annotation.kotlin',\n patterns: [\n {include: '#code'},\n {match: ',', name: 'punctuation.seperator.property.kotlin'}\n ]\n },\n {match: '@[a-zA-Z_]\\\\w*', name: 'meta.annotation.kotlin'}\n ]\n },\n braces: {\n patterns: [\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.section.group.begin.kotlin'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.section.group.end.kotlin'}},\n name: 'meta.block.kotlin',\n patterns: [{include: '#code'}]\n }\n ]\n },\n brackets: {\n patterns: [\n {\n begin: '\\\\[',\n beginCaptures: {\n 0: {name: 'punctuation.section.brackets.begin.kotlin'}\n },\n end: '\\\\]',\n endCaptures: {0: {name: 'punctuation.section.brackets.end.kotlin'}},\n name: 'meta.brackets.kotlin',\n patterns: [{include: '#code'}]\n }\n ]\n },\n 'builtin-functions': {\n patterns: [\n {\n captures: {1: {name: 'support.function.kotlin'}},\n match:\n '\\\\b(apply|also|let|run|takeIf|takeWhile|takeUnless|with|print|println)\\\\b\\\\s*(?={|\\\\()'\n },\n {\n captures: {1: {name: 'support.function.kotlin'}},\n match:\n '\\\\b(arrayListOf|mutableListOf|listOf|mutableMapOf|mapOf|mutableSetOf|setOf)\\\\b\\\\s*(?={|\\\\()'\n }\n ]\n },\n 'class-ident': {\n patterns: [\n {match: '\\\\b[A-Z_]\\\\w*\\\\b', name: 'entity.name.type.class.kotlin'}\n ]\n },\n 'class-literal': {\n patterns: [\n {\n begin:\n '(?=\\\\b(?:(?:(?:data|value)\\\\s+)?class|(?:data\\\\s+)?object|(?:(?:fun|value)\\\\s+)?interface)\\\\s+\\\\w+)\\\\b',\n end: '(?=\\\\}|$)',\n name: 'meta.class.kotlin',\n patterns: [\n {include: '#keywords'},\n {\n begin:\n '\\\\b((?:(?:data|value)\\\\s+)?class|(?:data\\\\s+)?object|(?:(?:fun|value)\\\\s+)?interface)\\\\b\\\\s+(\\\\w+)',\n beginCaptures: {\n 1: {name: 'storage.modifier.kotlin'},\n 2: {name: 'entity.name.class.kotlin'}\n },\n end: '(?=\\\\(|\\\\{|$)',\n patterns: [\n {include: '#comments'},\n {include: '#annotations'},\n {include: '#types'}\n ]\n },\n {\n begin: '(\\\\()',\n beginCaptures: {\n 0: {name: 'punctuation.section.group.begin.kotlin'},\n 1: {name: 'punctuation.definition.parameters.begin.kotlin'}\n },\n end: '(\\\\))',\n endCaptures: {\n 0: {name: 'punctuation.section.group.end.kotlin'},\n 1: {name: 'punctuation.definition.parameters.end.kotlin'}\n },\n name: 'meta.parameters.kotlin',\n patterns: [\n {include: '#class-parameter-list'},\n {include: '#comments'}\n ]\n },\n {\n begin: '\\\\{',\n beginCaptures: {\n 0: {name: 'punctuation.section.group.begin.kotlin'}\n },\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.section.group.end.kotlin'}},\n name: 'meta.block.kotlin',\n patterns: [{include: '#code'}]\n }\n ]\n }\n ],\n repository: {\n 'class-parameter-list': {\n patterns: [\n {include: '#generic'},\n {include: '#annotations'},\n {include: '#keywords'},\n {\n captures: {\n 1: {name: 'variable.parameter.function.kotlin'},\n 2: {name: 'keyword.operator.declaration.kotlin'}\n },\n match: '(\\\\w+)\\\\s*(:)'\n },\n {match: ',', name: 'punctuation.seperator.kotlin'},\n {include: '#types'},\n {include: '#literals'}\n ]\n }\n }\n },\n code: {\n patterns: [\n {include: '#comments'},\n {include: '#annotations'},\n {include: '#parens'},\n {include: '#braces'},\n {include: '#brackets'},\n {include: '#class-literal'},\n {include: '#literal-functions'},\n {include: '#literals'},\n {include: '#keywords'},\n {include: '#types'},\n {include: '#operators'},\n {include: '#constants'},\n {include: '#punctuations'},\n {include: '#builtin-functions'}\n ]\n },\n comments: {\n patterns: [\n {include: '#inline'},\n {\n begin: '/\\\\*',\n beginCaptures: {\n 0: {name: 'punctuation.definition.comment.begin.kotlin'}\n },\n end: '\\\\*/',\n endCaptures: {0: {name: 'punctuation.definition.comment.end.kotlin'}},\n name: 'comment.block.kotlin',\n patterns: [{include: '#nested'}]\n }\n ],\n repository: {\n inline: {\n patterns: [\n {\n captures: {\n 0: {name: 'punctuation.definition.comment.kotlin'},\n 1: {name: 'comment.line.double-slash.kotlin'}\n },\n match: '(//).*$\\\\n?'\n }\n ]\n },\n nested: {\n patterns: [\n {begin: '/\\\\*', end: '\\\\*/', patterns: [{include: '#nested'}]}\n ]\n }\n }\n },\n constants: {\n patterns: [\n {match: '\\\\b(class)\\\\b', name: 'constant.language.kotlin'},\n {match: '\\\\b(this|super)\\\\b', name: 'variable.language.kotlin'}\n ]\n },\n generic: {\n patterns: [\n {\n begin: '(?=\\\\<(?:[A-Z_]|\\\\*|in|out))',\n end: '(?<=\\\\>)(?!\\\\>)',\n patterns: [\n {match: '<', name: 'punctuation.bracket.angle.begin.kotlin'},\n {match: '>', name: 'punctuation.bracket.angle.end.kotlin'},\n {match: '\\\\*', name: 'entity.name.type.generic.wildcard.kotlin'},\n {include: '#generic-parameter-list'},\n {match: ',', name: 'punctuation.seperator.kotlin'}\n ]\n }\n ],\n repository: {\n 'generic-parameter-list': {\n patterns: [\n {include: '#annotations'},\n {\n match: '\\\\b(in|out)\\\\b',\n name: 'storage.modifier.generic.variance.kotlin'\n },\n {include: '#built-in-types'},\n {include: '#class-ident'},\n {include: '#generic'},\n {include: '#operators'}\n ]\n }\n }\n },\n imports: {\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.other.import.kotlin'},\n 2: {name: 'storage.modifier.import.kotlin'},\n 3: {name: 'keyword.other.kotlin'},\n 4: {name: 'entity.name.type'}\n },\n match:\n '^\\\\s*(import)\\\\s+((?:[`][^$`]+[`]|[^` $.]+)(?:\\\\.(?:[`][^$`]+[`]|[^` $.]+))*)(?:\\\\s+(as)\\\\s+([`][^$`]+[`]|[^` $.]+))?',\n name: 'meta.import.kotlin'\n }\n ]\n },\n keywords: {\n patterns: [\n {match: '(\\\\!in|\\\\!is|as\\\\?)\\\\b', name: 'keyword.operator.kotlin'},\n {match: '\\\\b(in|is|as|assert)\\\\b', name: 'keyword.operator.kotlin'},\n {match: '\\\\b(val|var)\\\\b', name: 'storage.type.kotlin'},\n {match: '\\\\b(\\\\_)\\\\b', name: 'punctuation.definition.variable.kotlin'},\n {\n match:\n '\\\\b(tailrec|operator|infix|typealias|reified|copy(?=\\\\s+fun|\\\\s+var))\\\\b',\n name: 'storage.type.kotlin'\n },\n {\n match: '\\\\b(out|in|yield|typealias|override)\\\\b',\n name: 'storage.modifier.kotlin'\n },\n {\n match:\n '\\\\b(?\\\\w]+\\\\.)?(\\\\w+)'\n },\n {include: '#types'}\n ]\n },\n {\n begin: '(\\\\()',\n beginCaptures: {\n 0: {name: 'punctuation.section.group.begin.kotlin'},\n 1: {name: 'punctuation.definition.parameters.begin.kotlin'}\n },\n end: '(\\\\))',\n endCaptures: {\n 0: {name: 'punctuation.section.group.end.kotlin'},\n 1: {name: 'punctuation.definition.parameters.end.kotlin'}\n },\n name: 'meta.parameters.kotlin',\n patterns: [{include: '#function-parameter-list'}]\n },\n {match: '=', name: 'keyword.operator.single-expression.kotlin'},\n {\n begin: '\\\\{',\n beginCaptures: {\n 0: {name: 'punctuation.section.group.begin.kotlin'}\n },\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.section.group.end.kotlin'}},\n name: 'meta.block.kotlin',\n patterns: [{include: '#code'}]\n },\n {include: '#return-type'}\n ]\n }\n ],\n repository: {\n 'function-parameter-list': {\n patterns: [\n {include: '#comments'},\n {include: '#annotations'},\n {include: '#keywords'},\n {\n captures: {\n 1: {name: 'variable.parameter.function.kotlin'},\n 2: {name: 'keyword.operator.declaration.kotlin'}\n },\n match: '(\\\\w+)\\\\s*(:)'\n },\n {match: ',', name: 'punctuation.seperator.kotlin'},\n {include: '#types'}\n ]\n },\n 'return-type': {\n patterns: [\n {\n begin: '(?<=\\\\))\\\\s*(:)(?=\\\\s*\\\\S)',\n end: '(?=|<|>)',\n name: 'keyword.operator.comparison.kotlin'\n },\n {match: '(=)', name: 'keyword.operator.assignment.kotlin'},\n {match: '(:(?!:))', name: 'keyword.operator.declaration.kotlin'},\n {match: '(\\\\?:)', name: 'keyword.operator.elvis.kotlin'},\n {\n match: '(\\\\-\\\\-|\\\\+\\\\+)',\n name: 'keyword.operator.increment-decrement.kotlin'\n },\n {\n match: '(\\\\-|\\\\+|\\\\*|\\\\/|%)',\n name: 'keyword.operator.arithmetic.kotlin'\n },\n {\n match: '(\\\\+\\\\=|\\\\-\\\\=|\\\\*\\\\=|\\\\/\\\\=)',\n name: 'keyword.operator.arithmetic.assign.kotlin'\n },\n {match: '(\\\\!|\\\\&\\\\&|\\\\|\\\\|)', name: 'keyword.operator.logical.kotlin'},\n {match: '(\\\\.\\\\.)', name: 'keyword.operator.range.kotlin'}\n ]\n },\n package: {\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.other.kotlin'},\n 2: {name: 'entity.name.package.kotlin'}\n },\n match: '^\\\\s*(package)\\\\b(?:\\\\s*([^ ;$]+)\\\\s*)?'\n }\n ]\n },\n parens: {\n patterns: [\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.group.begin.kotlin'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.section.group.end.kotlin'}},\n name: 'meta.group.kotlin',\n patterns: [{include: '#code'}]\n }\n ]\n },\n punctuations: {\n patterns: [\n {match: '::', name: 'punctuation.accessor.reference.kotlin'},\n {match: '\\\\?\\\\.', name: 'punctuation.accessor.dot.safe.kotlin'},\n {match: '(?&|\\\\^~.])(->)(?![/=\\\\-+!*%<>&|\\\\^~.])'\n },\n {match: '\\\\?(?!\\\\.)', name: 'keyword.operator.type.nullable.kotlin'},\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.group.begin.kotlin'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.section.group.end.kotlin'}},\n patterns: [{include: '#types'}]\n }\n ],\n repository: {\n 'built-in-types': {\n patterns: [\n {\n match:\n '\\\\b(Nothing|Any|Unit|String|CharSequence|Int|Boolean|Char|Long|Double|Float|Short|Byte|UByte|UShort|UInt|ULong|Array|List|Map|Set|dynamic)\\\\b(\\\\?)?',\n name: 'support.class.kotlin'\n },\n {\n match:\n '\\\\b(IntArray|BooleanArray|CharArray|LongArray|DoubleArray|FloatArray|ShortArray|ByteArray|UByteArray|UShortArray|UIntArray|ULongArray)\\\\b(\\\\?)?',\n name: 'support.class.kotlin'\n }\n ]\n }\n }\n }\n },\n scopeName: 'source.kotlin'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [\n '.lua',\n '.fcgi',\n '.nse',\n '.p8',\n '.pd_lua',\n '.rbxs',\n '.rockspec',\n '.wlua'\n ],\n names: ['lua'],\n patterns: [\n {\n begin: '\\\\b(?:(local)\\\\s+)?(function)\\\\b(?![,:])',\n beginCaptures: {\n 1: {name: 'keyword.local.lua'},\n 2: {name: 'keyword.control.lua'}\n },\n end: '(?<=[\\\\)\\\\-{}\\\\[\\\\]\"\\'])',\n name: 'meta.function.lua',\n patterns: [\n {include: '#comment'},\n {\n begin: '(\\\\()',\n beginCaptures: {\n 1: {name: 'punctuation.definition.parameters.begin.lua'}\n },\n end: '(\\\\))|(?=[\\\\-\\\\.{}\\\\[\\\\]\"\\'])',\n endCaptures: {\n 1: {name: 'punctuation.definition.parameters.finish.lua'}\n },\n name: 'meta.parameter.lua',\n patterns: [\n {include: '#comment'},\n {\n match: '[a-zA-Z_][a-zA-Z0-9_]*',\n name: 'variable.parameter.function.lua'\n },\n {match: ',', name: 'punctuation.separator.arguments.lua'},\n {\n begin: ':',\n beginCaptures: {0: {name: 'punctuation.separator.arguments.lua'}},\n end: '(?=[\\\\),])',\n patterns: [{include: '#emmydoc.type'}]\n }\n ]\n },\n {\n match: '\\\\b([a-zA-Z_][a-zA-Z0-9_]*)\\\\b\\\\s*(?=:)',\n name: 'entity.name.class.lua'\n },\n {\n match: '\\\\b([a-zA-Z_][a-zA-Z0-9_]*)\\\\b',\n name: 'entity.name.function.lua'\n }\n ]\n },\n {\n match:\n '(?'\n },\n {\n match: '\\\\<[a-zA-Z_\\\\*][a-zA-Z0-9_\\\\.\\\\*\\\\-]*\\\\>',\n name: 'storage.type.generic.lua'\n },\n {\n match:\n '\\\\b(break|do|else|for|if|elseif|goto|return|then|repeat|while|until|end|in)\\\\b',\n name: 'keyword.control.lua'\n },\n {match: '\\\\b(local)\\\\b', name: 'keyword.local.lua'},\n {match: '\\\\b(function)\\\\b(?![,:])', name: 'keyword.control.lua'},\n {\n match:\n '(?=?|(?|\\\\<', name: 'keyword.operator.lua'}\n ]\n },\n {\n begin: '(?<=---)[ \\\\t]*@see',\n beginCaptures: {0: {name: 'storage.type.annotation.lua'}},\n end: '(?=[\\\\n@#])',\n patterns: [\n {\n match: '\\\\b([a-zA-Z_\\\\*][a-zA-Z0-9_\\\\.\\\\*\\\\-]*)',\n name: 'support.class.lua'\n },\n {match: '#', name: 'keyword.operator.lua'}\n ]\n },\n {\n begin: '(?<=---)[ \\\\t]*@diagnostic',\n beginCaptures: {0: {name: 'storage.type.annotation.lua'}},\n end: '(?=[\\\\n@#])',\n patterns: [\n {\n begin: '([a-zA-Z_\\\\-0-9]+)[ \\\\t]*(:)?',\n beginCaptures: {\n 1: {name: 'keyword.other.unit'},\n 2: {name: 'keyword.operator.unit'}\n },\n end: '(?=\\\\n)',\n patterns: [\n {\n match: '\\\\b([a-zA-Z_\\\\*][a-zA-Z0-9_\\\\-]*)',\n name: 'support.class.lua'\n },\n {match: ',', name: 'keyword.operator.lua'}\n ]\n }\n ]\n },\n {\n begin: '(?<=---)[ \\\\t]*@module',\n beginCaptures: {0: {name: 'storage.type.annotation.lua'}},\n end: '(?=[\\\\n@#])',\n patterns: [{include: '#string'}]\n },\n {\n match: '(?<=---)[ \\\\t]*@(async|nodiscard)',\n name: 'storage.type.annotation.lua'\n },\n {\n begin: '(?<=---)\\\\|\\\\s*[\\\\>\\\\+]?',\n beginCaptures: {0: {name: 'storage.type.annotation.lua'}},\n end: '(?=[\\\\n@#])',\n patterns: [{include: '#string'}]\n }\n ]\n },\n 'emmydoc.type': {\n patterns: [\n {\n begin: '\\\\bfun\\\\b',\n beginCaptures: {0: {name: 'keyword.control.lua'}},\n end: '(?=[\\\\s#])',\n patterns: [\n {match: '[\\\\(\\\\),:\\\\?][ \\\\t]*', name: 'keyword.operator.lua'},\n {\n match:\n '([a-zA-Z_][a-zA-Z0-9_\\\\.\\\\*\\\\[\\\\]\\\\<\\\\>\\\\,\\\\-]*)(?',\n name: 'storage.type.generic.lua'\n },\n {match: '\\\\basync\\\\b', name: 'entity.name.tag.lua'},\n {match: '[\\\\{\\\\}\\\\:\\\\,\\\\?\\\\|\\\\`][ \\\\t]*', name: 'keyword.operator.lua'},\n {\n begin: '(?=[a-zA-Z_\\\\.\\\\*\"\\'\\\\[])',\n end: '(?=[\\\\s\\\\)\\\\,\\\\?\\\\:\\\\}\\\\|#])',\n patterns: [\n {\n match: '([a-zA-Z0-9_\\\\.\\\\*\\\\[\\\\]\\\\<\\\\>\\\\,\\\\-]+)(?\n// and licensed permissive.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n dependencies: ['source.shell'],\n extensions: ['.mak', '.make', '.makefile', '.mk', '.mkfile'],\n names: ['makefile', 'bsdmake', 'make', 'mf'],\n patterns: [\n {include: '#comment'},\n {include: '#variable-assignment'},\n {include: '#recipe'},\n {include: '#directives'}\n ],\n repository: {\n comment: {\n begin: '(^[ \\\\t]+)?(?=#)',\n beginCaptures: {\n 1: {name: 'punctuation.whitespace.comment.leading.makefile'}\n },\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '#',\n beginCaptures: {0: {name: 'punctuation.definition.comment.makefile'}},\n end: '\\\\n',\n name: 'comment.line.number-sign.makefile',\n patterns: [\n {\n match: '\\\\\\\\\\\\n',\n name: 'constant.character.escape.continuation.makefile'\n }\n ]\n }\n ]\n },\n directives: {\n patterns: [\n {\n begin: '^[ ]*([s\\\\-]?include)\\\\b',\n beginCaptures: {1: {name: 'keyword.control.include.makefile'}},\n end: '^',\n patterns: [\n {include: '#comment'},\n {include: '#variables'},\n {match: '%', name: 'constant.other.placeholder.makefile'}\n ]\n },\n {\n begin: '^[ ]*(vpath)\\\\b',\n beginCaptures: {1: {name: 'keyword.control.vpath.makefile'}},\n end: '^',\n patterns: [\n {include: '#comment'},\n {include: '#variables'},\n {match: '%', name: 'constant.other.placeholder.makefile'}\n ]\n },\n {\n begin:\n '^(?:(override)\\\\s*)?(define)\\\\s*([^\\\\s]+)\\\\s*(=|\\\\?=|:=|\\\\+=)?(?=\\\\s)',\n captures: {\n 1: {name: 'keyword.control.override.makefile'},\n 2: {name: 'keyword.control.define.makefile'},\n 3: {name: 'variable.other.makefile'},\n 4: {name: 'punctuation.separator.key-value.makefile'}\n },\n end: '^(endef)\\\\b',\n name: 'meta.scope.conditional.makefile',\n patterns: [\n {begin: '\\\\G(?!\\\\n)', end: '^', patterns: [{include: '#comment'}]},\n {include: '#variables'},\n {include: '#comment'},\n {include: '#directives'}\n ]\n },\n {\n begin: '^[ ]*(export)\\\\b',\n beginCaptures: {1: {name: 'keyword.control.$1.makefile'}},\n end: '^',\n patterns: [\n {include: '#comment'},\n {include: '#variable-assignment'},\n {match: '[^\\\\s]+', name: 'variable.other.makefile'}\n ]\n },\n {\n begin: '^[ ]*(override|private)\\\\b',\n beginCaptures: {1: {name: 'keyword.control.$1.makefile'}},\n end: '^',\n patterns: [{include: '#comment'}, {include: '#variable-assignment'}]\n },\n {\n begin: '^[ ]*(unexport|undefine)\\\\b',\n beginCaptures: {1: {name: 'keyword.control.$1.makefile'}},\n end: '^',\n patterns: [\n {include: '#comment'},\n {match: '[^\\\\s]+', name: 'variable.other.makefile'}\n ]\n },\n {\n begin: '^(ifdef|ifndef)\\\\s*([^\\\\s]+)(?=\\\\s)',\n captures: {\n 1: {name: 'keyword.control.$1.makefile'},\n 2: {name: 'variable.other.makefile'},\n 3: {name: 'punctuation.separator.key-value.makefile'}\n },\n end: '^(endif)\\\\b',\n name: 'meta.scope.conditional.makefile',\n patterns: [\n {begin: '\\\\G(?!\\\\n)', end: '^', patterns: [{include: '#comment'}]},\n {include: '$self'}\n ]\n },\n {\n begin: '^(ifeq|ifneq)(?=\\\\s)',\n captures: {1: {name: 'keyword.control.$1.makefile'}},\n end: '^(endif)\\\\b',\n name: 'meta.scope.conditional.makefile',\n patterns: [\n {\n begin: '\\\\G',\n end: '^',\n name: 'meta.scope.condition.makefile',\n patterns: [{include: '#variables'}, {include: '#comment'}]\n },\n {\n begin: '^else(?=\\\\s)',\n beginCaptures: {0: {name: 'keyword.control.else.makefile'}},\n end: '^'\n },\n {include: '$self'}\n ]\n }\n ]\n },\n interpolation: {\n begin: '(?=`)',\n end: '(?!\\\\G)',\n name: 'meta.embedded.line.shell',\n patterns: [\n {\n begin: '`',\n beginCaptures: {0: {name: 'punctuation.definition.string.makefile'}},\n contentName: 'source.shell',\n end: '(`)',\n endCaptures: {\n 0: {name: 'punctuation.definition.string.makefile'},\n 1: {name: 'source.shell'}\n },\n name: 'string.interpolated.backtick.makefile',\n patterns: [{include: 'source.shell'}]\n }\n ]\n },\n recipe: {\n begin: '^(?!\\\\t)([^:]*)(:)(?!\\\\=)',\n beginCaptures: {\n 1: {\n patterns: [\n {\n captures: {1: {name: 'support.function.target.$1.makefile'}},\n match:\n '^\\\\s*(\\\\.(PHONY|SUFFIXES|DEFAULT|PRECIOUS|INTERMEDIATE|SECONDARY|SECONDEXPANSION|DELETE_ON_ERROR|IGNORE|LOW_RESOLUTION_TIME|SILENT|EXPORT_ALL_VARIABLES|NOTPARALLEL|ONESHELL|POSIX))\\\\s*$'\n },\n {\n begin: '(?=\\\\S)',\n end: '(?=\\\\s|$)',\n name: 'entity.name.function.target.makefile',\n patterns: [\n {include: '#variables'},\n {match: '%', name: 'constant.other.placeholder.makefile'}\n ]\n }\n ]\n },\n 2: {name: 'punctuation.separator.key-value.makefile'}\n },\n end: '^(?!\\\\t)',\n name: 'meta.scope.target.makefile',\n patterns: [\n {\n begin: '\\\\G',\n end: '^',\n name: 'meta.scope.prerequisites.makefile',\n patterns: [\n {\n match: '\\\\\\\\\\\\n',\n name: 'constant.character.escape.continuation.makefile'\n },\n {match: '%|\\\\*', name: 'constant.other.placeholder.makefile'},\n {include: '#comment'},\n {include: '#variables'}\n ]\n },\n {\n begin: '^\\\\t',\n name: 'meta.scope.recipe.makefile',\n patterns: [\n {\n captures: {\n 0: {\n patterns: [\n {\n match: '\\\\\\\\\\\\n',\n name: 'constant.character.escape.continuation.makefile'\n },\n {include: '#variables'},\n {include: 'source.shell'}\n ]\n }\n },\n match: '.+\\\\n?'\n }\n ],\n while: '^\\\\t'\n }\n ]\n },\n 'variable-assignment': {\n begin: '(^[ ]*|\\\\G\\\\s*)([^\\\\s]+)\\\\s*(=|\\\\?=|:=|\\\\+=)',\n beginCaptures: {\n 2: {name: 'variable.other.makefile'},\n 3: {name: 'punctuation.separator.key-value.makefile'}\n },\n end: '\\\\n',\n patterns: [\n {\n match: '\\\\\\\\\\\\n',\n name: 'constant.character.escape.continuation.makefile'\n },\n {include: '#comment'},\n {include: '#variables'},\n {include: '#interpolation'}\n ]\n },\n variables: {\n patterns: [\n {\n captures: {1: {name: 'punctuation.definition.variable.makefile'}},\n match: '(\\\\$?\\\\$)[@% for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n dependencies: ['source.c', 'source.c.platform', 'source.objc.platform'],\n extensions: [],\n names: ['objective-c', 'obj-c', 'objc', 'objectivec'],\n patterns: [\n {\n begin:\n '((@)(interface|protocol))(?!.+;)\\\\s+([A-Za-z_][A-Za-z0-9_]*)\\\\s*((:)(?:\\\\s*)([A-Za-z][A-Za-z0-9]*))?(\\\\s|\\\\n)?',\n captures: {\n 1: {name: 'storage.type.objc'},\n 2: {name: 'punctuation.definition.storage.type.objc'},\n 4: {name: 'entity.name.type.objc'},\n 6: {name: 'punctuation.definition.entity.other.inherited-class.objc'},\n 7: {name: 'entity.other.inherited-class.objc'},\n 8: {name: 'meta.divider.objc'},\n 9: {name: 'meta.inherited-class.objc'}\n },\n contentName: 'meta.scope.interface.objc',\n end: '((@)end)\\\\b',\n name: 'meta.interface-or-protocol.objc',\n patterns: [{include: '#interface_innards'}]\n },\n {\n begin:\n '((@)(implementation))\\\\s+([A-Za-z_][A-Za-z0-9_]*)\\\\s*(?::\\\\s*([A-Za-z][A-Za-z0-9]*))?',\n captures: {\n 1: {name: 'storage.type.objc'},\n 2: {name: 'punctuation.definition.storage.type.objc'},\n 4: {name: 'entity.name.type.objc'},\n 5: {name: 'entity.other.inherited-class.objc'}\n },\n contentName: 'meta.scope.implementation.objc',\n end: '((@)end)\\\\b',\n name: 'meta.implementation.objc',\n patterns: [{include: '#implementation_innards'}]\n },\n {\n applyEndPatternLast: true,\n begin: '(?=@\")',\n end: '(?=\\\\S)',\n patterns: [\n {\n begin: '@?\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.objc'}\n },\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.objc'}},\n name: 'string.quoted.double.objc',\n patterns: [\n {include: 'source.c#string_escaped_char'},\n {\n match:\n \"(?x)%\\n \\t\\t\\t\\t\\t\\t(\\\\d+\\\\$)? # field (argument #)\\n \\t\\t\\t\\t\\t\\t[#0\\\\- +']* # flags\\n \\t\\t\\t\\t\\t\\t((-?\\\\d+)|\\\\*(-?\\\\d+\\\\$)?)? # minimum field width\\n \\t\\t\\t\\t\\t\\t(\\\\.((-?\\\\d+)|\\\\*(-?\\\\d+\\\\$)?)?)? # precision\\n \\t\\t\\t\\t\\t\\t[@] # conversion type\\n \\t\\t\\t\\t\\t\",\n name: 'constant.other.placeholder.objc'\n },\n {include: 'source.c#string_placeholder'}\n ]\n }\n ]\n },\n {\n begin: '\\\\b(id)\\\\s*(?=<)',\n beginCaptures: {1: {name: 'storage.type.objc'}},\n end: '(?<=>)',\n name: 'meta.id-with-protocol.objc',\n patterns: [{include: '#protocol_list'}]\n },\n {\n match: '\\\\b(NS_DURING|NS_HANDLER|NS_ENDHANDLER)\\\\b',\n name: 'keyword.control.macro.objc'\n },\n {\n captures: {1: {name: 'punctuation.definition.keyword.objc'}},\n match: '(@)(try|catch|finally|throw)\\\\b',\n name: 'keyword.control.exception.objc'\n },\n {\n captures: {1: {name: 'punctuation.definition.keyword.objc'}},\n match: '(@)(synchronized)\\\\b',\n name: 'keyword.control.synchronize.objc'\n },\n {\n captures: {1: {name: 'punctuation.definition.keyword.objc'}},\n match: '(@)(required|optional)\\\\b',\n name: 'keyword.control.protocol-specification.objc'\n },\n {\n captures: {1: {name: 'punctuation.definition.keyword.objc'}},\n match: '(@)(defs|encode)\\\\b',\n name: 'keyword.other.objc'\n },\n {\n captures: {1: {name: 'punctuation.definition.storage.type.objc'}},\n match: '(@)(class|protocol)\\\\b',\n name: 'storage.type.objc'\n },\n {\n begin: '((@)selector)\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'storage.type.objc'},\n 2: {name: 'punctuation.definition.storage.type.objc'},\n 3: {name: 'punctuation.definition.storage.type.objc'}\n },\n contentName: 'meta.selector.method-name.objc',\n end: '(\\\\))',\n endCaptures: {1: {name: 'punctuation.definition.storage.type.objc'}},\n name: 'meta.selector.objc',\n patterns: [\n {\n captures: {1: {name: 'punctuation.separator.arguments.objc'}},\n match: '\\\\b(?:[a-zA-Z_:][\\\\w]*)+',\n name: 'support.function.any-method.name-of-parameter.objc'\n }\n ]\n },\n {\n captures: {1: {name: 'punctuation.definition.storage.modifier.objc'}},\n match: '(@)(synchronized|public|package|private|protected)\\\\b',\n name: 'storage.modifier.objc'\n },\n {match: '\\\\b(YES|NO|Nil|nil)\\\\b', name: 'constant.language.objc'},\n {include: 'source.objc.platform'},\n {include: 'source.objc.platform#functions'},\n {include: 'source.c'},\n {include: '#bracketed_content'}\n ],\n repository: {\n bracketed_content: {\n begin: '\\\\[',\n beginCaptures: {0: {name: 'punctuation.section.scope.begin.objc'}},\n end: '\\\\]',\n endCaptures: {0: {name: 'punctuation.section.scope.end.objc'}},\n name: 'meta.bracketed.objc',\n patterns: [\n {\n begin:\n '(?=predicateWithFormat:)(?<=NSPredicate )(predicateWithFormat:)',\n beginCaptures: {\n 1: {name: 'support.function.any-method.objc'},\n 2: {name: 'punctuation.separator.arguments.objc'}\n },\n end: '(?=\\\\])',\n name: 'meta.function-call.predicate.objc',\n patterns: [\n {\n captures: {1: {name: 'punctuation.separator.arguments.objc'}},\n match: '\\\\bargument(Array|s)(:)',\n name: 'support.function.any-method.name-of-parameter.objc'\n },\n {\n captures: {1: {name: 'punctuation.separator.arguments.objc'}},\n match: '\\\\b\\\\w+(:)',\n name: 'invalid.illegal.unknown-method.objc'\n },\n {\n begin: '@\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.objc'}\n },\n end: '\"',\n endCaptures: {\n 0: {name: 'punctuation.definition.string.end.objc'}\n },\n name: 'string.quoted.double.objc',\n patterns: [\n {\n match: '\\\\b(AND|OR|NOT|IN)\\\\b',\n name: 'keyword.operator.logical.predicate.cocoa'\n },\n {\n match: '\\\\b(ALL|ANY|SOME|NONE)\\\\b',\n name: 'constant.language.predicate.cocoa'\n },\n {\n match:\n '\\\\b(NULL|NIL|SELF|TRUE|YES|FALSE|NO|FIRST|LAST|SIZE)\\\\b',\n name: 'constant.language.predicate.cocoa'\n },\n {\n match: '\\\\b(MATCHES|CONTAINS|BEGINSWITH|ENDSWITH|BETWEEN)\\\\b',\n name: 'keyword.operator.comparison.predicate.cocoa'\n },\n {\n match: '\\\\bC(ASEINSENSITIVE|I)\\\\b',\n name: 'keyword.other.modifier.predicate.cocoa'\n },\n {\n match:\n '\\\\b(ANYKEY|SUBQUERY|CAST|TRUEPREDICATE|FALSEPREDICATE)\\\\b',\n name: 'keyword.other.predicate.cocoa'\n },\n {\n match:\n '\\\\\\\\(\\\\\\\\|[abefnrtv\\'\"?]|[0-3]\\\\d{0,2}|[4-7]\\\\d?|x[a-zA-Z0-9]+)',\n name: 'constant.character.escape.objc'\n },\n {match: '\\\\\\\\.', name: 'invalid.illegal.unknown-escape.objc'}\n ]\n },\n {include: '#special_variables'},\n {include: '#c_functions'},\n {include: '$base'}\n ]\n },\n {\n begin: '(?=\\\\w)(?<=[\\\\w\\\\]\\\\s)\"]\\\\s)(\\\\w+(?:(:)|(?=\\\\])))',\n beginCaptures: {\n 1: {name: 'support.function.any-method.objc'},\n 2: {name: 'punctuation.separator.arguments.objc'}\n },\n end: '(?=\\\\])',\n name: 'meta.function-call.objc',\n patterns: [\n {\n captures: {1: {name: 'punctuation.separator.arguments.objc'}},\n match: '\\\\b\\\\w+(:)',\n name: 'support.function.any-method.name-of-parameter.objc'\n },\n {include: '#special_variables'},\n {include: '#c_functions'},\n {include: '$base'}\n ]\n },\n {include: '#special_variables'},\n {include: '#c_functions'},\n {include: '$self'}\n ]\n },\n c_functions: {\n patterns: [\n {include: 'source.c.platform#functions'},\n {\n captures: {\n 1: {name: 'punctuation.whitespace.function-call.leading.c'},\n 2: {name: 'support.function.any-method.c'},\n 3: {name: 'punctuation.definition.parameters.c'}\n },\n match:\n '(?x) (?: (?= \\\\s ) (?:(?<=else|new|return) | (?\\\\\\\\\\\\s*\\\\n)',\n name: 'punctuation.separator.continuation.objc'\n }\n ]\n }\n ]\n }\n ]\n },\n disabled: {\n begin: '^\\\\s*#\\\\s*if(n?def)?\\\\b.*$',\n end: '^\\\\s*#\\\\s*endif\\\\b.*$',\n patterns: [{include: '#disabled'}, {include: '#pragma-mark'}]\n },\n implementation_innards: {\n patterns: [\n {include: '#preprocessor-rule-enabled-implementation'},\n {include: '#preprocessor-rule-disabled-implementation'},\n {include: '#preprocessor-rule-other-implementation'},\n {include: '#property_directive'},\n {include: '#special_variables'},\n {include: '#method_super'},\n {include: '$base'}\n ]\n },\n interface_innards: {\n patterns: [\n {include: '#preprocessor-rule-enabled-interface'},\n {include: '#preprocessor-rule-disabled-interface'},\n {include: '#preprocessor-rule-other-interface'},\n {include: '#properties'},\n {include: '#protocol_list'},\n {include: '#method'},\n {include: '$base'}\n ]\n },\n method: {\n begin: '^(-|\\\\+)\\\\s*',\n end: '(?=\\\\{|#)|;',\n name: 'meta.function.objc',\n patterns: [\n {\n begin: '(\\\\()',\n beginCaptures: {1: {name: 'punctuation.definition.type.begin.objc'}},\n end: '(\\\\))\\\\s*(\\\\w+\\\\b)',\n endCaptures: {\n 1: {name: 'punctuation.definition.type.end.objc'},\n 2: {name: 'entity.name.function.objc'}\n },\n name: 'meta.return-type.objc',\n patterns: [\n {include: '#protocol_list'},\n {include: '#protocol_type_qualifier'},\n {include: '$base'}\n ]\n },\n {\n match: '\\\\b\\\\w+(?=:)',\n name: 'entity.name.function.name-of-parameter.objc'\n },\n {\n begin: '((:))\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'entity.name.function.name-of-parameter.objc'},\n 2: {name: 'punctuation.separator.arguments.objc'},\n 3: {name: 'punctuation.definition.type.begin.objc'}\n },\n end: '(\\\\))\\\\s*(\\\\w+\\\\b)?',\n endCaptures: {\n 1: {name: 'punctuation.definition.type.end.objc'},\n 2: {name: 'variable.parameter.function.objc'}\n },\n name: 'meta.argument-type.objc',\n patterns: [\n {include: '#protocol_list'},\n {include: '#protocol_type_qualifier'},\n {include: '$base'}\n ]\n },\n {include: '#comment'}\n ]\n },\n method_super: {\n begin: '^(?=-|\\\\+)',\n end: '(?<=\\\\})|(?=#)',\n name: 'meta.function-with-body.objc',\n patterns: [{include: '#method'}, {include: '$base'}]\n },\n 'pragma-mark': {\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.pragma.c'},\n 3: {name: 'meta.toc-list.pragma-mark.c'}\n },\n match: '^\\\\s*(#\\\\s*(pragma\\\\s+mark)\\\\s+(.*))',\n name: 'meta.section'\n },\n 'preprocessor-rule-disabled-implementation': {\n begin: '^\\\\s*(#(if)\\\\s+(0)\\\\b).*',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.if.c'},\n 3: {name: 'constant.numeric.preprocessor.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n patterns: [\n {\n begin: '^\\\\s*(#\\\\s*(else)\\\\b)',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.else.c'}\n },\n end: '(?=^\\\\s*#\\\\s*endif\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n patterns: [{include: '#interface_innards'}]\n },\n {\n end: '(?=^\\\\s*#\\\\s*(else|endif)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n name: 'comment.block.preprocessor.if-branch.c',\n patterns: [{include: '#disabled'}, {include: '#pragma-mark'}]\n }\n ]\n },\n 'preprocessor-rule-disabled-interface': {\n begin: '^\\\\s*(#(if)\\\\s+(0)\\\\b).*',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.if.c'},\n 3: {name: 'constant.numeric.preprocessor.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n patterns: [\n {\n begin: '^\\\\s*(#\\\\s*(else)\\\\b)',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.else.c'}\n },\n end: '(?=^\\\\s*#\\\\s*endif\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n patterns: [{include: '#interface_innards'}]\n },\n {\n end: '(?=^\\\\s*#\\\\s*(else|endif)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n name: 'comment.block.preprocessor.if-branch.c',\n patterns: [{include: '#disabled'}, {include: '#pragma-mark'}]\n }\n ]\n },\n 'preprocessor-rule-enabled-implementation': {\n begin: '^\\\\s*(#(if)\\\\s+(0*1)\\\\b)',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.if.c'},\n 3: {name: 'constant.numeric.preprocessor.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n patterns: [\n {\n begin: '^\\\\s*(#\\\\s*(else)\\\\b).*',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.else.c'}\n },\n contentName: 'comment.block.preprocessor.else-branch.c',\n end: '(?=^\\\\s*#\\\\s*endif\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n patterns: [{include: '#disabled'}, {include: '#pragma-mark'}]\n },\n {\n end: '(?=^\\\\s*#\\\\s*(else|endif)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n patterns: [{include: '#implementation_innards'}]\n }\n ]\n },\n 'preprocessor-rule-enabled-interface': {\n begin: '^\\\\s*(#(if)\\\\s+(0*1)\\\\b)',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.if.c'},\n 3: {name: 'constant.numeric.preprocessor.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n patterns: [\n {\n begin: '^\\\\s*(#\\\\s*(else)\\\\b).*',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.else.c'}\n },\n contentName: 'comment.block.preprocessor.else-branch.c',\n end: '(?=^\\\\s*#\\\\s*endif\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n patterns: [{include: '#disabled'}, {include: '#pragma-mark'}]\n },\n {\n end: '(?=^\\\\s*#\\\\s*(else|endif)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n patterns: [{include: '#interface_innards'}]\n }\n ]\n },\n 'preprocessor-rule-other-implementation': {\n begin: '^\\\\s*(#\\\\s*(if(n?def)?)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b).*?(?:(?=(?://|/\\\\*))|$)',\n patterns: [{include: '#implementation_innards'}]\n },\n 'preprocessor-rule-other-interface': {\n begin: '^\\\\s*(#\\\\s*(if(n?def)?)\\\\b.*?(?:(?=(?://|/\\\\*))|$))',\n captures: {\n 1: {name: 'meta.preprocessor.c'},\n 2: {name: 'keyword.control.import.c'}\n },\n end: '^\\\\s*(#\\\\s*(endif)\\\\b).*?(?:(?=(?://|/\\\\*))|$)',\n patterns: [{include: '#interface_innards'}]\n },\n properties: {\n patterns: [\n {\n begin: '((@)property)\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'keyword.other.property.objc'},\n 2: {name: 'punctuation.definition.keyword.objc'},\n 3: {name: 'punctuation.section.scope.begin.objc'}\n },\n end: '(\\\\))',\n endCaptures: {1: {name: 'punctuation.section.scope.end.objc'}},\n name: 'meta.property-with-attributes.objc',\n patterns: [\n {\n match:\n '\\\\b(getter|setter|readonly|readwrite|assign|retain|copy|atomic|nonatomic|strong|weak|nullable|nonnull|class)\\\\b',\n name: 'keyword.other.property.attribute'\n }\n ]\n },\n {\n captures: {\n 1: {name: 'keyword.other.property.objc'},\n 2: {name: 'punctuation.definition.keyword.objc'}\n },\n match: '((@)property)\\\\b',\n name: 'meta.property.objc'\n }\n ]\n },\n property_directive: {\n captures: {1: {name: 'punctuation.definition.keyword.objc'}},\n match: '(@)(dynamic|synthesize)\\\\b',\n name: 'keyword.other.property.directive.objc'\n },\n protocol_list: {\n begin: '(<)',\n beginCaptures: {1: {name: 'punctuation.section.scope.begin.objc'}},\n end: '(>)',\n endCaptures: {1: {name: 'punctuation.section.scope.end.objc'}},\n name: 'meta.protocol-list.objc',\n patterns: [{include: 'source.objc.platform#protocols'}]\n },\n protocol_type_qualifier: {\n match: '\\\\b(in|out|inout|oneway|bycopy|byref)\\\\b',\n name: 'storage.modifier.protocol.objc'\n },\n special_variables: {\n patterns: [\n {match: '\\\\b_cmd\\\\b', name: 'variable.other.selector.objc'},\n {match: '\\\\b(self|super)\\\\b', name: 'variable.language.objc'}\n ]\n }\n },\n scopeName: 'source.objc'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is licensed permissive.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [],\n names: [],\n patterns: [\n {\n match:\n '\\\\bNS(?:AnyType|CompositingOperationHighlight|DoubleType|FloatType|IntType|Positive(?:DoubleType|FloatType|IntType))\\\\b',\n name: 'invalid.deprecated.10.0.support.constant.cocoa.objc'\n },\n {\n match: '\\\\bNS(?:CompositeHighlight|SmallIconButtonBezelStyle)\\\\b',\n name: 'invalid.deprecated.10.0.support.variable.cocoa.objc'\n },\n {\n match: '\\\\bNS(?:CalendarDate|Form|GarbageCollector)\\\\b',\n name: 'invalid.deprecated.10.10.support.class.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:Alert(?:AlternateReturn|DefaultReturn|ErrorReturn|OtherReturn)|Ca(?:lendarCalendarUnit|ncelButton)|D(?:ayCalendarUnit|ragOperationAll(?:_Obsolete)?)|EraCalendarUnit|H(?:PUXOperatingSystem|ourCalendarUnit)|M(?:ACHOperatingSystem|inuteCalendarUnit|onthCalendarUnit)|O(?:KButton|SF1OperatingSystem)|PopoverAppearance(?:HUD|Minimal)|QuarterCalendarUnit|Run(?:AbortedResponse|ContinuesResponse|StoppedResponse)|S(?:cale(?:None|Proportionally|ToFit)|econdCalendarUnit|olarisOperatingSystem|unOSOperatingSystem)|TimeZoneCalendarUnit|UndefinedDateComponent|W(?:eek(?:CalendarUnit|Of(?:MonthCalendarUnit|YearCalendarUnit)|day(?:CalendarUnit|OrdinalCalendarUnit))|indows(?:95OperatingSystem|NTOperatingSystem)|rapCalendarComponents)|Year(?:CalendarUnit|ForWeekOfYearCalendarUnit))\\\\b',\n name: 'invalid.deprecated.10.10.support.constant.cocoa.objc'\n },\n {\n match: '\\\\bNSPopoverAppearance\\\\b',\n name: 'invalid.deprecated.10.10.support.type.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:A(?:ccessibilityMatte(?:ContentUIElementAttribute|HoleAttribute)|ppearanceNameLightContent)|BuddhistCalendar|ChineseCalendar|GregorianCalendar|HebrewCalendar|I(?:SO8601Calendar|ndianCalendar|slamicC(?:alendar|ivilCalendar))|JapaneseCalendar|PersianCalendar|RepublicOfChinaCalendar)\\\\b',\n name: 'invalid.deprecated.10.10.support.variable.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:Glyph(?:Attribute(?:BidiLevel|Elastic|Inscribe|Soft)|Inscribe(?:Above|B(?:ase|elow)|Over(?:Below|strike)))|StringDrawing(?:DisableScreenFontSubstitution|OneShot)|TextWritingDirection(?:Embedding|Override)|WorkspaceLaunch(?:AllowingClassicStartup|PreferringClassic))\\\\b',\n name: 'invalid.deprecated.10.11.support.constant.cocoa.objc'\n },\n {\n match: '\\\\bNSConfinementConcurrencyType\\\\b',\n name: 'invalid.deprecated.10.11.support.constant.objc'\n },\n {\n match: '\\\\bNS(?:GlyphInscription|WorkspaceFileOperationName)\\\\b',\n name: 'invalid.deprecated.10.11.support.type.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:AccessibilityException|CharacterShapeAttributeName|U(?:nderlineByWordMask|sesScreenFontsDocumentAttribute)|Workspace(?:Co(?:mpressOperation|pyOperation)|D(?:e(?:c(?:ompressOperation|ryptOperation)|stroyOperation)|idPerformFileOperationNotification|uplicateOperation)|EncryptOperation|LinkOperation|MoveOperation|RecycleOperation))\\\\b',\n name: 'invalid.deprecated.10.11.support.variable.cocoa.objc'\n },\n {\n match:\n '\\\\bPDFAnnotation(?:ButtonWidget|C(?:hoiceWidget|ircle)|FreeText|Ink|Lin(?:e|k)|Markup|Popup|S(?:quare|tamp)|Text(?:Widget)?)\\\\b',\n name: 'invalid.deprecated.10.12.support.class.objc'\n },\n {\n match: '\\\\bNSOpenGLPFAStereo\\\\b',\n name: 'invalid.deprecated.10.12.support.constant.cocoa.objc'\n },\n {\n match:\n '\\\\bNSPersistentStoreUbiquitousTransitionType(?:Account(?:Added|Removed)|ContentRemoved|InitialImportCompleted)\\\\b',\n name: 'invalid.deprecated.10.12.support.constant.objc'\n },\n {\n match: '\\\\bNSGradientType\\\\b',\n name: 'invalid.deprecated.10.12.support.type.cocoa.objc'\n },\n {\n match: '\\\\bNSPersistentStoreUbiquitousTransitionType\\\\b',\n name: 'invalid.deprecated.10.12.support.type.objc'\n },\n {\n match:\n '\\\\bNS(?:A(?:WTEventType|l(?:phaShiftKeyMask|ternateKeyMask)|nyEventMask|pp(?:KitDefined(?:Mask)?|lication(?:ActivatedEventType|De(?:activatedEventType|fined(?:Mask)?))))|BorderlessWindowMask|C(?:enterTextAlignment|ircularSlider|losableWindowMask|o(?:m(?:mandKeyMask|posite(?:C(?:lear|o(?:lor(?:Burn|Dodge)?|py))|D(?:arken|estination(?:Atop|In|O(?:ut|ver))|ifference)|Exclusion|H(?:ardLight|ue)|L(?:ighten|uminosity)|Multiply|Overlay|Plus(?:Darker|Lighter)|S(?:aturation|creen|o(?:ftLight|urce(?:Atop|In|O(?:ut|ver))))|XOR))|ntrolKeyMask)|riticalAlertStyle|ursor(?:PointingDevice|Update(?:Mask)?))|D(?:eviceIndependentModifierFlagsMask|ocModalWindowMask)|EraserPointingDevice|F(?:lagsChanged(?:Mask)?|u(?:llS(?:creenWindowMask|izeContentViewWindowMask)|nctionKeyMask))|H(?:UDWindowMask|elpKeyMask)|InformationalAlertStyle|JustifiedTextAlignment|Key(?:Down(?:Mask)?|Up(?:Mask)?)|L(?:eft(?:Mouse(?:D(?:own(?:Mask)?|ragged(?:Mask)?)|Up(?:Mask)?)|TextAlignment)|inearSlider)|M(?:ini(?:ControlSize|aturizableWindowMask)|ouse(?:E(?:ntered(?:Mask)?|ventSubtype|xited(?:Mask)?)|Moved(?:Mask)?))|N(?:aturalTextAlignment|onactivatingPanelMask|umericPadKeyMask)|OtherMouse(?:D(?:own(?:Mask)?|ragged(?:Mask)?)|Up(?:Mask)?)|P(?:e(?:n(?:LowerSideMask|PointingDevice|TipMask|UpperSideMask)|riodic(?:Mask)?)|owerOffEventType)|R(?:e(?:gularControlSize|sizableWindowMask)|ight(?:Mouse(?:D(?:own(?:Mask)?|ragged(?:Mask)?)|Up(?:Mask)?)|TextAlignment))|S(?:cr(?:eenChangedEventType|ollWheel(?:Mask)?)|hiftKeyMask|mallControlSize|ystemDefined(?:Mask)?)|T(?:abletP(?:oint(?:EventSubtype|Mask)?|roximity(?:EventSubtype|Mask)?)|exturedBackgroundWindowMask|hick(?:SquareBezelStyle|erSquareBezelStyle)|i(?:ckMark(?:Above|Below|Left|Right)|tledWindowMask)|ouchEventSubtype)|U(?:n(?:ifiedTitleAndToolbarWindowMask|knownPointingDevice)|tilityWindowMask)|W(?:arningAlertStyle|indow(?:ExposedEventType|FullScreenButton|MovedEventType)))\\\\b',\n name: 'invalid.deprecated.10.12.support.variable.cocoa.objc'\n },\n {\n match:\n '\\\\bNSPersistentStore(?:DidImportUbiquitousContentChangesNotification|Re(?:buildFromUbiquitousContentOption|moveUbiquitousMetadataOption)|Ubiquitous(?:Cont(?:ainerIdentifierKey|ent(?:NameKey|URLKey))|PeerTokenOption|TransitionTypeKey))\\\\b',\n name: 'invalid.deprecated.10.12.support.variable.objc'\n },\n {\n match:\n '\\\\bNS(?:Archiver|Connection|D(?:istantObject(?:Request)?|rawer)|M(?:achBootstrapServer|essagePortNameServer)|Port(?:Coder|NameServer)|SocketPortNameServer|Unarchiver)\\\\b',\n name: 'invalid.deprecated.10.13.support.class.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:BackingStore(?:Nonretained|Retained)|Drawer(?:Clos(?:edState|ingState)|Open(?:State|ingState))|FileHandlingPanel(?:CancelButton|OKButton)|NativeShortGlyphPacking)\\\\b',\n name: 'invalid.deprecated.10.13.support.constant.cocoa.objc'\n },\n {\n match: '\\\\bNSMultibyteGlyphPacking\\\\b',\n name: 'invalid.deprecated.10.13.support.type.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:Connection(?:Did(?:DieNotification|InitializeNotification)|ReplyMode)|D(?:ockWindowLevel|ra(?:gPboard|wer(?:Did(?:CloseNotification|OpenNotification)|Will(?:CloseNotification|OpenNotification))))|F(?:ailedAuthenticationException|indPboard|ontPboard)|GeneralPboard|RulerPboard)\\\\b',\n name: 'invalid.deprecated.10.13.support.variable.cocoa.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:BinaryExternalRecordType|E(?:ntityNameInPathKey|xternalRecord(?:ExtensionOption|s(?:DirectoryOption|FileFormatOption)))|ModelPathKey|ObjectURIKey|Store(?:PathKey|UUIDInPathKey)|XMLExternalRecordType)|kPDFAnnotationKey_(?:A(?:ction|dditionalActions|ppearance(?:Dictionary|State))|Border(?:Style)?|Co(?:lor|ntents)|D(?:ate|e(?:faultAppearance|stination))|Flags|HighlightingMode|I(?:conName|n(?:klist|teriorColor))|Line(?:EndingStyles|Points)|Name|Open|P(?:a(?:ge|rent)|opup)|Quad(?:Points|ding)|Rect|Subtype|TextLabel|Widget(?:AppearanceDictionary|DefaultValue|Field(?:Flags|Type)|MaxLen|Options|TextLabelUI|Value)))\\\\b',\n name: 'invalid.deprecated.10.13.support.variable.objc'\n },\n {\n match:\n '\\\\b(?:DOM(?:A(?:bstractView|ttr)|Blob|C(?:DATASection|SS(?:CharsetRule|FontFaceRule|ImportRule|MediaRule|P(?:ageRule|rimitiveValue)|Rule(?:List)?|Style(?:Declaration|Rule|Sheet)|UnknownRule|Value(?:List)?)|haracterData|o(?:mment|unter))|Document(?:Fragment|Type)?|E(?:lement|ntity(?:Reference)?|vent)|File(?:List)?|HTML(?:A(?:nchorElement|ppletElement|reaElement)|B(?:RElement|ase(?:Element|FontElement)|odyElement|uttonElement)|Collection|D(?:ListElement|i(?:rectoryElement|vElement)|ocument)|E(?:lement|mbedElement)|F(?:ieldSetElement|o(?:ntElement|rmElement)|rame(?:Element|SetElement))|H(?:RElement|ead(?:Element|ingElement)|tmlElement)|I(?:FrameElement|mageElement|nputElement)|L(?:IElement|abelElement|egendElement|inkElement)|M(?:a(?:pElement|rqueeElement)|e(?:nuElement|taElement)|odElement)|O(?:ListElement|bjectElement|pt(?:GroupElement|ion(?:Element|sCollection)))|P(?:ara(?:graphElement|mElement)|reElement)|QuoteElement|S(?:criptElement|electElement|tyleElement)|T(?:able(?:C(?:aptionElement|ellElement|olElement)|Element|RowElement|SectionElement)|extAreaElement|itleElement)|UListElement)|Implementation|KeyboardEvent|M(?:ediaList|ouseEvent|utationEvent)|N(?:amedNodeMap|ode(?:Iterator|List)?)|O(?:bject|verflowEvent)|Pro(?:cessingInstruction|gressEvent)|R(?:GBColor|ange|ect)|StyleSheet(?:List)?|T(?:ext|reeWalker)|UIEvent|WheelEvent|XPath(?:Expression|Result))|NSOpenGL(?:Context|Layer|PixelFormat|View)|Web(?:Archive|BackForwardList|D(?:ataSource|ownload)|Frame(?:View)?|History(?:Item)?|Preferences|ScriptObject|Undefined|View))\\\\b',\n name: 'invalid.deprecated.10.14.support.class.cocoa.objc'\n },\n {\n match: '\\\\b(?:CAOpenGLLayer|IKImageBrowserView|QCCompositionLayer)\\\\b',\n name: 'invalid.deprecated.10.14.support.class.objc'\n },\n {\n match:\n '\\\\b(?:DOM_(?:A(?:DDITION|LLOW_KEYBOARD_INPUT|NY_(?:TYPE|UNORDERED_NODE_TYPE)|T(?:TRIBUTE_NODE|_TARGET))|B(?:AD_BOUNDARYPOINTS_ERR|O(?:OLEAN_TYPE|TH)|UBBLING_PHASE)|C(?:APTURING_PHASE|DATA_SECTION_NODE|HARSET_RULE|OMMENT_NODE|SS_(?:ATTR|C(?:M|OUNTER|USTOM)|D(?:EG|IMENSION)|E(?:MS|XS)|GRAD|HZ|I(?:DENT|N(?:HERIT)?)|KHZ|M(?:M|S)|NUMBER|P(?:C|ERCENTAGE|RIMITIVE_VALUE|T|X)|R(?:AD|ECT|GBCOLOR)|S(?:TRING)?|U(?:NKNOWN|RI)|V(?:ALUE_LIST|H|M(?:AX|IN)|W)))|DO(?:CUMENT_(?:FRAGMENT_NODE|NODE|POSITION_(?:CONTAIN(?:ED_BY|S)|DISCONNECTED|FOLLOWING|IMPLEMENTATION_SPECIFIC|PRECEDING)|TYPE_NODE)|M(?:STRING_SIZE_ERR|_DELTA_(?:LINE|P(?:AGE|IXEL))))|E(?:LEMENT_NODE|N(?:D_TO_(?:END|START)|TITY_(?:NODE|REFERENCE_NODE)))|F(?:I(?:LTER_(?:ACCEPT|REJECT|SKIP)|RST_ORDERED_NODE_TYPE)|ONT_FACE_RULE)|H(?:IERARCHY_REQUEST_ERR|ORIZONTAL)|I(?:MPORT_RULE|N(?:DEX_SIZE_ERR|USE_ATTRIBUTE_ERR|VALID_(?:ACCESS_ERR|CHARACTER_ERR|EXPRESSION_ERR|MODIFICATION_ERR|NODE_TYPE_ERR|STATE_ERR)))|KEY(?:FRAME(?:S_RULE|_RULE)|_LOCATION_(?:LEFT|NUMPAD|RIGHT|STANDARD))|M(?:EDIA_RULE|ODIFICATION)|N(?:AMESPACE_(?:ERR|RULE)|O(?:DE_(?:AFTER|BEFORE(?:_AND_AFTER)?|INSIDE)|NE|T(?:ATION_NODE|_(?:FOUND_ERR|SUPPORTED_ERR))|_(?:DATA_ALLOWED_ERR|MODIFICATION_ALLOWED_ERR))|UMBER_TYPE)|ORDERED_NODE_(?:ITERATOR_TYPE|SNAPSHOT_TYPE)|P(?:AGE_RULE|ROCESSING_INSTRUCTION_NODE)|REMOVAL|S(?:HOW_(?:A(?:LL|TTRIBUTE)|C(?:DATA_SECTION|OMMENT)|DOCUMENT(?:_(?:FRAGMENT|TYPE))?|E(?:LEMENT|NTITY(?:_REFERENCE)?)|NOTATION|PROCESSING_INSTRUCTION|TEXT)|T(?:ART_TO_(?:END|START)|RING_TYPE|YLE_RULE)|UPPORTS_RULE|YNTAX_ERR)|T(?:EXT_NODE|YPE_ERR)|UN(?:KNOWN_RULE|ORDERED_NODE_(?:ITERATOR_TYPE|SNAPSHOT_TYPE)|SPECIFIED_EVENT_TYPE_ERR)|VERTICAL|W(?:EBKIT_(?:KEYFRAME(?:S_RULE|_RULE)|REGION_RULE)|RONG_DOCUMENT_ERR))|NS(?:LandscapeOrientation|O(?:nlyScrollerArrows|penGL(?:ContextParameter(?:CurrentRendererID|GPU(?:FragmentProcessing|VertexProcessing)|HasDrawable|MPSwapsInFlight|R(?:asterizationEnable|eclaimResources)|S(?:tateValidation|urface(?:BackingSize|O(?:pacity|rder)|SurfaceVolatile)|wap(?:Interval|Rectangle(?:Enable)?)))|GO(?:ClearFormatCache|FormatCacheSize|RetainRenderers|UseBuildCache)|P(?:FA(?:A(?:cc(?:elerated(?:Compute)?|umSize)|l(?:l(?:Renderers|owOfflineRenderers)|phaSize)|ux(?:Buffers|DepthStencil))|BackingStore|C(?:losestPolicy|olor(?:Float|Size))|D(?:epthSize|oubleBuffer)|M(?:aximumPolicy|inimumPolicy|ultisample)|NoRecovery|OpenGLProfile|RendererID|S(?:ample(?:Alpha|Buffers|s)|creenMask|tencilSize|upersample)|TripleBuffer|VirtualScreenCount)|rofileVersion(?:3_2Core|4_1Core|Legacy))))|PortraitOrientation|Scroller(?:DecrementLine|IncrementLine))|Web(?:CacheModel(?:Document(?:Browser|Viewer)|PrimaryWebBrowser)|Drag(?:DestinationAction(?:Any|DHTML|Edit|Load|None)|SourceAction(?:Any|DHTML|Image|Link|None|Selection))|KitError(?:BlockedPlugInVersion|Cannot(?:FindPlugIn|LoadPlugIn|Show(?:MIMEType|URL))|FrameLoadInterruptedByPolicyChange|JavaUnavailable)|MenuItem(?:PDF(?:A(?:ctualSize|utoSize)|Continuous|FacingPages|NextPage|PreviousPage|SinglePage|Zoom(?:In|Out))|Tag(?:C(?:opy(?:ImageToClipboard|LinkToClipboard)?|ut)|Download(?:ImageToDisk|LinkToDisk)|Go(?:Back|Forward)|IgnoreSpelling|L(?:earnSpelling|ookUpInDictionary)|NoGuessesFound|O(?:pen(?:FrameInNewWindow|ImageInNewWindow|LinkInNewWindow|WithDefaultApplication)|ther)|Paste|Reload|S(?:earch(?:InSpotlight|Web)|pellingGuess|top)))|NavigationType(?:BackForward|Form(?:Resubmitted|Submitted)|LinkClicked|Other|Reload)|ViewInsertAction(?:Dropped|Pasted|Typed)))\\\\b',\n name: 'invalid.deprecated.10.14.support.constant.cocoa.objc'\n },\n {\n match:\n '\\\\b(?:DOM(?:E(?:ventExceptionCode|xceptionCode)|RangeExceptionCode|XPathExceptionCode)|NS(?:CellStateValue|OpenGL(?:ContextParameter|GlobalOption|PixelFormatAttribute)|Pr(?:intingOrientation|ogressIndicatorThickness)|Scroll(?:ArrowPosition|erArrow)|WindowBackingLocation)|Web(?:CacheModel|Drag(?:DestinationAction|SourceAction)|NavigationType|ViewInsertAction))\\\\b',\n name: 'invalid.deprecated.10.14.support.type.cocoa.objc'\n },\n {\n match: '\\\\bQLPreviewItemLoadingBlock\\\\b',\n name: 'invalid.deprecated.10.14.support.type.objc'\n },\n {\n match:\n '\\\\b(?:DOM(?:E(?:ventException|xception)|RangeException|XPathException)|NS(?:16Bit(?:BigEndianBitmapFormat|LittleEndianBitmapFormat)|32Bit(?:BigEndianBitmapFormat|LittleEndianBitmapFormat)|A(?:cceleratorButton|lpha(?:FirstBitmapFormat|NonpremultipliedBitmapFormat))|BMPFileType|C(?:MYK(?:ColorSpaceModel|ModeColorPanel)|ircularBezelStyle|o(?:lor(?:ListModeColorPanel|PboardType)|ntinuousCapacityLevelIndicatorStyle)|rayonModeColorPanel|ustomPaletteModeColorPanel)|D(?:e(?:faultTokenStyle|viceNColorSpaceModel)|isc(?:losureBezelStyle|reteCapacityLevelIndicatorStyle))|F(?:ile(?:namesPboardType|sPromisePboardType)|loatingPointSamplesBitmapFormat|ontPboardType)|G(?:IFFileType|ray(?:ColorSpaceModel|ModeColorPanel))|H(?:SBModeColorPanel|TMLPboardType|elpButtonBezelStyle)|In(?:dexedColorSpaceModel|kTextPboardType|lineBezelStyle)|JPEG(?:2000FileType|FileType)|KeyedUnarchiveFromDataTransformerName|LABColorSpaceModel|M(?:ixedState|omentary(?:ChangeButton|LightButton|PushInButton)|ulti(?:LevelAcceleratorButton|pleTextSelectionPboardType))|NoModeColorPanel|O(?:ffState|n(?:OffButton|State)|penGLCP(?:CurrentRendererID|GPU(?:FragmentProcessing|VertexProcessing)|HasDrawable|MPSwapsInFlight|R(?:asterizationEnable|eclaimResources)|S(?:tateValidation|urface(?:BackingSize|O(?:pacity|rder)|SurfaceVolatile)|wap(?:Interval|Rectangle(?:Enable)?))))|P(?:DFPboardType|NGFileType|a(?:steboardTypeFindPanelSearchOptions|tternColorSpaceModel)|lainTextTokenStyle|ostScriptPboardType|rogressIndicator(?:BarStyle|SpinningStyle)|ushOnPushOffButton)|R(?:GB(?:ColorSpaceModel|ModeColorPanel)|TF(?:DPboardType|PboardType)|a(?:dioButton|tingLevelIndicatorStyle)|e(?:cessedBezelStyle|gularSquareBezelStyle|levancyLevelIndicatorStyle)|ound(?:RectBezelStyle|ed(?:BezelStyle|DisclosureBezelStyle|TokenStyle))|ulerPboardType)|S(?:ha(?:dowlessSquareBezelStyle|ringServiceName(?:Post(?:ImageOnFlickr|On(?:Facebook|LinkedIn|SinaWeibo|T(?:encentWeibo|witter))|VideoOn(?:Tudou|Vimeo|Youku))|UseAs(?:FacebookProfileImage|LinkedInProfileImage|TwitterProfileImage)))|mallSquareBezelStyle|tringPboardType|witchButton)|T(?:IFF(?:FileType|PboardType)|abularTextPboardType|extured(?:RoundedBezelStyle|SquareBezelStyle)|oggleButton)|U(?:RLPboardType|n(?:archiveFromDataTransformerName|knownColorSpaceModel))|V(?:CardPboardType|iew(?:GlobalFrameDidChangeNotification|NoInstrinsicMetric))|WheelModeColorPanel)|Web(?:A(?:ction(?:ButtonKey|ElementKey|ModifierFlagsKey|NavigationTypeKey|OriginalURLKey)|rchivePboardType)|Element(?:DOMNodeKey|FrameKey|I(?:mage(?:AltStringKey|Key|RectKey|URLKey)|sSelectedKey)|Link(?:LabelKey|T(?:argetFrameKey|itleKey)|URLKey))|History(?:AllItemsRemovedNotification|Item(?:ChangedNotification|s(?:AddedNotification|Key|RemovedNotification))|LoadedNotification|SavedNotification)|KitError(?:Domain|MIMETypeKey|PlugIn(?:NameKey|PageURLStringKey))|P(?:lugIn(?:AttributesKey|BaseURLKey|Contain(?:erKey|ingElementKey)|ShouldLoadMainResourceKey)|referencesChangedNotification)|ViewProgress(?:EstimateChangedNotification|FinishedNotification|StartedNotification)))\\\\b',\n name: 'invalid.deprecated.10.14.support.variable.cocoa.objc'\n },\n {\n match:\n '\\\\b(?:IOSurfacePropertyAllocSizeKey|QCComposition(?:InputRSS(?:ArticleDurationKey|FeedURLKey)|ProtocolRSSVisualizer)|kCIImageTexture(?:Format|Target))\\\\b',\n name: 'invalid.deprecated.10.14.support.variable.objc'\n },\n {\n match:\n '\\\\bQC(?:Composition(?:P(?:arameterView|icker(?:Panel|View))|Repository)?|P(?:atchController|lugIn(?:ViewController)?)|Renderer|View)\\\\b',\n name: 'invalid.deprecated.10.15.support.class.objc'\n },\n {\n match: '\\\\bNSURLNetworkServiceTypeVoIP\\\\b',\n name: 'invalid.deprecated.10.15.support.constant.cocoa.objc'\n },\n {\n match:\n '\\\\bQCPlugIn(?:BufferReleaseCallback|ExecutionMode|T(?:extureReleaseCallback|imeMode))\\\\b',\n name: 'invalid.deprecated.10.15.support.type.objc'\n },\n {\n match:\n '\\\\bQC(?:Composition(?:Attribute(?:BuiltInKey|C(?:ategoryKey|opyrightKey)|DescriptionKey|HasConsumersKey|IsTimeDependentKey|NameKey)|Category(?:Distortion|Stylize|Utility)|Input(?:Audio(?:PeakKey|SpectrumKey)|DestinationImageKey|ImageKey|Pr(?:eviewModeKey|imaryColorKey)|S(?:creenImageKey|econdaryColorKey|ourceImageKey)|Track(?:InfoKey|PositionKey|SignalKey)|XKey|YKey)|Output(?:ImageKey|WebPageURLKey)|P(?:icker(?:PanelDidSelectCompositionNotification|ViewDidSelectCompositionNotification)|rotocol(?:Graphic(?:Animation|Transition)|ImageFilter|MusicVisualizer|ScreenSaver))|RepositoryDidUpdateNotification)|P(?:lugIn(?:Attribute(?:C(?:ategoriesKey|opyrightKey)|DescriptionKey|ExamplesKey|NameKey)|ExecutionArgument(?:EventKey|MouseLocationKey)|PixelFormat(?:ARGB8|BGRA8|I(?:8|f)|RGBAf))|ort(?:Attribute(?:DefaultValueKey|M(?:aximumValueKey|enuItemsKey|inimumValueKey)|NameKey|TypeKey)|Type(?:Boolean|Color|I(?:mage|ndex)|Number|Str(?:ing|ucture))))|Renderer(?:EventKey|MouseLocationKey)|ViewDidSt(?:artRenderingNotification|opRenderingNotification))\\\\b',\n name: 'invalid.deprecated.10.15.support.variable.objc'\n },\n {\n match:\n '\\\\bNSPrint(?:FormName|JobFeatures|ManualFeed|Pa(?:gesPerSheet|perFeed))\\\\b',\n name: 'invalid.deprecated.10.2.support.variable.cocoa.objc'\n },\n {\n match: '\\\\bNSOpenGLGOResetLibrary\\\\b',\n name: 'invalid.deprecated.10.4.support.constant.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:F(?:TPProperty(?:ActiveTransferModeKey|F(?:TPProxy|ileOffsetKey)|User(?:LoginKey|PasswordKey))|ontColorAttribute)|HTTPProperty(?:ErrorPageDataKey|HTTPProxy|RedirectionHeadersKey|S(?:erverHTTPVersionKey|tatus(?:CodeKey|ReasonKey)))|ViewFocusDidChangeNotification)\\\\b',\n name: 'invalid.deprecated.10.4.support.variable.cocoa.objc'\n },\n {\n match: '\\\\bNSMovie\\\\b',\n name: 'invalid.deprecated.10.5.support.class.cocoa.objc'\n },\n {\n match: '\\\\bNSOpenGLPFA(?:M(?:PSafe|ultiScreen)|Robust)\\\\b',\n name: 'invalid.deprecated.10.5.support.constant.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:AMPMDesignation|CurrencySymbol|D(?:ate(?:FormatString|TimeOrdering)|ecimal(?:Digits|Separator))|EarlierTimeDesignations|HourNameDesignations|Int(?:HashCallBacks|Map(?:KeyCallBacks|ValueCallBacks)|ernationalCurrencyString)|LaterTimeDesignations|MonthNameArray|Ne(?:gativeCurrencyFormatString|xt(?:DayDesignations|NextDayDesignations))|P(?:ositiveCurrencyFormatString|riorDayDesignations)|Short(?:DateFormatString|MonthNameArray|TimeDateFormatString|WeekDayNameArray)|T(?:h(?:isDayDesignations|ousandsSeparator)|ime(?:DateFormatString|FormatString))|VoiceLanguage|WeekDayNameArray|YearMonthWeekDesignations)\\\\b',\n name: 'invalid.deprecated.10.5.support.variable.cocoa.objc'\n },\n {\n match: '\\\\bNS(?:CachedImageRep|Input(?:Manager|Server))\\\\b',\n name: 'invalid.deprecated.10.6.support.class.cocoa.objc'\n },\n {\n match: '\\\\bNSOpenGLPFAFullScreen\\\\b',\n name: 'invalid.deprecated.10.6.support.constant.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:A(?:ccessibilitySortButtonRole|pplicationFileType)|CalibratedBlackColorSpace|D(?:eviceBlackColorSpace|irectoryFileType)|ErrorFailingURLStringKey|FilesystemFileType|P(?:ICTPboardType|lainFileType|rintSavePath)|ShellCommandFileType)\\\\b',\n name: 'invalid.deprecated.10.6.support.variable.cocoa.objc'\n },\n {\n match: '\\\\bNSOpenGLPixelBuffer\\\\b',\n name: 'invalid.deprecated.10.7.support.class.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:AutosaveOperation|OpenGLPFA(?:OffScreen|PixelBuffer|RemotePixelBuffer)|PathStyleNavigationBar)\\\\b',\n name: 'invalid.deprecated.10.7.support.constant.cocoa.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:FileHandleNotificationMonitorModes|ImageNameDotMac)|kAB(?:AIM(?:HomeLabel|InstantProperty|MobileMeLabel|WorkLabel)|ICQ(?:HomeLabel|InstantProperty|WorkLabel)|Jabber(?:HomeLabel|InstantProperty|WorkLabel)|MSN(?:HomeLabel|InstantProperty|WorkLabel)|Yahoo(?:HomeLabel|InstantProperty|WorkLabel)))\\\\b',\n name: 'invalid.deprecated.10.7.support.variable.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:MacintoshInterfaceStyle|N(?:extStepInterfaceStyle|oInterfaceStyle)|PointerFunctionsZeroingWeakMemory|Windows95InterfaceStyle)\\\\b',\n name: 'invalid.deprecated.10.8.support.constant.cocoa.objc'\n },\n {\n match: '\\\\bNSInterfaceStyle\\\\b',\n name: 'invalid.deprecated.10.8.support.type.cocoa.objc'\n },\n {match: '\\\\bCalSpan\\\\b', name: 'invalid.deprecated.10.8.support.type.objc'},\n {\n match:\n '\\\\bNS(?:ApplicationLaunchRemoteNotificationKey|HashTableZeroingWeakMemory|InterfaceStyleDefault|MapTableZeroingWeakMemory|Nib(?:Owner|TopLevelObjects)|URLUbiquitousItemPercent(?:DownloadedKey|UploadedKey))\\\\b',\n name: 'invalid.deprecated.10.8.support.variable.cocoa.objc'\n },\n {\n match:\n '\\\\bCal(?:AlarmAction(?:Display|Email|Procedure|Sound)|Calendar(?:StoreErrorDomain|Type(?:Birthday|CalDAV|Exchange|IMAP|Local|Subscription)|sChanged(?:ExternallyNotification|Notification))|DefaultRecurrenceInterval|EventsChanged(?:ExternallyNotification|Notification)|SenderProcessIDKey|TasksChanged(?:ExternallyNotification|Notification)|UserUIDKey)\\\\b',\n name: 'invalid.deprecated.10.8.support.variable.objc'\n },\n {\n match:\n '\\\\bNS(?:NoUnderlineStyle|OpenGLPFA(?:Compliant|SingleRenderer|Window)|SingleUnderlineStyle|URLBookmarkCreationPreferFileIDResolution)\\\\b',\n name: 'invalid.deprecated.10.9.support.constant.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:M(?:etadataUbiquitousItemIsDownloadedKey|omentary(?:Light|PushButton))|U(?:RLUbiquitousItemIsDownloadedKey|n(?:derlineStrikethroughMask|scaledWindowMask)))\\\\b',\n name: 'invalid.deprecated.10.9.support.variable.cocoa.objc'\n },\n {\n match: '\\\\bNSUserNotification(?:Action|Center)?\\\\b',\n name: 'invalid.deprecated.tba.support.class.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:AtomicWrite|DataReadingMapped|JSONReadingAllowFragments|MappedRead|U(?:ncachedRead|serNotificationActivationType(?:ActionButtonClicked|ContentsClicked|None))|VisualEffectMaterial(?:AppearanceBased|Dark|Light|MediumLight|UltraDark)|W(?:indowStyleMaskTexturedBackground|orkspaceLaunch(?:A(?:nd(?:Hide(?:Others)?|Print)|sync)|Default|InhibitingBackgroundOnly|NewInstance|With(?:ErrorPresentation|outA(?:ctivation|ddingToRecents)))))\\\\b',\n name: 'invalid.deprecated.tba.support.constant.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:UserNotificationActivationType|WorkspaceLaunchConfigurationKey)\\\\b',\n name: 'invalid.deprecated.tba.support.type.cocoa.objc'\n },\n {\n match:\n '\\\\bNS(?:AutoPagination|B(?:ackgroundStyle(?:Dark|Light)|evelLineJoinStyle|ox(?:OldStyle|Secondary)|uttLineCapStyle)|C(?:l(?:ipPagination|o(?:ckAndCalendarDatePickerStyle|sePathBezierPathElement))|ontrolTintDidChangeNotification|urveToBezierPathElement)|E(?:raDatePickerElementFlag|venOddWindingRule)|FitPagination|HourMinute(?:DatePickerElementFlag|SecondDatePickerElementFlag)|LineToBezierPathElement|M(?:iterLineJoinStyle|oveToBezierPathElement|ultipleValuesMarker)|No(?:SelectionMarker|nZeroWindingRule|tApplicableMarker)|R(?:angeDateMode|oundLine(?:CapStyle|JoinStyle))|S(?:ingleDateMode|quareLineCapStyle)|T(?:extField(?:AndStepperDatePickerStyle|DatePickerStyle)|humbnail1024x1024SizeKey|imeZoneDatePickerElementFlag|oolbar(?:CustomizeToolbarItemIdentifier|SeparatorItemIdentifier))|U(?:RLThumbnail(?:DictionaryKey|Key)|serNotificationDefaultSoundName)|WorkspaceLaunchConfiguration(?:A(?:ppleEvent|r(?:chitecture|guments))|Environment)|YearMonthDa(?:tePickerElementFlag|yDatePickerElementFlag))\\\\b',\n name: 'invalid.deprecated.tba.support.variable.cocoa.objc'\n },\n {\n match: '\\\\bIB(?:Action|Inspectable|Outlet|_DESIGNABLE)\\\\b',\n name: 'storage.type.cocoa.objc'\n },\n {match: '\\\\binstancetype\\\\b', name: 'storage.type.objc'},\n {\n match:\n '\\\\b(?:CI(?:QRCodeFeature|RectangleFeature)|NS(?:AsynchronousFetchRe(?:quest|sult)|BatchUpdateRe(?:quest|sult)|PersistentStore(?:AsynchronousResult|Result)))\\\\b',\n name: 'support.class.10.10.objc'\n },\n {\n match:\n '\\\\b(?:AU(?:AudioUnit(?:Bus(?:Array)?|Preset|V2Bridge)?|Parameter(?:Group|Node|Tree)?)|C(?:A(?:MetalLayer|SpringAnimation)|I(?:ColorKernel|TextFeature|WarpKernel))|M(?:DL(?:A(?:reaLight|sset)|C(?:amera|heckerboardTexture|olorSwatchTexture)|Light(?:Probe)?|M(?:aterial(?:Property)?|esh(?:Buffer(?:Data(?:Allocator)?|Map))?)|No(?:iseTexture|rmalMapTexture)|Object(?:Container)?|Ph(?:otometricLight|ysicallyPlausible(?:Light|ScatteringFunction))|S(?:catteringFunction|kyCubeTexture|tereoscopicCamera|ubmesh(?:Topology)?)|T(?:exture(?:Filter|Sampler)?|ransform)|URLTexture|V(?:ertex(?:Attribute(?:Data)?|BufferLayout|Descriptor)|oxelArray))|T(?:K(?:Mesh(?:Buffer(?:Allocator)?)?|Submesh|TextureLoader|View)|L(?:Ar(?:gument|rayType)|Comp(?:ileOptions|utePipeline(?:Descriptor|Reflection))|DepthStencilDescriptor|RenderP(?:ass(?:AttachmentDescriptor|ColorAttachmentDescriptor(?:Array)?|De(?:pthAttachmentDescriptor|scriptor)|StencilAttachmentDescriptor)|ipeline(?:ColorAttachmentDescriptor(?:Array)?|Descriptor|Reflection))|S(?:amplerDescriptor|t(?:encilDescriptor|ruct(?:Member|Type)))|TextureDescriptor|Vertex(?:Attribute(?:Descriptor(?:Array)?)?|BufferLayoutDescriptor(?:Array)?|Descriptor))))|NS(?:BatchDeleteRe(?:quest|sult)|ConstraintConflict))\\\\b',\n name: 'support.class.10.11.objc'\n },\n {\n match:\n '\\\\b(?:CIImageProcessorKernel|IOSurface|M(?:DLMaterialProperty(?:Connection|Graph|Node)|TL(?:Attribute(?:Descriptor(?:Array)?)?|BufferLayoutDescriptor(?:Array)?|FunctionConstant(?:Values)?|StageInputOutputDescriptor))|NS(?:FetchedResultsController|Persistent(?:Container|StoreDescription)|QueryGenerationToken))\\\\b',\n name: 'support.class.10.12.objc'\n },\n {\n match:\n '\\\\b(?:CI(?:AztecCodeDescriptor|B(?:arcodeDescriptor|lendKernel)|DataMatrixCodeDescriptor|PDF417CodeDescriptor|QRCodeDescriptor|Render(?:Destination|Info|Task))|M(?:DL(?:Animat(?:ed(?:Matrix4x4|QuaternionArray|Scalar(?:Array)?|V(?:alue|ector(?:2|3(?:Array)?|4)))|ionBindComponent)|BundleAssetResolver|M(?:atrix4x4Array|eshBufferZoneDefault)|Pa(?:ckedJointAnimation|thAssetResolver)|RelativeAssetResolver|Skeleton|Transform(?:MatrixOp|Rotate(?:Op|XOp|YOp|ZOp)|S(?:caleOp|tack)|TranslateOp))|TL(?:ArgumentDescriptor|CaptureManager|HeapDescriptor|P(?:ipelineBufferDescriptor(?:Array)?|ointerType)|T(?:extureReferenceType|ype)))|NS(?:CoreDataCoreSpotlightDelegate|FetchIndex(?:Description|ElementDescription)|PersistentHistory(?:Change(?:Request)?|Result|T(?:oken|ransaction)))|PDFAppearanceCharacteristics)\\\\b',\n name: 'support.class.10.13.objc'\n },\n {\n match:\n '\\\\bM(?:DL(?:AnimatedQuaternion|TransformOrientOp)|TL(?:IndirectCommandBufferDescriptor|Shared(?:Event(?:Handle|Listener)|TextureHandle)))\\\\b',\n name: 'support.class.10.14.objc'\n },\n {\n match:\n '\\\\b(?:CAEDRMetadata|MTL(?:C(?:aptureDescriptor|ounterSampleBufferDescriptor)|RasterizationRate(?:Layer(?:Array|Descriptor)|MapDescriptor|SampleArray))|NS(?:BatchInsertRe(?:quest|sult)|DerivedAttributeDescription|PersistentCloudKitContainer(?:Options)?))\\\\b',\n name: 'support.class.10.15.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:AccessibilityElement|BackgroundActivityScheduler|ClickGestureRecognizer|Date(?:ComponentsFormatter|IntervalFormatter)|E(?:nergyFormatter|xtension(?:Context|Item))|FileAccessIntent|GestureRecognizer|ItemProvider|LengthFormatter|Ma(?:gnificationGestureRecognizer|ssFormatter)|P(?:a(?:nGestureRecognizer|thControlItem)|ress(?:GestureRecognizer|ureConfiguration))|RotationGestureRecognizer|S(?:plitView(?:Controller|Item)|t(?:atusBarButton|oryboard(?:Segue)?))|T(?:abViewController|itlebarAccessoryViewController)|U(?:RLQueryItem|serActivity)|VisualEffectView)|WK(?:BackForwardList(?:Item)?|FrameInfo|Navigation(?:Action|Response)?|Pr(?:eferences|ocessPool)|ScriptMessage|User(?:ContentController|Script)|W(?:ebView(?:Configuration)?|indowFeatures)))\\\\b',\n name: 'support.class.cocoa.10.10.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:AlignmentFeedbackFilter|CollectionView(?:FlowLayout(?:InvalidationContext)?|GridLayout|Layout(?:Attributes|InvalidationContext)?|TransitionLayout|UpdateItem)|D(?:ataAsset|ictionaryControllerKeyValuePair)|HapticFeedbackManager|Layout(?:Anchor|Dimension|Guide|XAxisAnchor|YAxisAnchor)|PersonNameComponents(?:Formatter)?|StringDrawingContext|TableViewRowAction|URLSessionStreamTask)|WK(?:SecurityOrigin|WebsiteData(?:Record|Store)))\\\\b',\n name: 'support.class.cocoa.10.11.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:C(?:andidateListTouchBarItem|olorPickerTouchBarItem|ustomTouchBarItem)|D(?:ateInterval|imension)|FilePromise(?:Provider|Receiver)|Gr(?:id(?:C(?:ell|olumn)|Row|View)|oupTouchBarItem)|ISO8601DateFormatter|Measurement(?:Formatter)?|PopoverTouchBarItem|S(?:crubber(?:ArrangedView|FlowLayout|I(?:mageItemView|temView)|Layout(?:Attributes)?|ProportionalLayout|Selection(?:Style|View)|TextItemView)?|haringServicePickerTouchBarItem|lider(?:Accessory(?:Behavior)?|TouchBarItem))|TouchBar(?:Item)?|U(?:RLSessionTask(?:Metrics|TransactionMetrics)|nit(?:A(?:cceleration|ngle|rea)|Con(?:centrationMass|verter(?:Linear)?)|D(?:ispersion|uration)|E(?:lectric(?:C(?:harge|urrent)|PotentialDifference|Resistance)|nergy)|F(?:requency|uelEfficiency)|Illuminance|Length|Mass|P(?:ower|ressure)|Speed|Temperature|Volume)?))|WKOpenPanelParameters)\\\\b',\n name: 'support.class.cocoa.10.12.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:AccessibilityCustom(?:Action|Rotor(?:ItemResult|SearchParameters)?)|F(?:ileProviderService|ontAssetRequest)|UserInterfaceCompressionOptions|WindowTab(?:Group)?)|WK(?:ContentRuleList(?:Store)?|HTTPCookieStore|SnapshotConfiguration))\\\\b',\n name: 'support.class.cocoa.10.13.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:BindingSelectionMarker|SecureUnarchiveFromDataTransformer|WorkspaceAuthorization)|UN(?:CalendarNotificationTrigger|MutableNotificationContent|Notification(?:A(?:ction|ttachment)|C(?:ategory|ontent)|Re(?:quest|sponse)|S(?:e(?:rviceExtension|ttings)|ound)|Trigger)?|PushNotificationTrigger|T(?:extInputNotification(?:Action|Response)|imeIntervalNotificationTrigger)|UserNotificationCenter))\\\\b',\n name: 'support.class.cocoa.10.14.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:ButtonTouchBarItem|Col(?:lection(?:Layout(?:Anchor|BoundarySupplementaryItem|D(?:ecorationItem|imension)|EdgeSpacing|Group(?:CustomItem)?|Item|S(?:ection|ize|pacing|upplementaryItem))|View(?:CompositionalLayout(?:Configuration)?|DiffableDataSource))|orSampler)|DiffableDataSourceSnapshot|ListFormatter|MenuToolbarItem|OrderedCollection(?:Change|Difference)|PickerTouchBarItem|RelativeDateTimeFormatter|S(?:haringServicePickerToolbarItem|tepperTouchBarItem|witch)|TextCheckingController|U(?:RLSessionWebSocket(?:Message|Task)|nitInformationStorage)|WorkspaceOpenConfiguration)|WKWebpagePreferences)\\\\b',\n name: 'support.class.cocoa.10.15.objc'\n },\n {\n match:\n '\\\\bNS(?:ByteCountFormatter|PageController|SharingService(?:Picker)?|TextAlternatives|U(?:UID|ser(?:A(?:ppleScriptTask|utomatorTask)|ScriptTask|UnixTask))|XPC(?:Co(?:der|nnection)|Interface|Listener(?:Endpoint)?))\\\\b',\n name: 'support.class.cocoa.10.8.objc'\n },\n {\n match:\n '\\\\bNS(?:Appearance|MediaLibraryBrowserController|P(?:DF(?:Info|Panel)|rogress)|StackView|URL(?:Components|Session(?:Configuration|Task)?))\\\\b',\n name: 'support.class.cocoa.10.9.objc'\n },\n {\n match:\n '\\\\b(?:AB(?:AddressBook|Group|Mu(?:ltiValue|tableMultiValue)|Pe(?:oplePickerView|rson(?:View)?)|Record|SearchElement)|NS(?:A(?:TSTypesetter|ctionCell|ffineTransform|lert|nimation(?:Context)?|ppl(?:e(?:Event(?:Descriptor|Manager)|Script)|ication)|rray(?:Controller)?|ssertionHandler|ttributedString|utoreleasePool)|B(?:ezierPath|itmapImageRep|lockOperation|ox|rowser(?:Cell)?|u(?:ndle(?:ResourceRequest)?|tton(?:Cell)?))|C(?:IImageRep|a(?:che(?:dURLResponse)?|lendar)|ell|haracterSet|l(?:assDescription|ipView|o(?:neCommand|seCommand))|o(?:der|l(?:lectionView(?:Item)?|or(?:List|P(?:anel|icker)|Space|Well)?)|m(?:boBox(?:Cell)?|p(?:arisonPredicate|oundPredicate))|n(?:dition(?:Lock)?|stantString|trol(?:ler)?)|unt(?:Command|edSet))|reateCommand|u(?:rsor|stomImageRep))|D(?:at(?:a(?:Detector)?|e(?:Components|Formatter|Picker(?:Cell)?)?)|e(?:cimalNumber(?:Handler)?|leteCommand)|i(?:ctionary(?:Controller)?|rectoryEnumerator|stributed(?:Lock|NotificationCenter))|oc(?:kTile|ument(?:Controller)?)|ragging(?:I(?:mageComponent|tem)|Session))|E(?:PSImageRep|numerator|rror|vent|x(?:ception(?:Handler)?|istsCommand|pression))|F(?:ile(?:Coordinator|Handle|Manager|Security|Version|Wrapper)|o(?:nt(?:Collection|Descriptor|Manager|Panel)?|rm(?:Cell|atter)))|G(?:etCommand|lyph(?:Generator|Info)|ra(?:dient|phicsContext))|H(?:TTP(?:Cookie(?:Storage)?|URLResponse)|ashTable|elpManager|ost)|I(?:mage(?:Cell|Rep|View)?|n(?:dex(?:Path|S(?:et|pecifier))|putStream|vocation(?:Operation)?))|JSONSerialization|Keyed(?:Archiver|Unarchiver)|L(?:ayout(?:Constraint|Manager)|evelIndicator(?:Cell)?|inguisticTagger|o(?:c(?:ale|k)|gicalTest))|M(?:a(?:chPort|pTable|trix)|e(?:nu(?:Item(?:Cell)?)?|ssagePort|t(?:adata(?:Item|Query(?:AttributeValueTuple|ResultGroup)?)|hodSignature))|iddleSpecifier|oveCommand|utable(?:A(?:rray|ttributedString)|CharacterSet|D(?:ata|ictionary)|FontCollection|IndexSet|OrderedSet|ParagraphStyle|S(?:et|tring)|URLRequest))|N(?:ameSpecifier|etService(?:Browser)?|ib(?:Con(?:nector|trolConnector)|OutletConnector)?|otification(?:Center|Queue)?|u(?:ll|mber(?:Formatter)?))|O(?:bjectController|pe(?:nPanel|ration(?:Queue)?)|r(?:deredSet|thography)|ut(?:lineView|putStream))|P(?:DFImageRep|ICTImageRep|a(?:geLayout|nel|ragraphStyle|steboard(?:Item)?|thC(?:ell|o(?:mponentCell|ntrol)))|ersistentDocument|ipe|o(?:inter(?:Array|Functions)|p(?:UpButton(?:Cell)?|over)|rt(?:Message)?|sitionalSpecifier)|r(?:edicate(?:Editor(?:RowTemplate)?)?|int(?:Info|Operation|Panel|er)|o(?:cessInfo|gressIndicator|perty(?:ListSerialization|Specifier)|tocolChecker|xy))|urgeableData)|QuitCommand|R(?:an(?:domSpecifier|geSpecifier)|e(?:cursiveLock|gularExpression|lativeSpecifier|sponder)|u(?:le(?:Editor|r(?:Marker|View))|n(?:Loop|ningApplication)))|S(?:avePanel|c(?:anner|r(?:een|ipt(?:C(?:lassDescription|o(?:ercionHandler|mmand(?:Description)?))|ExecutionContext|ObjectSpecifier|SuiteRegistry|WhoseTest)|oll(?:View|er)))|e(?:archField(?:Cell)?|cureTextField(?:Cell)?|gmentedC(?:ell|ontrol)|t(?:Command)?)|hadow|impleCString|lider(?:Cell)?|o(?:cketPort|rtDescriptor|und)|p(?:e(?:cifierTest|ech(?:Recognizer|Synthesizer)|ll(?:Checker|Server))|litView)|t(?:atus(?:Bar|Item)|epper(?:Cell)?|r(?:eam|ing)))|T(?:a(?:b(?:View(?:Item)?|le(?:C(?:ellView|olumn)|Header(?:Cell|View)|RowView|View))|sk)|ext(?:Attachment(?:Cell)?|Block|C(?:heckingResult|ontainer)|Fi(?:eld(?:Cell)?|nder)|InputContext|List|Storage|Tab(?:le(?:Block)?)?|View)?|hread|ime(?:Zone|r)|o(?:kenField(?:Cell)?|olbar(?:Item(?:Group)?)?|uch)|r(?:ackingArea|ee(?:Controller|Node))|ypesetter)|U(?:RL(?:AuthenticationChallenge|C(?:ache|onnection|redential(?:Storage)?)|Download|Handle|Prot(?:ectionSpace|ocol)|Re(?:quest|sponse)|Session(?:D(?:ataTask|ownloadTask)|UploadTask))?|biquitousKeyValueStore|n(?:doManager|iqueIDSpecifier)|serDefaults(?:Controller)?)|V(?:alue(?:Transformer)?|iew(?:Animation|Controller)?)|W(?:hoseSpecifier|indow(?:Controller)?|orkspace)|XML(?:D(?:TD(?:Node)?|ocument)|Element|Node|Parser))|UNLocationNotificationTrigger|WebResource)\\\\b',\n name: 'support.class.cocoa.objc'\n },\n {\n match:\n '\\\\b(?:AM(?:A(?:ction|ppleScriptAction)|BundleAction|ShellScriptAction|Work(?:flow(?:Controller|View)?|space))|C(?:A(?:Animation(?:Group)?|BasicAnimation|Constraint(?:LayoutManager)?|DisplayLink|Emitter(?:Cell|Layer)|GradientLayer|KeyframeAnimation|Layer|MediaTimingFunction|PropertyAnimation|Re(?:moteLayer(?:Client|Server)|nderer|plicatorLayer)|S(?:crollLayer|hapeLayer)|T(?:extLayer|iledLayer|rans(?:action|formLayer|ition))|ValueFunction)|B(?:GroupIdentity|Identity(?:Authority|Picker)?|UserIdentity)|I(?:Co(?:lor|ntext)|Detector|F(?:aceFeature|eature|ilter(?:Generator|Shape)?)|Image(?:Accumulator)?|Kernel|PlugIn|Sampler|Vector)|X(?:A(?:ction|nswerCallAction)|Call(?:Action|Controller|Directory(?:ExtensionContext|Manager|Provider)|Observer|Update)?|EndCallAction|Handle|P(?:layDTMFCallAction|rovider(?:Configuration)?)|S(?:et(?:GroupCallAction|HeldCallAction|MutedCallAction)|tartCallAction)|Transaction)|al(?:A(?:larm|ttendee)|Calendar(?:Item|Store)?|Event|NthWeekDay|Recurrence(?:End|Rule)|Task))|DR(?:Burn|CDTextBlock|Device|Erase|F(?:SObject|ile|older)|MSF(?:Formatter)?|NotificationCenter|Track)|I(?:C(?:Camera(?:Device|F(?:ile|older)|Item)|Device(?:Browser)?|Scanner(?:BandData|Device|F(?:eature(?:Boolean|Enumeration|Range|Template)?|unctionalUnit(?:DocumentFeeder|Flatbed|NegativeTransparency|PositiveTransparency)?)))|K(?:CameraDeviceView|DeviceBrowserView|Filter(?:Browser(?:Panel|View)|UIView)|Image(?:BrowserCell|EditPanel|View)|PictureTaker|S(?:aveOptions|cannerDeviceView|lideshow))|OBluetooth(?:AccessibilityIgnored(?:ImageCell|TextFieldCell)|Device(?:Inquiry|Pair|SelectorController)?|H(?:andsFree(?:AudioGateway|Device)?|ostController)|L2CAPChannel|O(?:BEXSession|bject(?:PushUIController)?)|Pa(?:iringController|sskeyDisplay)|RFCOMMChannel|S(?:DP(?:DataElement|Service(?:Attribute|Record)|UUID)|erviceBrowserController)|UserNotification))|NS(?:At(?:omicStore(?:CacheNode)?|tributeDescription)|E(?:ntity(?:Description|M(?:apping|igrationPolicy))|xpressionDescription)|Fetch(?:Request(?:Expression)?|edPropertyDescription)|IncrementalStore(?:Node)?|M(?:a(?:nagedObject(?:Context|ID|Model)?|ppingModel)|erge(?:Conflict|Policy)|igrationManager)|Object|P(?:ersistentStore(?:Coordinator|Request)?|r(?:eferencePane|operty(?:Description|Mapping)))|RelationshipDescription|SaveChangesRequest)|O(?:BEX(?:FileTransferServices|Session)|SA(?:Language(?:Instance)?|Script(?:Controller|View)?))|PDF(?:A(?:ction(?:GoTo|Named|Re(?:moteGoTo|setForm)|URL)?|nnotation)|Border|D(?:estination|ocument)|Outline|Page|Selection|ThumbnailView|View)|Q(?:LPreview(?:Panel|View)|uartzFilter(?:Manager|View)?)|S(?:F(?:Authorization(?:PluginView|View)?|C(?:ertificate(?:Panel|TrustPanel|View)|hooseIdentity(?:Panel|TableCellView))|KeychainS(?:avePanel|ettingsPanel))|creenSaver(?:Defaults|View)))\\\\b',\n name: 'support.class.objc'\n },\n {\n match:\n '\\\\bNS(?:BatchUpdateRequestType|StatusOnlyResultType|UpdatedObject(?:IDsResultType|sCountResultType))\\\\b',\n name: 'support.constant.10.10.objc'\n },\n {\n match:\n '\\\\b(?:MTL(?:Argument(?:Access(?:Read(?:Only|Write)|WriteOnly)|Type(?:Buffer|Sampler|T(?:exture|hreadgroupMemory)))|Bl(?:end(?:Factor(?:Blend(?:Alpha|Color)|Destination(?:Alpha|Color)|One(?:Minus(?:Blend(?:Alpha|Color)|Destination(?:Alpha|Color)|Source(?:Alpha|Color)))?|Source(?:Alpha(?:Saturated)?|Color)|Zero)|Operation(?:Add|M(?:ax|in)|ReverseSubtract|Subtract))|itOption(?:DepthFromDepthStencil|None|StencilFromDepthStencil))|C(?:PUCacheMode(?:DefaultCache|WriteCombined)|o(?:lorWriteMask(?:Al(?:l|pha)|Blue|Green|None|Red)|m(?:mandBuffer(?:Error(?:Blacklisted|In(?:ternal|validResource)|No(?:ne|tPermitted)|OutOfMemory|PageFault|Timeout)|Status(?:Com(?:mitted|pleted)|E(?:nqueued|rror)|NotEnqueued|Scheduled))|pareFunction(?:Always|Equal|Greater(?:Equal)?|Less(?:Equal)?|N(?:ever|otEqual))))|ullMode(?:Back|Front|None))|D(?:ataType(?:Array|Bool(?:2|3|4)?|Char(?:2|3|4)?|Float(?:2(?:x(?:2|3|4))?|3(?:x(?:2|3|4))?|4(?:x(?:2|3|4))?)?|Half(?:2(?:x(?:2|3|4))?|3(?:x(?:2|3|4))?|4(?:x(?:2|3|4))?)?|Int(?:2|3|4)?|None|S(?:hort(?:2|3|4)?|truct)|U(?:Char(?:2|3|4)?|Int(?:2|3|4)?|Short(?:2|3|4)?))|epthClipModeCl(?:amp|ip))|F(?:eatureSet_(?:OSX_GPUFamily1_v1|macOS_GPUFamily1_v1)|unctionType(?:Fragment|Kernel|Vertex))|IndexTypeUInt(?:16|32)|L(?:anguageVersion1_1|ibraryError(?:Compile(?:Failure|Warning)|Internal|Unsupported)|oadAction(?:Clear|DontCare|Load))|P(?:i(?:pelineOption(?:ArgumentInfo|BufferTypeInfo|None)|xelFormat(?:A8Unorm|B(?:C(?:1_RGBA(?:_sRGB)?|2_RGBA(?:_sRGB)?|3_RGBA(?:_sRGB)?|4_R(?:Snorm|Unorm)|5_RG(?:Snorm|Unorm)|6H_RGB(?:Float|Ufloat)|7_RGBAUnorm(?:_sRGB)?)|GR(?:A8Unorm(?:_sRGB)?|G422))|Depth(?:24Unorm_Stencil8|32Float(?:_Stencil8)?)|GBGR422|Invalid|R(?:16(?:Float|S(?:int|norm)|U(?:int|norm))|32(?:Float|Sint|Uint)|8(?:S(?:int|norm)|U(?:int|norm))|G(?:1(?:1B10Float|6(?:Float|S(?:int|norm)|U(?:int|norm)))|32(?:Float|Sint|Uint)|8(?:S(?:int|norm)|U(?:int|norm))|B(?:10A2U(?:int|norm)|9E5Float|A(?:16(?:Float|S(?:int|norm)|U(?:int|norm))|32(?:Float|Sint|Uint)|8(?:S(?:int|norm)|U(?:int|norm(?:_sRGB)?))))))|Stencil8))|rimitiveT(?:opologyClass(?:Line|Point|Triangle|Unspecified)|ype(?:Line(?:Strip)?|Point|Triangle(?:Strip)?))|urgeableState(?:Empty|KeepCurrent|NonVolatile|Volatile))|Resource(?:CPUCacheMode(?:DefaultCache|WriteCombined)|OptionCPUCacheMode(?:Default|WriteCombined)|StorageMode(?:Managed|Private|Shared))|S(?:ampler(?:AddressMode(?:ClampTo(?:Edge|Zero)|Mirror(?:ClampToEdge|Repeat)|Repeat)|Mi(?:nMagFilter(?:Linear|Nearest)|pFilter(?:Linear|N(?:earest|otMipmapped))))|t(?:encilOperation(?:Decrement(?:Clamp|Wrap)|In(?:crement(?:Clamp|Wrap)|vert)|Keep|Replace|Zero)|or(?:ageMode(?:Managed|Private|Shared)|eAction(?:DontCare|MultisampleResolve|Store))))|T(?:exture(?:Type(?:1D(?:Array)?|2D(?:Array|Multisample)?|3D|Cube(?:Array)?)|Usage(?:PixelFormatView|RenderTarget|Shader(?:Read|Write)|Unknown))|riangleFillMode(?:Fill|Lines))|V(?:ertex(?:Format(?:Char(?:2(?:Normalized)?|3(?:Normalized)?|4(?:Normalized)?)|Float(?:2|3|4)?|Half(?:2|3|4)|In(?:t(?:1010102Normalized|2|3|4)?|valid)|Short(?:2(?:Normalized)?|3(?:Normalized)?|4(?:Normalized)?)|U(?:Char(?:2(?:Normalized)?|3(?:Normalized)?|4(?:Normalized)?)|Int(?:1010102Normalized|2|3|4)?|Short(?:2(?:Normalized)?|3(?:Normalized)?|4(?:Normalized)?)))|StepFunction(?:Constant|Per(?:Instance|Vertex)))|isibilityResultMode(?:Boolean|Counting|Disabled))|WindingC(?:lockwise|ounterClockwise))|NSBatchDeleteRe(?:questType|sultType(?:Count|ObjectIDs|StatusOnly)))\\\\b',\n name: 'support.constant.10.11.objc'\n },\n {\n match:\n '\\\\b(?:MTL(?:AttributeFormat(?:Char(?:2(?:Normalized)?|3(?:Normalized)?|4(?:Normalized)?)|Float(?:2|3|4)?|Half(?:2|3|4)|In(?:t(?:1010102Normalized|2|3|4)?|valid)|Short(?:2(?:Normalized)?|3(?:Normalized)?|4(?:Normalized)?)|U(?:Char(?:2(?:Normalized)?|3(?:Normalized)?|4(?:Normalized)?)|Int(?:1010102Normalized|2|3|4)?|Short(?:2(?:Normalized)?|3(?:Normalized)?|4(?:Normalized)?)))|BlendFactor(?:OneMinusSource1(?:Alpha|Color)|Source1(?:Alpha|Color))|FeatureSet_(?:OSX_(?:GPUFamily1_v2|ReadWriteTextureTier2)|macOS_(?:GPUFamily1_v2|ReadWriteTextureTier2))|L(?:anguageVersion1_2|ibraryErrorF(?:ileNotFound|unctionNotFound))|P(?:atchType(?:None|Quad|Triangle)|ixelFormat(?:Depth16Unorm|X(?:24_Stencil8|32_Stencil8)))|S(?:ampler(?:AddressModeClampToBorderColor|BorderColor(?:Opaque(?:Black|White)|TransparentBlack))|t(?:epFunction(?:Constant|Per(?:Instance|Patch(?:ControlPoint)?|Vertex)|ThreadPositionInGrid(?:X(?:Indexed)?|Y(?:Indexed)?))|oreAction(?:StoreAndMultisampleResolve|Unknown)))|Tessellation(?:ControlPointIndexType(?:None|UInt(?:16|32))|Factor(?:FormatHalf|StepFunction(?:Constant|Per(?:Instance|Patch(?:AndPerInstance)?)))|PartitionMode(?:Fractional(?:Even|Odd)|Integer|Pow2))|VertexStepFunctionPerPatch(?:ControlPoint)?)|NSFetchedResultsChange(?:Delete|Insert|Move|Update))\\\\b',\n name: 'support.constant.10.12.objc'\n },\n {\n match:\n '\\\\b(?:M(?:DLDataPrecision(?:Double|Float|Undefined)|TL(?:A(?:rgumentBuffersTier(?:1|2)|ttributeFormat(?:Char(?:Normalized)?|Half|Short(?:Normalized)?|U(?:Char(?:4Normalized_BGRA|Normalized)?|Short(?:Normalized)?)))|CommandBufferErrorDeviceRemoved|DataType(?:Pointer|Sampler|Texture)|FeatureSet_macOS_GPUFamily1_v3|LanguageVersion2_0|Mutability(?:Default|Immutable|Mutable)|PixelFormatBGR10A2Unorm|Re(?:adWriteTextureTier(?:1|2|None)|nderStage(?:Fragment|Vertex)|source(?:HazardTrackingMode(?:Default|Untracked)|Usage(?:Read|Sample|Write)))|StoreAction(?:CustomSampleDepthStore|Option(?:CustomSamplePositions|None))|VertexFormat(?:Char(?:Normalized)?|Half|Short(?:Normalized)?|U(?:Char(?:4Normalized_BGRA|Normalized)?|Short(?:Normalized)?))))|NS(?:FetchIndexElementType(?:Binary|RTree)|PersistentHistory(?:ChangeType(?:Delete|Insert|Update)|ResultType(?:C(?:hangesOnly|ount)|ObjectIDs|StatusOnly|Transactions(?:AndChanges|Only)))|U(?:RIAttributeType|UIDAttributeType)))\\\\b',\n name: 'support.constant.10.13.objc'\n },\n {\n match:\n '\\\\bMTL(?:BarrierScope(?:Buffers|RenderTargets|Textures)|D(?:ataType(?:IndirectCommandBuffer|RenderPipeline)|ispatchType(?:Concurrent|Serial))|FeatureSet_macOS_GPUFamily(?:1_v4|2_v1)|IndirectCommandTypeDraw(?:Indexed)?|LanguageVersion2_1|Multisample(?:DepthResolveFilter(?:M(?:ax|in)|Sample0)|StencilResolveFilter(?:DepthResolvedSample|Sample0))|TextureType(?:2DMultisampleArray|TextureBuffer))\\\\b',\n name: 'support.constant.10.14.objc'\n },\n {\n match:\n '\\\\b(?:MTL(?:C(?:apture(?:Destination(?:DeveloperTools|GPUTraceDocument)|Error(?:AlreadyCapturing|InvalidDescriptor|NotSupported))|ounterSampleBufferError(?:Internal|OutOfMemory))|DeviceLocation(?:BuiltIn|External|Slot|Unspecified)|GPUFamily(?:Apple(?:1|2|3|4|5)|Common(?:1|2|3)|Mac(?:1|2|Catalyst(?:1|2)))|H(?:azardTrackingMode(?:Default|Tracked|Untracked)|eapType(?:Automatic|Placement))|LanguageVersion2_2|ResourceHazardTrackingModeTracked|TextureSwizzle(?:Alpha|Blue|Green|One|Red|Zero))|NSBatchInsertRequest(?:ResultType(?:Count|ObjectIDs|StatusOnly)|Type))\\\\b',\n name: 'support.constant.10.15.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:B(?:ackgroundActivityResult(?:Deferred|Finished)|itmapFormat(?:SixteenBit(?:BigEndian|LittleEndian)|ThirtyTwoBit(?:BigEndian|LittleEndian))|uttonType(?:Accelerator|MultiLevelAccelerator))|CompositingOperation(?:Color(?:Burn|Dodge)?|D(?:arken|ifference)|Exclusion|H(?:ardLight|ue)|L(?:ighten|uminosity)|Multiply|Overlay|S(?:aturation|creen|oftLight))|DateIntervalFormatter(?:FullStyle|LongStyle|MediumStyle|NoStyle|ShortStyle)|E(?:nergyFormatterUnit(?:Calorie|Joule|Kilo(?:calorie|joule))|vent(?:MaskPressure|Type(?:DirectTouch|Pressure)))|F(?:ileCoordinator(?:Reading(?:ForUploading|ImmediatelyAvailableMetadataOnly)|WritingContentIndependentMetadataOnly)|ormatting(?:Context(?:BeginningOfSentence|Dynamic|ListItem|MiddleOfSentence|Standalone|Unknown)|UnitStyle(?:Long|Medium|Short)))|ItemProvider(?:ItemUnavailableError|Un(?:expectedValueClassError|knownError))|LengthFormatterUnit(?:Centimeter|Foot|Inch|Kilometer|M(?:eter|il(?:e|limeter))|Yard)|MassFormatterUnit(?:Gram|Kilogram|Ounce|Pound|Stone)|Pro(?:cessInfoThermalState(?:Critical|Fair|Nominal|Serious)|pertyListWriteInvalidError)|QualityOfService(?:Background|Default|U(?:serIn(?:itiated|teractive)|tility))|SegmentS(?:tyleSeparated|witchTrackingMomentaryAccelerator)|TokenStyle(?:PlainSquared|Squared)|U(?:RL(?:Error(?:BackgroundSession(?:InUseByAnotherProcess|RequiresSharedContainer|WasDisconnected)|CancelledReason(?:BackgroundUpdatesDisabled|InsufficientSystemResources|UserForceQuitApplication))|Relationship(?:Contains|Other|Same))|ser(?:Activity(?:ConnectionUnavailableError|ErrorM(?:aximum|inimum)|Handoff(?:FailedError|UserInfoTooLargeError)|RemoteApplicationTimedOutError)|NotificationActivationTypeAdditionalActionClicked))|WindowStyleMaskFullSizeContentView)|WK(?:Error(?:JavaScriptExceptionOccurred|Unknown|Web(?:ContentProcessTerminated|ViewInvalidated))|Navigation(?:ActionPolicy(?:Allow|Cancel)|ResponsePolicy(?:Allow|Cancel)|Type(?:BackForward|Form(?:Resubmitted|Submitted)|LinkActivated|Other|Reload))|UserScriptInjectionTimeAtDocument(?:End|Start)))\\\\b',\n name: 'support.constant.cocoa.10.10.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:Appl(?:eEventSend(?:AlwaysInteract|Can(?:Interact|SwitchLayer)|D(?:efaultOptions|ont(?:Annotate|Execute|Record))|N(?:everInteract|oReply)|QueueReply|WaitForReply)|icationPresentationDisableCursorLocationAssistance)|BundleErrorM(?:aximum|inimum)|Co(?:der(?:ErrorM(?:aximum|inimum)|ReadCorruptError|ValueNotFoundError)|llection(?:ElementCategory(?:DecorationView|I(?:nterItemGap|tem)|SupplementaryView)|View(?:ItemHighlight(?:AsDropTarget|For(?:Deselection|Selection)|None)|ScrollDirection(?:Horizontal|Vertical)))|n(?:ditionalExpressionType|trolCharacterAction(?:ContainerBreak|HorizontalTab|LineBreak|ParagraphBreak|Whitespace|ZeroAdvancement)))|DecodingFailurePolicy(?:RaiseException|SetErrorAndReturn)|FileManagerUnmount(?:AllPartitionsAndEjectDisk|BusyError|UnknownError|WithoutUI)|GlyphProperty(?:ControlCharacter|Elastic|N(?:onBaseCharacter|ull))|ItemProviderUnavailableCoercionError|Layout(?:AttributeFirstBaseline|FormatAlignAllFirstBaseline)|NumberFormatter(?:Currency(?:AccountingStyle|ISOCodeStyle|PluralStyle)|OrdinalStyle)|PersonNameComponentsFormatter(?:Phonetic|Style(?:Abbreviated|Default|Long|Medium|Short))|URL(?:ErrorAppTransportSecurityRequiresSecureConnection|SessionResponseBecomeStream)|VisualEffectMaterial(?:Menu|Popover|Sidebar)|W(?:indowCollectionBehaviorFullScreen(?:AllowsTiling|DisallowsTiling)|ritingDirection(?:Embedding|Override)))|WKErrorJavaScriptResultTypeIsUnsupported)\\\\b',\n name: 'support.constant.cocoa.10.11.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:CloudSharing(?:ConflictError|ErrorM(?:aximum|inimum)|N(?:etworkFailureError|oPermissionError)|OtherError|QuotaExceededError|TooManyParticipantsError)|DateComponentsFormatterUnitsStyleBrief|EventMaskDirectTouch|I(?:SO8601DateFormatWith(?:ColonSeparatorInTime(?:Zone)?|Da(?:shSeparatorInDate|y)|Full(?:Date|Time)|InternetDateTime|Month|SpaceBetweenDateAndTime|Time(?:Zone)?|WeekOfYear|Year)|mage(?:Leading|Trailing))|MeasurementFormatterUnitOptions(?:NaturalScale|ProvidedUnit|TemperatureWithoutUnit)|URL(?:ErrorFileOutsideSafeArea|NetworkServiceTypeCallSignaling|SessionTaskMetricsResourceFetchType(?:LocalCache|NetworkLoad|ServerPush|Unknown)))|WK(?:AudiovisualMediaType(?:A(?:ll|udio)|None|Video)|UserInterfaceDirectionPolicy(?:Content|System)))\\\\b',\n name: 'support.constant.cocoa.10.12.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:CoderInvalidValueError|Font(?:AssetDownloadError|ErrorM(?:aximum|inimum))|I(?:SO8601DateFormatWithFractionalSeconds|temProvider(?:FileOptionOpenInPlace|RepresentationVisibility(?:All|Group|OwnProcess)))|JSONWritingSortedKeys|URLSessionDelayedRequest(?:C(?:ancel|ontinueLoading)|UseNewRequest))|WKErrorContentRuleListStore(?:CompileFailed|LookUpFailed|RemoveFailed|VersionMismatch))\\\\b',\n name: 'support.constant.cocoa.10.13.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:VisualEffectMaterial(?:ContentBackground|FullScreenUI|H(?:UDWindow|eaderView)|Sheet|ToolTip|Under(?:PageBackground|WindowBackground)|WindowBackground)|Workspace(?:AuthorizationInvalidError|ErrorM(?:aximum|inimum)))|UN(?:A(?:lertStyle(?:Alert|Banner|None)|uthorization(?:Option(?:Alert|Badge|C(?:arPlay|riticalAlert)|Provi(?:desAppNotificationSettings|sional)|Sound)|Status(?:Authorized|Denied|NotDetermined|Provisional)))|ErrorCode(?:Attachment(?:Corrupt|Invalid(?:FileSize|URL)|MoveIntoDataStoreFailed|NotInDataStore|UnrecognizedType)|Notification(?:InvalidNo(?:Content|Date)|sNotAllowed))|Notification(?:ActionOption(?:AuthenticationRequired|Destructive|Foreground)|CategoryOption(?:CustomDismissAction|HiddenPreviewsShow(?:Subtitle|Title))|PresentationOption(?:Alert|Badge|Sound)|Setting(?:Disabled|Enabled|NotSupported))|ShowPreviewsSetting(?:Always|Never|WhenAuthenticated)))\\\\b',\n name: 'support.constant.cocoa.10.14.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:Co(?:llectionChange(?:Insert|Remove)|mpression(?:ErrorM(?:aximum|inimum)|FailedError))|D(?:ataCompressionAlgorithm(?:LZ(?:4|FSE|MA)|Zlib)|ecompressionFailedError|irectoryEnumeration(?:IncludesDirectoriesPostOrder|ProducesRelativePathURLs))|Event(?:MaskChangeMode|TypeChangeMode)|JSONWritingWithoutEscapingSlashes|OrderedCollectionDifferenceCalculation(?:InferMoves|Omit(?:InsertedObjects|RemovedObjects))|PickerTouchBarItem(?:ControlRepresentation(?:Automatic|Collapsed|Expanded)|SelectionMode(?:Momentary|Select(?:Any|One)))|RelativeDateTimeFormatter(?:StyleN(?:amed|umeric)|UnitsStyle(?:Abbreviated|Full|S(?:hort|pellOut)))|T(?:extScaling(?:Standard|iOS)|oolbarItemGroup(?:ControlRepresentation(?:Automatic|Collapsed|Expanded)|SelectionMode(?:Momentary|Select(?:Any|One))))|URL(?:ErrorNetworkUnavailableReason(?:C(?:ellular|onstrained)|Expensive)|SessionWebSocket(?:CloseCode(?:AbnormalClosure|GoingAway|In(?:ternalServerError|valid(?:FramePayloadData)?)|M(?:andatoryExtensionMissing|essageTooBig)|No(?:StatusReceived|rmalClosure)|P(?:olicyViolation|rotocolError)|TLSHandshakeFailure|UnsupportedData)|MessageType(?:Data|String))))|WKErrorAttributedStringContent(?:FailedToLoad|LoadTimedOut))\\\\b',\n name: 'support.constant.cocoa.10.15.objc'\n },\n {\n match:\n '\\\\bNS(?:A(?:pplicationScriptsDirectory|utosaveAsOperation)|DataWritingWithoutOverwriting|Event(?:MaskSmartMagnify|Type(?:QuickLook|SmartMagnify))|FeatureUnsupportedError|PointerFunctionsWeakMemory|RemoteNotificationType(?:Alert|Sound)|TrashDirectory|U(?:RLCredentialPersistenceSynchronizable|biquitousKeyValueStoreAccountChange)|XPCConnection(?:ErrorM(?:aximum|inimum)|In(?:terrupted|valid)|Privileged|ReplyInvalid))\\\\b',\n name: 'support.constant.cocoa.10.8.objc'\n },\n {\n match:\n '\\\\bNS(?:A(?:ctivity(?:AutomaticTerminationDisabled|Background|Idle(?:DisplaySleepDisabled|SystemSleepDisabled)|LatencyCritical|SuddenTerminationDisabled|UserInitiated(?:AllowingIdleSystemSleep)?)|nyKeyExpressionType)|Calendar(?:Match(?:First|Last|NextTime(?:PreservingSmallerUnits)?|PreviousTimePreservingSmallerUnits|Strictly)|SearchBackwards)|DataBase64(?:DecodingIgnoreUnknownCharacters|Encoding(?:64CharacterLineLength|76CharacterLineLength|EndLineWith(?:CarriageReturn|LineFeed)))|NetServiceListenForConnections|TableViewDraggingDestinationFeedbackStyleGap|U(?:RL(?:NetworkServiceType(?:AVStreaming|ResponsiveAV)|Session(?:AuthChallenge(?:CancelAuthenticationChallenge|PerformDefaultHandling|RejectProtectionSpace|UseCredential)|Response(?:Allow|BecomeDownload|Cancel)|TaskState(?:C(?:anceling|ompleted)|Running|Suspended)))|biquitousFile(?:ErrorM(?:aximum|inimum)|NotUploadedDueToQuotaError|U(?:biquityServerNotAvailable|navailableError))|serNotificationActivationTypeReplied)|ViewLayerContentsRedrawCrossfade)\\\\b',\n name: 'support.constant.cocoa.10.9.objc'\n },\n {name: 'support.constant.cocoa.objc'},\n {name: 'support.constant.objc'},\n {\n match:\n '\\\\bOBJC_ASSOCIATION_(?:ASSIGN|COPY(?:_NONATOMIC)?|RETAIN(?:_NONATOMIC)?)\\\\b',\n name: 'support.constant.run-time.objc'\n },\n {\n match: '\\\\bNSBatchUpdateRequestResultType\\\\b',\n name: 'support.type.10.10.objc'\n },\n {\n match:\n '\\\\b(?:MTL(?:Argument(?:Access|Type)|Bl(?:end(?:Factor|Operation)|itOption)|C(?:PUCacheMode|o(?:lorWriteMask|m(?:mandBuffer(?:Error|Status)|pareFunction))|ullMode)|D(?:ataType|epthClipMode)|F(?:eatureSet|unctionType)|IndexType|L(?:anguageVersion|ibraryError|oadAction)|P(?:i(?:pelineOption|xelFormat)|rimitiveT(?:opologyClass|ype)|urgeableState)|ResourceOptions|S(?:ampler(?:AddressMode|Mi(?:nMagFilter|pFilter))|t(?:encilOperation|or(?:ageMode|eAction)))|T(?:exture(?:Type|Usage)|riangleFillMode)|V(?:ertex(?:Format|StepFunction)|isibilityResultMode)|Winding)|NSBatchDeleteRequestResultType)\\\\b',\n name: 'support.type.10.11.objc'\n },\n {\n match:\n '\\\\b(?:MT(?:KTextureLoaderArrayCallback|L(?:AttributeFormat|PatchType|S(?:amplerBorderColor|tepFunction)|Tessellation(?:ControlPointIndexType|Factor(?:Format|StepFunction)|PartitionMode)))|NSFetchedResultsChangeType)\\\\b',\n name: 'support.type.10.12.objc'\n },\n {\n match:\n '\\\\b(?:M(?:DLDataPrecision|TL(?:ArgumentBuffersTier|DeviceNotification(?:Handler|Name)|Mutability|Re(?:adWriteTextureTier|nderStages|sourceUsage)|StoreActionOptions))|NS(?:FetchIndexElementType|PersistentHistory(?:ChangeType|ResultType))|PDFDisplayDirection)\\\\b',\n name: 'support.type.10.13.objc'\n },\n {\n match:\n '\\\\bMTL(?:BarrierScope|DispatchType|IndirectCommand(?:BufferExecutionRange|Type)|Multisample(?:DepthResolveFilter|StencilResolveFilter)|StageInRegionIndirectArguments)\\\\b',\n name: 'support.type.10.14.objc'\n },\n {\n match:\n '\\\\b(?:IC(?:CameraItem(?:MetadataOption|ThumbnailOption)|Delete(?:Error|Result)|SessionOptions)|MTL(?:C(?:apture(?:Destination|Error)|o(?:mmonCounter(?:Set)?|unter(?:Result(?:Sta(?:geUtilization|tistic)|Timestamp)|SampleBufferError)))|DeviceLocation|GPUFamily|H(?:azardTrackingMode|eapType)|TextureSwizzle(?:Channels)?|VertexAmplificationViewMapping)|NSBatchInsertRequestResultType)\\\\b',\n name: 'support.type.10.15.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:Accessibility(?:Orientation|RulerMarkerType|SortDirection|Units)|BackgroundActivityResult|Date(?:ComponentsFormatter(?:UnitsStyle|ZeroFormattingBehavior)|IntervalFormatterStyle)|EnergyFormatterUnit|Formatting(?:Context|UnitStyle)|GestureRecognizerState|I(?:mageResizingMode|temProviderErrorCode)|LengthFormatterUnit|MassFormatterUnit|Pr(?:essureBehavior|ocessInfoThermalState)|QualityOfService|TabViewControllerTabStyle|URLRelationship|Vi(?:ewControllerTransitionOptions|sualEffect(?:BlendingMode|Material|State))|WindowTitleVisibility)|WK(?:ErrorCode|Navigation(?:ActionPolicy|ResponsePolicy|Type)|UserScriptInjectionTime))\\\\b',\n name: 'support.type.cocoa.10.10.objc'\n },\n {\n match:\n '\\\\bNS(?:AppleEventSendOptions|Co(?:llection(?:ElementCategory|UpdateAction|View(?:ItemHighlightState|ScrollDirection))|ntrolCharacterAction)|D(?:ataAssetName|ecodingFailurePolicy)|FileManagerUnmountOptions|GlyphProperty|HapticFeedbackP(?:attern|erformanceTime)|PersonNameComponentsFormatter(?:Options|Style)|S(?:p(?:litViewItem(?:Behavior|CollapseBehavior)|ringLoading(?:Highlight|Options))|tackViewDistribution)|T(?:able(?:RowActionEdge|ViewRowActionStyle)|extStorageEditActions)|WritingDirectionFormatType)\\\\b',\n name: 'support.type.cocoa.10.11.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:CloudKitSharingServiceOptions|DisplayGamut|Grid(?:CellPlacement|RowAlignment)|ImageLayoutDirection|MeasurementFormatterUnitOptions|PasteboardContentsOptions|S(?:crubber(?:Alignment|Mode)|liderAccessoryWidth|tatusItemBehavior)|T(?:ab(?:Position|ViewBorderType)|ouch(?:BarItemPriority|Type(?:Mask)?))|URLSessionTaskMetricsResourceFetchType|Window(?:ListOptions|TabbingMode|UserTabbingPreference))|WK(?:AudiovisualMediaTypes|UserInterfaceDirectionPolicy))\\\\b',\n name: 'support.type.cocoa.10.12.objc'\n },\n {\n match:\n '\\\\bNS(?:Accessibility(?:AnnotationPosition|CustomRotor(?:SearchDirection|Type))|FontAssetRequestOptions|ItemProvider(?:FileOptions|RepresentationVisibility)|SegmentDistribution|URLSessionDelayedRequestDisposition)\\\\b',\n name: 'support.type.cocoa.10.13.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:ColorSystemEffect|WorkspaceAuthorizationType)|UN(?:A(?:lertStyle|uthorization(?:Options|Status))|ErrorCode|Notification(?:ActionOptions|CategoryOptions|PresentationOptions|Setting)|ShowPreviewsSetting))\\\\b',\n name: 'support.type.cocoa.10.14.objc'\n },\n {\n match:\n '\\\\bNS(?:AttributedStringCompletionHandler|Collection(?:ChangeType|LayoutSectionOrthogonalScrollingBehavior)|D(?:ataCompressionAlgorithm|irectional(?:EdgeInsets|RectEdge))|OrderedCollectionDifferenceCalculationOptions|PickerTouchBarItem(?:ControlRepresentation|SelectionMode)|Re(?:ctAlignment|lativeDateTimeFormatter(?:Style|UnitsStyle))|T(?:extScalingType|oolbarItemGroup(?:ControlRepresentation|SelectionMode))|URL(?:ErrorNetworkUnavailableReason|SessionWebSocket(?:CloseCode|MessageType)))\\\\b',\n name: 'support.type.cocoa.10.15.objc'\n },\n {\n match:\n '\\\\bNS(?:PageControllerTransitionStyle|SharingContentScope|XPCConnectionOptions)\\\\b',\n name: 'support.type.cocoa.10.8.objc'\n },\n {\n match:\n '\\\\bNS(?:A(?:c(?:cessibilityPriorityLevel|tivityOptions)|pplicationOcclusionState)|DataBase64(?:DecodingOptions|EncodingOptions)|MediaLibrary|P(?:DFPanelOptions|aperOrientation)|StackView(?:Gravity|VisibilityPriority)|U(?:RLSession(?:AuthChallengeDisposition|ResponseDisposition|TaskState)|serInterfaceLayoutOrientation)|WindowOcclusionState|XMLParserExternalEntityResolvingPolicy)\\\\b',\n name: 'support.type.cocoa.10.9.objc'\n },\n {\n match:\n '\\\\b(?:AB(?:P(?:eoplePickerSelectionBehavior|ropertyType)|SearchCo(?:mparison|njunction))|DOM(?:ObjectInternal|TimeStamp)|NS(?:A(?:boutPanelOptionKey|c(?:cessibility(?:A(?:ctionName|nnotation(?:AttributeKey|Position)|ttributeName)|CustomRotor(?:SearchDirection|Type)|FontAttributeKey|LoadingToken|Notification(?:Name|UserInfoKey)|Orientation(?:Value)?|P(?:arameterizedAttributeName|riorityLevel)|R(?:ole|uler(?:MarkerType(?:Value)?|UnitValue))|S(?:ortDirection(?:Value)?|ubrole)|Units)|tivityOptions)|ffineTransformStruct|l(?:ertStyle|ignmentOptions)|nimat(?:ablePropertyKey|ion(?:BlockingMode|Curve|Effect|Progress))|pp(?:KitVersion|earanceName|l(?:eEvent(?:ManagerSuspensionID|SendOptions)|ication(?:Activation(?:Options|Policy)|DelegateReply|OcclusionState|Pr(?:esentationOptions|intReply)|TerminateReply)))|ttributedString(?:Document(?:AttributeKey|ReadingOptionKey|Type)|EnumerationOptions|Key)|utoresizingMaskOptions)|B(?:ack(?:ground(?:Activity(?:CompletionHandler|Result)|Style)|ingStoreType)|ez(?:elStyle|ierPathElement)|i(?:n(?:arySearchingOptions|ding(?:InfoKey|Name|Option))|tmap(?:Format|Image(?:FileType|RepPropertyKey)))|o(?:rderType|xType)|rowser(?:Column(?:ResizingType|sAutosaveName)|DropOperation)|uttonType|yteCountFormatter(?:CountStyle|Units))|C(?:al(?:culationError|endar(?:Identifier|Options|Unit))|ell(?:Attribute|HitResult|ImagePosition|StyleMask|Type)|haracterCollection|loudKitSharingServiceOptions|o(?:l(?:lection(?:ChangeType|ElementCategory|Layout(?:GroupCustomItemProvider|Section(?:OrthogonalScrollingBehavior|VisibleItemsInvalidationHandler))|UpdateAction|View(?:CompositionalLayoutSectionProvider|D(?:ecorationElementKind|iffableDataSource(?:ItemProvider|SupplementaryViewProvider)|ropOperation)|ItemHighlightState|S(?:croll(?:Direction|Position)|upplementaryElementKind)|TransitionLayoutAnimatedKey))|or(?:ListName|Name|Panel(?:Mode|Options)|RenderingIntent|S(?:pace(?:Model|Name)|ystemEffect)|Type))|mp(?:ar(?:ator|ison(?:Predicate(?:Modifier|Options)|Result))|o(?:sitingOperation|undPredicateType))|ntrol(?:CharacterAction|S(?:ize|tateValue)|Tint)|rrection(?:IndicatorType|Response)))|D(?:at(?:a(?:Base64(?:DecodingOptions|EncodingOptions)|CompressionAlgorithm|ReadingOptions|SearchOptions|WritingOptions)|e(?:ComponentsFormatter(?:UnitsStyle|ZeroFormattingBehavior)|Formatter(?:Behavior|Style)|IntervalFormatterStyle|Picker(?:ElementFlags|Mode|Style)))|e(?:c(?:imal|odingFailurePolicy)|finition(?:OptionKey|PresentationType)|viceDescriptionKey)|i(?:rect(?:ional(?:EdgeInsets|RectEdge)|oryEnumerationOptions)|s(?:playGamut|tributedNotification(?:CenterType|Options)))|ocumentChangeType|ra(?:g(?:Operation|ging(?:Context|Formation|I(?:mageComponentKey|temEnumerationOptions)))|werState))|E(?:dgeInsets|n(?:ergyFormatterUnit|umerationOptions)|rror(?:Domain|UserInfoKey)|vent(?:ButtonMask|GestureAxis|M(?:ask|odifierFlags)|Phase|S(?:ubtype|wipeTrackingOptions)|Type)|x(?:ceptionName|pressionType))|F(?:astEnumerationState|i(?:le(?:Attribute(?:Key|Type)|Coordinator(?:ReadingOptions|WritingOptions)|Manager(?:ItemReplacementOptions|UnmountOptions)|Pro(?:tectionType|viderServiceName)|Version(?:AddingOptions|ReplacingOptions)|Wrapper(?:ReadingOptions|WritingOptions))|ndPanel(?:Action|SubstringMatchType))|o(?:cusRing(?:Placement|Type)|nt(?:A(?:ction|ssetRequestOptions)|Collection(?:ActionTypeKey|MatchingOptionKey|Name|Options|UserInfoKey|Visibility)|Descriptor(?:AttributeName|FeatureKey|Sy(?:mbolicTraits|stemDesign)|TraitKey|VariationKey)|FamilyClass|PanelModeMask|RenderingMode|SymbolicTraits|TraitMask|Weight)|rmatting(?:Context|UnitStyle)))|G(?:estureRecognizerState|lyph(?:Inscription|Property)?|r(?:a(?:dient(?:DrawingOptions|Type)|phicsContext(?:AttributeKey|RepresentationFormatName))|id(?:CellPlacement|RowAlignment)))|H(?:TTPCookie(?:AcceptPolicy|PropertyKey|StringPolicy)|a(?:pticFeedbackP(?:attern|erformanceTime)|sh(?:Enumerator|Table(?:CallBacks|Options)))|elp(?:AnchorName|BookName|ManagerContextHelpKey))|I(?:SO8601DateFormatOptions|mage(?:Alignment|CacheMode|FrameStyle|HintKey|Interpolation|L(?:ayoutDirection|oadStatus)|Name|Re(?:pLoadStatus|sizingMode)|Scaling)|nsertionPosition|temProvider(?:CompletionHandler|ErrorCode|FileOptions|LoadHandler|RepresentationVisibility))|JSON(?:ReadingOptions|WritingOptions)|KeyValue(?:Change(?:Key)?|O(?:bservingOptions|perator)|SetMutationKind)|L(?:ayout(?:Attribute|ConstraintOrientation|FormatOptions|Priority|Relation)|e(?:ngthFormatterUnit|velIndicator(?:PlaceholderVisibility|Style))|in(?:e(?:BreakMode|CapStyle|JoinStyle|MovementDirection|SweepDirection)|guisticTag(?:Scheme|ger(?:Options|Unit))?)|ocale(?:Key|LanguageDirection))|M(?:a(?:chPortOptions|p(?:Enumerator|Table(?:KeyCallBacks|Options|ValueCallBacks))|ssFormatterUnit|t(?:ching(?:Flags|Options)|rixMode))|e(?:asurementFormatterUnitOptions|diaLibrary|nuProperties)|odal(?:Response|Session)|ultibyteGlyphPacking)|N(?:etService(?:Options|sError)|ibName|otification(?:Coalescing|Name|SuspensionBehavior)|umberFormatter(?:Behavior|PadPosition|RoundingMode|Style))|O(?:pe(?:nGL(?:ContextParameter|GlobalOption)|rati(?:ngSystemVersion|onQueuePriority))|rderedCollectionDifferenceCalculationOptions)|P(?:DFPanelOptions|a(?:geController(?:ObjectIdentifier|TransitionStyle)|perOrientation|steboard(?:ContentsOptions|Name|ReadingOption(?:Key|s)|Type(?:FindPanelSearchOptionKey|TextFinderOptionKey)?|WritingOptions)|thStyle)|ersonNameComponentsFormatter(?:Options|Style)|ickerTouchBarItem(?:ControlRepresentation|SelectionMode)|o(?:int(?:Array|Pointer|erFunctionsOptions|ingDeviceType)?|p(?:UpArrowPosition|over(?:Appearance|Behavior|CloseReasonValue))|stingStyle)|r(?:e(?:dicateOperatorType|ssureBehavior)|int(?:Info(?:AttributeKey|SettingKey)|JobDispositionValue|Panel(?:AccessorySummaryKey|JobStyleHint|Options)|RenderingQuality|er(?:PaperName|T(?:ableStatus|ypeName))|ing(?:Orientation|Pag(?:eOrder|inationMode)))|o(?:cessInfoThermalState|gress(?:FileOperationKind|Indicator(?:Style|Thickness)|Kind|PublishingHandler|U(?:npublishingHandler|serInfoKey))|pertyList(?:Format|MutabilityOptions|ReadOptions|WriteOptions))))|QualityOfService|R(?:ange(?:Pointer)?|e(?:ct(?:A(?:lignment|rray)|Edge|Pointer)?|gularExpressionOptions|lative(?:DateTimeFormatter(?:Style|UnitsStyle)|Position)|moteNotificationType|questUserAttentionType)|oundingMode|u(?:le(?:Editor(?:NestingMode|PredicatePartKey|RowType)|r(?:Orientation|ViewUnitName))|nLoopMode))|S(?:aveOp(?:erationType|tions)|cr(?:oll(?:ArrowPosition|Elasticity|ViewFindBarPosition|er(?:Arrow|KnobStyle|Part|Style))|ubber(?:Alignment|Mode))|e(?:arch(?:FieldRecentsAutosaveName|PathD(?:irectory|omainMask))|gment(?:Distribution|S(?:tyle|witchTracking))|lection(?:Affinity|Direction|Granularity)|rviceProviderName)|haring(?:ContentScope|ServiceName)|ize(?:Array|Pointer)?|liderType|o(?:cketNativeHandle|rtOptions|und(?:Name|PlaybackDeviceIdentifier))|p(?:e(?:ech(?:Boundary|CommandDelimiterKey|DictionaryKey|ErrorKey|Mode|P(?:honemeInfoKey|ropertyKey)|S(?:tatusKey|ynthesizer(?:InfoKey|VoiceName)))|llingState)|litView(?:AutosaveName|DividerStyle|Item(?:Behavior|CollapseBehavior))|ringLoading(?:Highlight|Options))|t(?:a(?:ckView(?:Distribution|Gravity)|tusItem(?:AutosaveName|Behavior))|oryboard(?:ControllerCreator|Name|S(?:ceneIdentifier|egueIdentifier))|r(?:eam(?:Event|NetworkServiceTypeValue|PropertyKey|S(?:OCKSProxy(?:Configuration|Version)|ocketSecurityLevel|tatus))|ing(?:CompareOptions|DrawingOptions|En(?:coding(?:ConversionOptions|DetectionOptionsKey)?|umerationOptions)|Transform)))|wapped(?:Double|Float))|T(?:IFFCompression|a(?:b(?:Position|State|View(?:BorderType|ControllerTabStyle|Type)|le(?:ColumnResizingOptions|RowActionEdge|View(?:A(?:nimationOptions|utosaveName)|ColumnAutoresizingStyle|Dr(?:aggingDestinationFeedbackStyle|opOperation)|GridLineStyle|Row(?:ActionStyle|SizeStyle)|SelectionHighlightStyle)))|skTerminationReason)|e(?:stComparisonOperation|xt(?:Alignment|Block(?:Dimension|Layer|V(?:alueType|erticalAlignment))|Checking(?:Key|OptionKey|Type(?:s)?)|EffectStyle|Fi(?:eldBezelStyle|nder(?:Action|MatchingType))|Input(?:SourceIdentifier|TraitType)|L(?:ayout(?:Orientation|SectionKey)|ist(?:MarkerFormat|Options))|Movement|S(?:calingType|torageEdit(?:Actions|edOptions))|Tab(?:OptionKey|Type|leLayoutAlgorithm)))|hreadPrivate|i(?:ckMarkPosition|me(?:Interval|ZoneNameStyle)|tlePosition)|o(?:kenStyle|ol(?:TipTag|bar(?:DisplayMode|I(?:dentifier|tem(?:Group(?:ControlRepresentation|SelectionMode)|Identifier|VisibilityPriority))|SizeMode))|uch(?:Bar(?:CustomizationIdentifier|ItemIdentifier)|Phase|Type(?:Mask)?))|racking(?:AreaOptions|RectTag)|ypesetter(?:Behavior|ControlCharacterAction))|U(?:RL(?:Bookmark(?:CreationOptions|FileCreationOptions|ResolutionOptions)|C(?:acheStoragePolicy|redentialPersistence)|ErrorNetworkUnavailableReason|File(?:ProtectionType|ResourceType)|HandleStatus|Re(?:lationship|quest(?:CachePolicy|NetworkServiceType)|sourceKey)|Session(?:AuthChallengeDisposition|DelayedRequestDisposition|MultipathServiceType|ResponseDisposition|Task(?:MetricsResourceFetchType|State)|WebSocket(?:CloseCode|MessageType))|ThumbnailDictionaryItem|Ubiquitous(?:ItemDownloadingStatus|SharedItem(?:Permissions|Role)))|n(?:caughtExceptionHandler|derlineStyle)|s(?:ableScrollerParts|er(?:A(?:ctivityPersistentIdentifier|ppleScriptTaskCompletionHandler|utomatorTaskCompletionHandler)|Interface(?:ItemIdentifier|Layout(?:Direction|Orientation))|NotificationActivationType|ScriptTaskCompletionHandler|UnixTaskCompletionHandler)))|V(?:alueTransformerName|i(?:ew(?:Animation(?:EffectName|Key)|ControllerTransitionOptions|FullScreenModeOptionKey|LayerContents(?:Placement|RedrawPolicy))|sualEffect(?:BlendingMode|Material|State))|o(?:ice(?:AttributeKey|GenderName)|lumeEnumerationOptions))|W(?:hoseSubelementIdentifier|ind(?:ingRule|ow(?:AnimationBehavior|B(?:ackingLocation|utton)|CollectionBehavior|Depth|FrameAutosaveName|L(?:evel|istOptions)|NumberListOptions|O(?:cclusionState|rderingMode)|PersistableFrameDescriptor|S(?:haringType|tyleMask)|T(?:abbing(?:Identifier|Mode)|itleVisibility)|UserTabbingPreference))|orkspace(?:AuthorizationType|DesktopImageOptionKey|IconCreationOptions|LaunchOptions)|ritingDirection(?:FormatType)?)|X(?:ML(?:D(?:TDNodeKind|ocumentContentKind)|Node(?:Kind|Options)|ParserE(?:rror|xternalEntityResolvingPolicy))|PCConnectionOptions)|Zone)|UN(?:A(?:lertStyle|uthorization(?:Options|Status))|ErrorCode|Notification(?:ActionOptions|CategoryOptions|PresentationOptions|S(?:etting|oundName))|ShowPreviewsSetting)|W(?:K(?:AudiovisualMediaTypes|ContentMode|ErrorCode|Navigation(?:ActionPolicy|ResponsePolicy|Type)|User(?:InterfaceDirectionPolicy|ScriptInjectionTime))|eb(?:CacheModel|Drag(?:DestinationAction|SourceAction)|NavigationType|PreferencesPrivate|ViewInsertAction))|unichar)\\\\b',\n name: 'support.type.cocoa.objc'\n },\n {\n match:\n '\\\\b(?:A(?:M(?:ErrorCode|LogLevel)|U(?:Audio(?:ChannelCount|FrameCount|ObjectID|Unit(?:BusType|Status))|EventSampleTime|Host(?:MusicalContextBlock|TransportState(?:Block|Flags))|I(?:mplementor(?:DisplayNameWithLengthCallback|StringFromValueCallback|Value(?:FromStringCallback|Observer|Provider))|n(?:putHandler|ternalRenderBlock))|MIDI(?:CIProfileChangedBlock|Event|OutputEventBlock)|Parameter(?:A(?:ddress|utomation(?:Event(?:Type)?|Observer))|Event|Observer(?:Token)?|RecordingObserver)|Re(?:cordedParameterEvent|nder(?:Block|Event(?:Header|Type)?|Observer|PullInputBlock))|Schedule(?:MIDIEventBlock|ParameterBlock)|Value)|uthorization(?:C(?:allbacks|ontextFlags)|EngineRef|Mechanism(?:Id|Ref)|Plugin(?:I(?:d|nterface)|Ref)|Result|SessionId|Value(?:Vector)?))|Bluetooth(?:A(?:FH(?:HostChannelClassification|Mode|Results)|MP(?:C(?:ommandRejectReason|reatePhysicalLinkResponseStatus)|Disco(?:nnectPhysicalLinkResponseStatus|verResponseControllerStatus)|Get(?:AssocResponseStatus|InfoResponseStatus)|ManagerCode)|irMode|llowRoleSwitch|uthenticationRequirements(?:Values)?)|C(?:l(?:assOfDevice|ockOffset)|o(?:mpanyIdentifers|nnectionHandle))|Device(?:Address|ClassM(?:ajor|inor)|Name)|E(?:n(?:cryptionEnable|hancedSynchronousConnectionInfo)|ventFilterCondition)|FeatureBits|HCI(?:A(?:CLDataByteCount|FHChannelAssessmentMode(?:s)?|cceptSynchronousConnectionRequestParams|ut(?:henti(?:cationEnable|onEnableModes)|omaticFlushTimeout(?:Info)?))|BufferSize|C(?:o(?:mmandOpCode(?:Command|Group)?|n(?:nection(?:AcceptTimeout|Mode(?:s)?)|tentFormat)|untryCode)|urrentInquiryAccessCodes(?:ForWrite)?)|D(?:ataID|eleteStoredLinkKeyFlag(?:s)?)|E(?:n(?:cryption(?:KeySize(?:Info)?|Mode(?:s)?)|hanced(?:AcceptSynchronousConnectionRequestParams|SetupSynchronousConnectionParams))|rroneousDataReporting|vent(?:AuthenticationCompleteResults|C(?:hangeConnectionLinkKeyCompleteResults|o(?:de|nnection(?:CompleteResults|PacketTypeResults|RequestResults)))|D(?:ataBufferOverflowResults|isconnectionCompleteResults)|Encryption(?:ChangeResults|KeyRefreshCompleteResults)|Fl(?:owSpecificationData|ushOccurredResults)|HardwareErrorResults|ID|L(?:E(?:Connection(?:CompleteResults|UpdateCompleteResults)|EnhancedConnectionCompleteResults|LongTermKeyRequestResults|MetaResults|ReadRemoteUsedFeaturesCompleteResults)|inkKeyNotificationResults)|M(?:a(?:s(?:k|terLinkKeyCompleteResults)|xSlotsChangeResults)|odeChangeResults)|PageScan(?:ModeChangeResults|RepetitionModeChangeResults)|QoS(?:SetupCompleteResults|ViolationResults)|R(?:e(?:ad(?:ClockOffsetResults|ExtendedFeaturesResults|Remote(?:ExtendedFeaturesResults|SupportedFeaturesResults|VersionInfoResults)|SupportedFeaturesResults)|moteNameRequestResults|turnLinkKeysResults)|oleChangeResults)|S(?:implePairingCompleteResults|niffSubratingResults|tatus|ynchronousConnectionC(?:hangedResults|ompleteResults))|VendorSpecificResults)|xtended(?:FeaturesInfo|InquiryRes(?:ponse(?:DataType(?:s)?)?|ult)))|F(?:ECRequired(?:Values)?|ailedContact(?:Count|Info)|lowControlState)|GeneralFlowControlStates|HoldModeActivity(?:States)?|In(?:put(?:Bandwidth|Cod(?:edDataSize|ingFormat)|DataPath|PCM(?:DataFormat|SamplePayloadMSBPosition)|TransportUnitSize)|quiry(?:AccessCode(?:Count)?|Length|Mode(?:s)?|Result(?:s)?|ScanType(?:s)?|WithRSSIResult(?:s)?))|L(?:E(?:BufferSize|SupportedFeatures|UsedFeatures)|ink(?:PolicySettings(?:Info|Values)?|Quality(?:Info)?|SupervisionTimeout)|oopbackMode)|M(?:axLatency|odeInterval)|Num(?:BroadcastRetransmissions|LinkKeys(?:Deleted|ToWrite))|O(?:perationID|utput(?:Bandwidth|Cod(?:edDataSize|ingFormat)|DataPath|PCM(?:DataFormat|SamplePayloadMSBPosition)|TransportUnitSize))|P(?:a(?:ge(?:Number|Scan(?:EnableState(?:s)?|Mode(?:s)?|PeriodMode(?:s)?|Type(?:s)?)|Timeout)|r(?:amByteCount|kModeBeaconInterval))|owerState)|Q(?:oSFlags|ualityOfServiceSetupParams)|R(?:SSI(?:Info|Value)|e(?:ad(?:ExtendedInquiryResponseResults|L(?:MPHandleResults|ocalOOBDataResults)|StoredLinkKeysFlag(?:s)?)|ceive(?:Bandwidth|Cod(?:ecFrameSize|ingFormat))|quest(?:CallbackInfo|ID)|sponseCount|transmissionEffort(?:Types)?)|ole(?:Info|s)?)|S(?:CO(?:DataByteCount|FlowControlStates)|canActivity|etupSynchronousConnectionParams|i(?:gnalID|mplePairing(?:Mode(?:s)?|OOBData))|niff(?:AttemptCount|Timeout)|t(?:atus|oredLinkKeysInfo)|upported(?:Commands|Features|IAC))|T(?:imeoutValues|rans(?:mit(?:Bandwidth|Cod(?:ecFrameSize|ingFormat)|PowerLevel(?:Info|Type)?|ReadPowerLevelTypes)|port(?:CommandID|ID)))|V(?:e(?:ndorCommandSelector|rsion(?:Info|s))|oiceSetting))|I(?:OCapabilit(?:ies|y(?:Response)?)|RK)|Key(?:Flag|Type|boardReturnType|pressNotification(?:Type(?:s)?)?)?|L(?:2CAP(?:ByteCount|C(?:hannelID|o(?:mmand(?:ByteCount|Code|ID|RejectReason)|n(?:figuration(?:Option|Re(?:sult|transmissionAndFlowControlFlags))|nection(?:Result|Status))))|FlushTimeout|GroupID|Information(?:ExtendedFeaturesMask|Result|Type)|LinkTimeout|MTU|PSM|Q(?:oSType|ualityOfServiceOptions)|RetransmissionAndFlowControlOptions|S(?:egmentationAndReassembly|upervisoryFuctionType))|AP|E(?:Ad(?:dressType|vertisingType)|ConnectionInterval|FeatureBits|S(?:can(?:DuplicateFilter|Filter|Type)?|ecurityManager(?:CommandCode|IOCapability|Key(?:DistributionFormat|pressNotificationType)|OOBData|PairingFailedReasonCode|User(?:InputCapability|OutputCapability))))|MP(?:Handle|Subversion|Version(?:s)?)|inkType(?:s)?)|Ma(?:nufacturerName|xSlots)|NumericValue|OOBDataPresence(?:Values)?|P(?:IN(?:Code|Type)|a(?:cketType|geScan(?:Mode|PeriodMode|RepetitionMode)|sskey))|R(?:FCOMM(?:ChannelID|LineStatus|MTU|ParityType)|e(?:a(?:dClockInfo|sonCode)|moteHostSupportedFeaturesNotification)|ole)|S(?:DP(?:DataElement(?:SizeDescriptor|TypeDescriptor)|ErrorCode|PDUID|Service(?:AttributeID|RecordHandle)|TransactionID|UUID(?:16|32))|e(?:rviceClassMajor|tEventMask)|implePairingDebugMode(?:s)?|ynchronousConnectionInfo)|Transport(?:Info(?:Ptr)?|Types)|User(?:ConfirmationRequest|PasskeyNotification))|C(?:A(?:A(?:nimation(?:CalculationMode|RotationMode)|utoresizingMask)|Co(?:nstraintAttribute|rnerMask)|E(?:dgeAntialiasingMask|mitterLayer(?:Emitter(?:Mode|Shape)|RenderMode))|GradientLayerType|LayerCo(?:ntents(?:F(?:ilter|ormat)|Gravity)|rnerCurve)|MediaTimingF(?:illMode|unction(?:Name|Private))|OpenGLLayerPrivate|RendererPriv|S(?:crollLayerScrollMode|hapeLayer(?:FillRule|Line(?:Cap|Join)))|T(?:extLayer(?:AlignmentMode|Private|TruncationMode)|ransition(?:Subtype|Type))|ValueFunctionName)|I(?:ContextOption|DataMatrixCodeECCVersion|F(?:ilterGeneratorStruct|ormat)|Image(?:AutoAdjustmentOption|Option|RepresentationOption)|KernelROICallback|QRCodeErrorCorrectionLevel|R(?:AWFilterOption|enderDestinationAlphaMode))|X(?:Call(?:Directory(?:EnabledStatus|PhoneNumber)|EndedReason)|ErrorCode(?:CallDirectoryManagerError|IncomingCallError|RequestTransactionError)?|HandleType|PlayDTMFCallActionType)|al(?:Priority|RecurrenceType))|DRFile(?:Fork|systemInclusionMask)|FTSFileType|I(?:C(?:D(?:evice(?:Capability|Location(?:Options|Type(?:Mask)?)|Status|T(?:ransport|ype(?:Mask)?))|ownloadOption)|EXIFOrientationType|LegacyReturnCode|Return(?:Co(?:de(?:Offset)?|nnectionErrorCode)|DownloadErrorCode|MetadataErrorCode|ObjectErrorCode|PTPDeviceErrorCode|ThumbnailErrorCode)|Scanner(?:BitDepth|ColorDataFormatType|DocumentType|F(?:eatureType|unctionalUnit(?:State|Type))|MeasurementUnit|PixelDataType|TransferMode)|UploadOption)|K(?:CameraDeviceView(?:DisplayMode|TransferMode)|DeviceBrowserViewDisplayMode|ImageBrowser(?:CellState|DropOperation)|ScannerDeviceView(?:DisplayMode|TransferMode))|MKLocationToOffsetMappingMode|O(?:Bluetooth(?:Device(?:Ref|Se(?:arch(?:Attributes|DeviceAttributes|Options(?:Bits)?|Types(?:Bits)?)|lectorControllerRef))|HandsFree(?:AudioGatewayFeatures|C(?:allHoldModes|odecID)|DeviceFeatures|PDUMessageStatus|SMSSupport)|L2CAPChannel(?:DataBlock|Event(?:Type)?|Incoming(?:DataListener|EventListener)|Ref)|O(?:BEXSessionOpenConnectionCallback|bject(?:ID|Ref))|PairingControllerRef|RFCOMMChannelRef|S(?:DP(?:DataElementRef|ServiceRecordRef|UUIDRef)|MSMode|erviceBrowserController(?:Options|Ref))|UserNotification(?:C(?:allback|hannelDirection)|Ref))|DataQueue(?:Appendix|Entry|Memory)|SurfacePropertyKey))|M(?:DL(?:A(?:nimatedValueInterpolation|xisAlignedBoundingBox)|CameraProjection|DataPrecision|GeometryType|IndexBitDepth|LightType|M(?:aterial(?:Face|MipMapFilterMode|PropertyType|Semantic|Texture(?:FilterMode|WrapMode))|eshBufferType)|ProbePlacement|T(?:extureChannelEncoding|ransformOpRotationOrder)|V(?:ertexFormat|oxelIndex(?:Extent)?))|IDIChannelNumber|T(?:K(?:ModelError|TextureLoader(?:C(?:allback|ubeLayout)|Error|O(?:ption|rigin)))|L(?:A(?:rgument(?:Access|BuffersTier|Type)|ttributeFormat|utoreleased(?:Argument|ComputePipelineReflection|RenderPipelineReflection))|B(?:arrierScope|l(?:end(?:Factor|Operation)|itOption))|C(?:PUCacheMode|apture(?:Destination|Error)|learColor|o(?:lorWriteMask|m(?:mandBuffer(?:Error|Handler|Status)|pareFunction)|ordinate2D|unterSampleBufferError)|ullMode)|D(?:ataType|e(?:pthClipMode|viceLocation)|ispatchT(?:hreadgroupsIndirectArguments|ype)|raw(?:IndexedPrimitivesIndirectArguments|P(?:atchIndirectArguments|rimitivesIndirectArguments)|ablePresentedHandler))|F(?:eatureSet|unctionType)|GPUFamily|H(?:azardTrackingMode|eapType)|Ind(?:exType|irectCommandType)|L(?:anguageVersion|ibraryError|oadAction)|Mu(?:ltisample(?:DepthResolveFilter|StencilResolveFilter)|tability)|New(?:ComputePipelineState(?:CompletionHandler|WithReflectionCompletionHandler)|LibraryCompletionHandler|RenderPipelineState(?:CompletionHandler|WithReflectionCompletionHandler))|Origin|P(?:atchType|i(?:pelineOption|xelFormat)|rimitiveT(?:opologyClass|ype)|urgeableState)|QuadTessellationFactorsHalf|Re(?:adWriteTextureTier|gion|nderStages|source(?:Options|Usage))|S(?:ample(?:Position|r(?:AddressMode|BorderColor|Mi(?:nMagFilter|pFilter)))|cissorRect|hared(?:Event(?:HandlePrivate|NotificationBlock)|TextureHandlePrivate)|ize(?:AndAlign)?|t(?:e(?:ncilOperation|pFunction)|or(?:ageMode|eAction(?:Options)?)))|T(?:e(?:ssellation(?:ControlPointIndexType|Factor(?:Format|StepFunction)|PartitionMode)|xture(?:Swizzle|Type|Usage))|riangle(?:FillMode|TessellationFactorsHalf))|V(?:ertex(?:Format|StepFunction)|i(?:ewport|sibilityResultMode))|Winding)))|NS(?:AttributeType|Batch(?:DeleteRequestResultType|InsertRequestResultType|UpdateRequestResultType)|DeleteRule|EntityMappingType|Fetch(?:IndexElementType|RequestResultType|edResultsChangeType)|M(?:anagedObjectContextConcurrencyType|ergePolicyType)|P(?:ersistent(?:CloudKitContainerSchemaInitializationOptions|History(?:ChangeType|ResultType)|Store(?:AsynchronousFetchResultCompletionBlock|RequestType|UbiquitousTransitionType))|referencePaneUnselectReply)|SnapshotEventType)|O(?:BEX(?:AbortCommand(?:Data|ResponseData)|Con(?:nect(?:Command(?:Data|ResponseData)|FlagValues)|stants)|DisconnectCommand(?:Data|ResponseData)|Error(?:Codes|Data)?|Flags|GetCommand(?:Data|ResponseData)|HeaderIdentifier(?:s)?|MaxPacketLength|NonceFlagValues|OpCode(?:CommandValues|ResponseValues|SessionValues)?|Put(?:Command(?:Data|ResponseData)|FlagValues)|RealmValues|Se(?:ssion(?:Event(?:Callback|Type(?:s)?)?|ParameterTags|Ref)|tPathCommand(?:Data|ResponseData))|TransportEvent(?:Type(?:s)?)?|Version(?:s)?)|SA(?:LanguageFeatures|S(?:criptState|torageOptions))|paque(?:IOBluetoothObjectRef|OBEXSessionRef|PrivOBEXSessionData))|P(?:DF(?:A(?:ctionNamedName|nnotation(?:HighlightingMode|Key|LineEndingStyle|Subtype|TextIconType|WidgetSubtype)|ppearanceCharacteristicsKey|reaOfInterest)|Border(?:Key|Style)|D(?:isplay(?:Box|Direction|Mode)|ocument(?:Attribute|Permissions|WriteOption))|InterpolationQuality|LineStyle|MarkupType|PrintScalingMode|TextAnnotationIconType|WidgetC(?:ellState|ontrolType))|r(?:ivOBEXSessionDataRef|otocolParameters))|QLPreviewViewStyle|S(?:DP(?:Attribute(?:DeviceIdentificationRecord|IdentifierCodes)|ServiceClasses)|F(?:AuthorizationViewState|ButtonType|ViewType))|TransmissionPower)\\\\b',\n name: 'support.type.objc'\n },\n {\n match:\n '\\\\b(?:BOOL|C(?:ategory|lass)|I(?:MP|var)|Method|NS(?:Integer|UInteger)|SEL|id|mach_header|objc_(?:AssociationPolicy|c(?:ategory|lass)|func_loadImage|hook_(?:get(?:Class|ImageName)|setAssociatedObject)|ivar|method(?:_(?:description|list))?|object(?:ptr_t)?|property(?:_(?:attribute_t|t))?|selector))\\\\b',\n name: 'support.type.run-time.objc'\n },\n {\n match:\n '\\\\b(?:CIDetector(?:AspectRatio|FocalLength|Type(?:QRCode|Rectangle))|kCII(?:mageAutoAdjust(?:Crop|Level)|nput(?:ColorNoiseReductionAmountKey|EnableVendorLensCorrectionKey|LuminanceNoiseReductionAmountKey|NoiseReduction(?:ContrastAmountKey|DetailAmountKey|SharpnessAmountKey))))\\\\b',\n name: 'support.variable.10.10.objc'\n },\n {\n match:\n '\\\\b(?:CIDetector(?:NumberOfAngles|ReturnSubFeatures|TypeText)|MT(?:K(?:ModelError(?:Domain|Key)|TextureLoader(?:Error(?:Domain|Key)|Option(?:AllocateMipmaps|SRGB|Texture(?:CPUCacheMode|Usage))))|L(?:CommandBufferErrorDomain|LibraryErrorDomain))|k(?:CI(?:Attribute(?:FilterAvailable_(?:Mac|iOS)|Type(?:Color|Image|Transform))|ContextHighQualityDownsample|Format(?:A(?:16|8|BGR8|f|h)|R(?:16|8|G(?:16|8|f|h)|f|h))|Input(?:VersionKey|WeightsKey))|UTType(?:3dObject|Alembic|Polygon|Stereolithography)))\\\\b',\n name: 'support.variable.10.11.objc'\n },\n {\n match:\n '\\\\b(?:CIDetectorMaxFeatureCount|IOSurfacePropertyKey(?:BytesPer(?:Element|Row)|CacheMode|Element(?:Height|Width)|Height|Offset|P(?:ixel(?:Format|SizeCastingAllowed)|lane(?:B(?:ase|ytesPer(?:Element|Row))|Element(?:Height|Width)|Height|Info|Offset|Size|Width))|Width)|MTKTextureLoader(?:CubeLayoutVertical|O(?:ption(?:CubeLayout|GenerateMipmaps|Origin|TextureStorageMode)|rigin(?:BottomLeft|FlippedVertically|TopLeft)))|NS(?:ManagedObjectContextQueryGenerationKey|PersistentStoreConnectionPoolMaxSizeKey)|k(?:C(?:AContentsFormat(?:Gray8Uint|RGBA(?:16Float|8Uint))|I(?:Context(?:AllowLowPower|CacheIntermediates|PriorityRequestLow)|FormatL(?:16|8|A(?:16|8|f|h)|f|h)|Input(?:BaselineExposureKey|DisableGamutMapKey)))|UTTypeUniversalSceneDescription))\\\\b',\n name: 'support.variable.10.12.objc'\n },\n {\n match:\n '\\\\b(?:MTLDevice(?:RemovalRequestedNotification|Was(?:AddedNotification|RemovedNotification))|NS(?:BinaryStore(?:InsecureDecodingCompatibilityOption|SecureDecodingClasses)|CoreDataCoreSpotlightExporter|PersistentHistoryTrackingKey)|PDF(?:A(?:nnotation(?:HighlightingMode(?:Invert|None|Outline|Push)|Key(?:A(?:ction|dditionalActions|ppearance(?:Dictionary|State))|Border(?:Style)?|Co(?:lor|ntents)|D(?:ate|e(?:faultAppearance|stination))|Flags|HighlightingMode|I(?:conName|n(?:klist|teriorColor))|Line(?:EndingStyles|Points)|Name|Open|P(?:a(?:ge|rent)|opup)|Quad(?:Points|ding)|Rect|Subtype|TextLabel|Widget(?:AppearanceDictionary|B(?:ackgroundColor|orderColor)|Caption|D(?:efaultValue|ownCaption)|Field(?:Flags|Type)|MaxLen|Options|Ro(?:lloverCaption|tation)|TextLabelUI|Value))|LineEndingStyle(?:C(?:ircle|losedArrow)|Diamond|None|OpenArrow|Square)|Subtype(?:Circle|FreeText|Highlight|Ink|Lin(?:e|k)|Popup|S(?:quare|t(?:amp|rikeOut))|Text|Underline|Widget)|TextIconType(?:Comment|Help|Insert|Key|N(?:ewParagraph|ote)|Paragraph)|WidgetSubtype(?:Button|Choice|Signature|Text))|ppearanceCharacteristicsKey(?:B(?:ackgroundColor|orderColor)|Caption|DownCaption|Ro(?:lloverCaption|tation)))|BorderKey(?:DashPattern|LineWidth|Style))|kCII(?:mage(?:A(?:pplyOrientationProperty|uxiliaryD(?:epth|isparity))|NearestSampling|Representation(?:AVDepthData|D(?:epthImage|isparityImage)))|nput(?:D(?:epthImageKey|isparityImageKey)|MoireAmountKey)))\\\\b',\n name: 'support.variable.10.13.objc'\n },\n {\n match:\n '\\\\b(?:IOSurfacePropertyKeyAllocSize|NSPersistent(?:HistoryTokenKey|Store(?:RemoteChangeNotification|URLKey))|kC(?:A(?:GradientLayerConic|RendererMetalCommandQueue)|II(?:mage(?:AuxiliaryPortraitEffectsMatte|Representation(?:AVPortraitEffectsMatte|PortraitEffectsMatteImage))|nput(?:AmountKey|EnableEDRModeKey|MatteImageKey))))\\\\b',\n name: 'support.variable.10.14.objc'\n },\n {\n match:\n '\\\\b(?:IC(?:Delete(?:Canceled|Error(?:Canceled|DeviceMissing|FileMissing|ReadOnly)|Failed|Successful)|E(?:numerationChronologicalOrder|rrorDomain)|ImageSource(?:ShouldCache|ThumbnailMaxPixelSize))|MTLC(?:aptureErrorDomain|o(?:mmonCounter(?:C(?:lipper(?:Invocations|PrimitivesOut)|omputeKernelInvocations)|Fragment(?:Cycles|Invocations|sPassed)|PostTessellationVertex(?:Cycles|Invocations)|RenderTargetWriteCycles|Set(?:Sta(?:geUtilization|tistic)|Timestamp)|T(?:essellation(?:Cycles|InputPatches)|imestamp|otalCycles)|Vertex(?:Cycles|Invocations))|unterErrorDomain))|NSPersistentStoreRemoteChangeNotificationPostOptionKey|kC(?:ACornerCurveC(?:ircular|ontinuous)|IImage(?:AuxiliarySemanticSegmentation(?:HairMatte|SkinMatte|TeethMatte)|Representation(?:AVSemanticSegmentationMattes|SemanticSegmentation(?:HairMatteImage|SkinMatteImage|TeethMatteImage)))))\\\\b',\n name: 'support.variable.10.15.objc'\n },\n {\n match:\n '\\\\b(?:CIDetector(?:ImageOrientation|MinFeatureSize|Tracking)|NSPersistentStoreForceDestroyOption|kCIImage(?:AutoAdjust(?:Enhance|Features|RedEye)|Properties))\\\\b',\n name: 'support.variable.10.8.objc'\n },\n {\n match:\n '\\\\b(?:CIDetector(?:EyeBlink|Smile)|NSPersistentStoreCoordinatorStoresWillChangeNotification)\\\\b',\n name: 'support.variable.10.9.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:A(?:ccessibility(?:AlternateUIVisibleAttribute|SharedFocusElementsAttribute)|ppearanceNameVibrant(?:Dark|Light))|CalendarIdentifierIslamic(?:Tabular|UmmAlQura)|E(?:dgeInsetsZero|xtension(?:Item(?:Att(?:achmentsKey|ributed(?:ContentTextKey|TitleKey))|sAndErrorsKey)|JavaScriptPreprocessingResultsKey))|ItemProvider(?:ErrorDomain|PreferredImageSizeKey)|Metadata(?:QueryAccessibleUbiquitousExternalDocumentsScope|UbiquitousItem(?:ContainerDisplayNameKey|DownloadRequestedKey|IsExternalDocumentKey|URLInLocalContainerKey))|ProcessInfoThermalStateDidChangeNotification|StringEncodingDetection(?:AllowLossyKey|DisallowedEncodingsKey|FromWindowsKey|L(?:ikelyLanguageKey|ossySubstitutionKey)|SuggestedEncodingsKey|UseOnlySuggestedEncodingsKey)|T(?:extEffect(?:AttributeName|LetterpressStyle)|ypeIdentifier(?:AddressText|DateText|PhoneNumberText|TransitInformationText))|U(?:RL(?:AddedToDirectoryDateKey|DocumentIdentifierKey|ErrorBackgroundTaskCancelledReasonKey|GenerationIdentifierKey|QuarantinePropertiesKey|SessionTaskPriority(?:Default|High|Low)|UbiquitousItem(?:ContainerDisplayNameKey|DownloadRequestedKey))|serActivityDocumentURLKey)|WorkspaceAccessibilityDisplayOptionsDidChangeNotification)|WKErrorDomain)\\\\b',\n name: 'support.variable.cocoa.10.10.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:AccessibilityListItem(?:IndexTextAttribute|LevelTextAttribute|PrefixTextAttribute)|CollectionElementKind(?:InterItemGapIndicator|Section(?:Footer|Header))|DefaultAttributesDocumentAttribute|F(?:ileManagerUnmountDissentingProcessIdentifierErrorKey|ontWeight(?:B(?:lack|old)|Heavy|Light|Medium|Regular|Semibold|Thin|UltraLight))|PersonNameComponent(?:Delimiter|FamilyName|GivenName|Key|MiddleName|Nickname|Prefix|Suffix)|S(?:plitView(?:ControllerAutomaticDimension|ItemUnspecifiedDimension)|tringTransform(?:FullwidthToHalfwidth|HiraganaToKatakana|LatinTo(?:Arabic|Cyrillic|Greek|H(?:angul|ebrew|iragana)|Katakana|Thai)|MandarinToLatin|Strip(?:CombiningMarks|Diacritics)|To(?:Latin|UnicodeName|XMLHex)))|ToolbarToggleSidebarItemIdentifier|URL(?:ApplicationIsScriptableKey|IsApplicationKey)|ViewNoIntrinsicMetric)|WKWebsiteDataType(?:Cookies|DiskCache|IndexedDBDatabases|LocalStorage|MemoryCache|OfflineWebApplicationCache|SessionStorage|WebSQLDatabases))\\\\b',\n name: 'support.variable.cocoa.10.11.objc'\n },\n {\n match:\n '\\\\bNS(?:Accessibility(?:MenuBarItemRole|RequiredAttribute|TextAlignmentAttribute)|GridViewSizeForContent|Image(?:HintUserInterfaceLayoutDirection|Name(?:Go(?:BackTemplate|ForwardTemplate)|TouchBar(?:A(?:dd(?:DetailTemplate|Template)|larmTemplate|udio(?:Input(?:MuteTemplate|Template)|Output(?:MuteTemplate|Volume(?:HighTemplate|LowTemplate|MediumTemplate|OffTemplate))))|BookmarksTemplate|Co(?:lorPicker(?:F(?:ill|ont)|Stroke)|m(?:munication(?:AudioTemplate|VideoTemplate)|poseTemplate))|D(?:eleteTemplate|ownloadTemplate)|E(?:nterFullScreenTemplate|xitFullScreenTemplate)|F(?:astForwardTemplate|older(?:CopyToTemplate|MoveToTemplate|Template))|G(?:etInfoTemplate|o(?:BackTemplate|DownTemplate|ForwardTemplate|UpTemplate))|HistoryTemplate|IconViewTemplate|ListViewTemplate|MailTemplate|New(?:FolderTemplate|MessageTemplate)|OpenInBrowserTemplate|P(?:auseTemplate|lay(?:PauseTemplate|Template|headTemplate))|QuickLookTemplate|R(?:e(?:cordSt(?:artTemplate|opTemplate)|freshTemplate|windTemplate)|otate(?:LeftTemplate|RightTemplate))|S(?:earchTemplate|hareTemplate|idebarTemplate|kip(?:Ahead(?:15SecondsTemplate|30SecondsTemplate|Template)|Back(?:15SecondsTemplate|30SecondsTemplate|Template)|To(?:EndTemplate|StartTemplate))|lideshowTemplate)|T(?:agIconTemplate|ext(?:Bo(?:ldTemplate|xTemplate)|CenterAlignTemplate|ItalicTemplate|JustifiedAlignTemplate|L(?:eftAlignTemplate|istTemplate)|RightAlignTemplate|StrikethroughTemplate|UnderlineTemplate))|User(?:AddTemplate|GroupTemplate|Template)|Volume(?:DownTemplate|UpTemplate))))|MetadataUbiquitous(?:ItemIsSharedKey|SharedItem(?:CurrentUser(?:PermissionsKey|RoleKey)|MostRecentEditorNameComponentsKey|OwnerNameComponentsKey|PermissionsRead(?:Only|Write)|Role(?:Owner|Participant)))|S(?:haringServiceNameCloudSharing|liderAccessoryWidth(?:Default|Wide)|pellCheckerDidChangeAutomatic(?:CapitalizationNotification|PeriodSubstitutionNotification|TextCompletionNotification)|treamNetworkServiceTypeCallSignaling)|T(?:extCheckingSelectedRangeKey|o(?:olbarCloudSharingItemIdentifier|uchBarItem(?:Identifier(?:C(?:andidateList|haracterPicker)|F(?:ixedSpace(?:Large|Small)|lexibleSpace)|OtherItemsProxy|Text(?:Alignment|ColorPicker|Format|List|Style))|Priority(?:High|Low|Normal))))|URL(?:CanonicalPathKey|Ubiquitous(?:ItemIsSharedKey|SharedItem(?:CurrentUser(?:PermissionsKey|RoleKey)|MostRecentEditorNameComponentsKey|OwnerNameComponentsKey|PermissionsRead(?:Only|Write)|Role(?:Owner|Participant)))|Volume(?:Is(?:EncryptedKey|RootFileSystemKey)|Supports(?:CompressionKey|ExclusiveRenamingKey|FileCloningKey|SwapRenamingKey))))\\\\b',\n name: 'support.variable.cocoa.10.12.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:A(?:boutPanelOption(?:Application(?:Icon|Name|Version)|Credits|Version)|ccessibility(?:Annotation(?:Element|L(?:abel|ocation)|TextAttribute)|C(?:ollectionListSubrole|ustomTextAttribute)|LanguageTextAttribute|PageRole|SectionListSubrole|TabButtonSubrole))|ImageNameTouchBarRemoveTemplate|LocalizedFailureErrorKey|Pasteboard(?:Name(?:Drag|F(?:ind|ont)|General|Ruler)|Type(?:FileURL|URL))|RulerViewUnit(?:Centimeters|Inches|P(?:icas|oints))|Text(?:ListMarker(?:Box|C(?:heck|ircle)|D(?:ecimal|i(?:amond|sc))|Hyphen|Lowercase(?:Alpha|Hexadecimal|Latin|Roman)|Octal|Square|Uppercase(?:Alpha|Hexadecimal|Latin|Roman))|MovementUserInfoKey)|URLVolume(?:AvailableCapacityFor(?:ImportantUsageKey|OpportunisticUsageKey)|Supports(?:AccessPermissionsKey|ImmutableFilesKey)))|WKWebsiteDataType(?:FetchCache|ServiceWorkerRegistrations))\\\\b',\n name: 'support.variable.cocoa.10.13.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:Appearance(?:DocumentAttribute|Name(?:AccessibilityHighContrast(?:Aqua|DarkAqua|Vibrant(?:Dark|Light))|DarkAqua))|MenuItemImportFromDeviceIdentifier|SecureUnarchiveFromDataTransformerName)|UN(?:AuthorizationOptionNone|ErrorDomain|Notification(?:A(?:ctionOptionNone|ttachmentOptionsT(?:humbnail(?:ClippingRectKey|HiddenKey|TimeKey)|ypeHintKey))|CategoryOptionNone|D(?:efaultActionIdentifier|ismissActionIdentifier)|PresentationOptionNone)))\\\\b',\n name: 'support.variable.cocoa.10.14.objc'\n },\n {\n match:\n '\\\\bNS(?:DirectionalEdgeInsetsZero|FontDescriptorSystemDesign(?:Default|Monospaced|Rounded|Serif)|HTTPCookieSameSite(?:Lax|Policy|Strict)|ReadAccessURLDocumentOption|SourceTextScalingDocument(?:Attribute|Option)|T(?:argetTextScalingDocumentOption|extScalingDocumentAttribute)|URLErrorNetworkUnavailableReasonKey)\\\\b',\n name: 'support.variable.cocoa.10.15.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:A(?:ccessibilityExtrasMenuBarAttribute|pplicationLaunchUserNotificationKey)|HashTableWeakMemory|ImageNameShareTemplate|MapTableWeakMemory|S(?:crollView(?:DidEndLiveMagnifyNotification|WillStartLiveMagnifyNotification)|haringServiceName(?:AddTo(?:Aperture|IPhoto|SafariReadingList)|Compose(?:Email|Message)|SendViaAirDrop|UseAsDesktopPicture))|TextAlternatives(?:AttributeName|SelectedAlternativeStringNotification)|U(?:RL(?:IsExcludedFromBackupKey|PathKey)|biquityIdentityDidChangeNotification))|kABSocialProfileServiceSinaWeibo)\\\\b',\n name: 'support.variable.cocoa.10.8.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:A(?:ccessibility(?:ContainsProtectedContentAttribute|DescriptionListSubrole|LayoutChangedNotification|PriorityKey|S(?:how(?:AlternateUIAction|DefaultUIAction)|witchSubrole)|ToggleSubrole|UIElementsKey)|pp(?:earanceNameAqua|licationDidChangeOcclusionStateNotification))|CalendarDayChangedNotification|KeyedArchiveRootObjectKey|M(?:etadata(?:Item(?:A(?:cquisitionM(?:akeKey|odelKey)|l(?:bumKey|titudeKey)|p(?:ertureKey|pl(?:eLoop(?:DescriptorsKey|s(?:KeyFilterTypeKey|LoopModeKey|RootKeyKey))|icationCategoriesKey))|ttributeChangeDateKey|u(?:di(?:encesKey|o(?:BitRateKey|ChannelCountKey|EncodingApplicationKey|SampleRateKey|TrackNumberKey))|thor(?:AddressesKey|EmailAddressesKey|sKey)))|BitsPerSampleKey|C(?:FBundleIdentifierKey|ameraOwnerKey|ityKey|o(?:decsKey|lorSpaceKey|m(?:mentKey|poserKey)|nt(?:actKeywordsKey|ent(?:CreationDateKey|ModificationDateKey|Type(?:Key|TreeKey))|ributorsKey)|pyrightKey|untryKey|verageKey)|reatorKey)|D(?:ateAddedKey|e(?:liveryTypeKey|scriptionKey)|irectorKey|ownloadedDateKey|u(?:eDateKey|rationSecondsKey))|E(?:XIF(?:GPSVersionKey|VersionKey)|ditorsKey|mailAddressesKey|ncodingApplicationsKey|x(?:ecutable(?:ArchitecturesKey|PlatformKey)|posure(?:ModeKey|ProgramKey|TimeS(?:econdsKey|tringKey))))|F(?:NumberKey|inderCommentKey|lashOnOffKey|o(?:calLength(?:35mmKey|Key)|ntsKey))|G(?:PS(?:AreaInformationKey|D(?:OPKey|ateStampKey|est(?:BearingKey|DistanceKey|L(?:atitudeKey|ongitudeKey))|ifferentalKey)|M(?:apDatumKey|easureModeKey)|ProcessingMethodKey|StatusKey|TrackKey)|enreKey)|H(?:asAlphaChannelKey|eadlineKey)|I(?:SOSpeedKey|dentifierKey|mageDirectionKey|n(?:formationKey|st(?:antMessageAddressesKey|ructionsKey))|s(?:ApplicationManagedKey|GeneralMIDISequenceKey|LikelyJunkKey))|K(?:ey(?:SignatureKey|wordsKey)|indKey)|L(?:a(?:nguagesKey|stUsedDateKey|titudeKey|yerNamesKey)|ensModelKey|ongitudeKey|yricistKey)|M(?:axApertureKey|e(?:diaTypesKey|teringModeKey)|usical(?:GenreKey|Instrument(?:CategoryKey|NameKey)))|N(?:amedLocationKey|umberOfPagesKey)|Or(?:ganizationsKey|i(?:entationKey|ginal(?:FormatKey|SourceKey)))|P(?:a(?:ge(?:HeightKey|WidthKey)|rticipantsKey)|erformersKey|honeNumbersKey|ixel(?:CountKey|HeightKey|WidthKey)|ro(?:ducerKey|fileNameKey|jectsKey)|ublishersKey)|R(?:e(?:c(?:ipient(?:AddressesKey|EmailAddressesKey|sKey)|ording(?:DateKey|YearKey))|dEyeOnOffKey|solution(?:HeightDPIKey|WidthDPIKey))|ightsKey)|S(?:ecurityMethodKey|peedKey|t(?:a(?:rRatingKey|teOrProvinceKey)|reamableKey)|ubjectKey)|T(?:e(?:mpoKey|xtContentKey)|hemeKey|i(?:me(?:SignatureKey|stampKey)|tleKey)|otalBitRateKey)|V(?:ersionKey|ideoBitRateKey)|Wh(?:ereFromsKey|iteBalanceKey))|Query(?:Indexed(?:LocalComputerScope|NetworkScope)|Update(?:AddedItemsKey|ChangedItemsKey|RemovedItemsKey))|UbiquitousItem(?:Downloading(?:ErrorKey|Status(?:Current|Downloaded|Key|NotDownloaded))|UploadingErrorKey))|odalResponse(?:Abort|Continue|Stop))|OutlineView(?:DisclosureButtonKey|ShowHideButtonKey)|Progress(?:EstimatedTimeRemainingKey|File(?:AnimationImage(?:Key|OriginalRectKey)|CompletedCountKey|IconKey|OperationKind(?:Copying|D(?:ecompressingAfterDownloading|ownloading)|Key|Receiving)|TotalCountKey|URLKey)|KindFile|ThroughputKey)|S(?:crollView(?:Did(?:EndLiveScrollNotification|LiveScrollNotification)|WillStartLiveScrollNotification)|pellCheckerDidChangeAutomatic(?:DashSubstitutionNotification|QuoteSubstitutionNotification)|tackView(?:SpacingUseDefault|VisibilityPriority(?:DetachOnlyIfNecessary|MustHold|NotVisible)))|URL(?:CredentialStorageRemoveSynchronizableCredentials|Session(?:DownloadTaskResumeData|TransferSizeUnknown)|TagNamesKey|UbiquitousItem(?:Downloading(?:ErrorKey|Status(?:Current|Downloaded|Key|NotDownloaded))|UploadingErrorKey))|WindowDidChangeOcclusionStateNotification)|kABSocialProfileService(?:TencentWeibo|Yelp))\\\\b',\n name: 'support.variable.cocoa.10.9.objc'\n },\n {\n match:\n '\\\\b(?:AB(?:AddressBookErrorDomain|MultiValueIdentifiersErrorKey|PeoplePicker(?:DisplayedPropertyDidChangeNotification|GroupSelectionDidChangeNotification|NameSelectionDidChangeNotification|ValueSelectionDidChangeNotification))|NS(?:A(?:bort(?:ModalException|PrintingException)|ccessibility(?:A(?:ctivationPointAttribute|llowedValuesAttribute|nnouncement(?:Key|RequestedNotification)|pplication(?:ActivatedNotification|DeactivatedNotification|HiddenNotification|Role|ShownNotification)|scendingSortDirectionValue|tt(?:achmentTextAttribute|ributedStringForRangeParameterizedAttribute)|utocorrectedTextAttribute)|B(?:ackgroundColorTextAttribute|oundsForRangeParameterizedAttribute|rowserRole|u(?:syIndicatorRole|ttonRole))|C(?:ancel(?:Action|ButtonAttribute)|e(?:ll(?:ForColumnAndRowParameterizedAttribute|Role)|nt(?:erTabStopMarkerTypeValue|imetersUnitValue))|h(?:eckBoxRole|ildrenAttribute)|l(?:earButtonAttribute|oseButton(?:Attribute|Subrole))|o(?:l(?:orWellRole|umn(?:CountAttribute|HeaderUIElementsAttribute|IndexRangeAttribute|Role|TitlesAttribute|sAttribute))|mboBoxRole|n(?:firmAction|tent(?:ListSubrole|sAttribute)))|r(?:eatedNotification|iticalValueAttribute))|D(?:e(?:c(?:imalTabStopMarkerTypeValue|rement(?:A(?:ction|rrowSubrole)|ButtonAttribute|PageSubrole))|f(?:aultButtonAttribute|initionListSubrole)|leteAction|sc(?:endingSortDirectionValue|riptionAttribute))|i(?:alogSubrole|sclos(?:ed(?:ByRowAttribute|RowsAttribute)|ingAttribute|ure(?:LevelAttribute|TriangleRole)))|ocumentAttribute|rawer(?:CreatedNotification|Role))|E(?:ditedAttribute|nabledAttribute|rrorCodeExceptionInfo|xpandedAttribute)|F(?:i(?:lenameAttribute|rstLineIndentMarkerTypeValue)|loatingWindowSubrole|o(?:cused(?:Attribute|UIElement(?:Attribute|ChangedNotification)|Window(?:Attribute|ChangedNotification))|nt(?:FamilyKey|NameKey|SizeKey|TextAttribute)|regroundColorTextAttribute)|rontmostAttribute|ullScreenButton(?:Attribute|Subrole))|Gr(?:idRole|o(?:upRole|wArea(?:Attribute|Role)))|H(?:andle(?:Role|sAttribute)|e(?:ad(?:IndentMarkerTypeValue|erAttribute)|lp(?:Attribute|Tag(?:CreatedNotification|Role)))|iddenAttribute|orizontal(?:OrientationValue|ScrollBarAttribute|Unit(?:DescriptionAttribute|sAttribute)))|I(?:dentifierAttribute|mageRole|n(?:c(?:hesUnitValue|rement(?:A(?:ction|rrowSubrole)|ButtonAttribute|PageSubrole|orRole))|dexAttribute|sertionPointLineNumberAttribute))|L(?:a(?:bel(?:UIElementsAttribute|ValueAttribute)|yout(?:AreaRole|ItemRole|PointForScreenPointParameterizedAttribute|SizeForScreenSizeParameterizedAttribute))|e(?:ftTabStopMarkerTypeValue|velIndicatorRole)|i(?:n(?:eForIndexParameterizedAttribute|k(?:Role|TextAttribute|edUIElementsAttribute))|stRole))|M(?:a(?:in(?:Attribute|Window(?:Attribute|ChangedNotification))|rke(?:dMisspelledTextAttribute|r(?:GroupUIElementAttribute|Type(?:Attribute|DescriptionAttribute)|UIElementsAttribute|ValuesAttribute))|tteRole|xValueAttribute)|enu(?:B(?:ar(?:Attribute|Role)|uttonRole)|ItemRole|Role)|i(?:n(?:ValueAttribute|imize(?:Button(?:Attribute|Subrole)|dAttribute))|sspelledTextAttribute)|o(?:dalAttribute|vedNotification))|N(?:extContentsAttribute|umberOfCharactersAttribute)|O(?:r(?:deredByRowAttribute|ientationAttribute)|utlineRo(?:le|wSubrole)|verflowButtonAttribute)|P(?:arentAttribute|ic(?:asUnitValue|kAction)|laceholderValueAttribute|o(?:intsUnitValue|p(?:UpButtonRole|overRole)|sitionAttribute)|r(?:e(?:ssAction|viousContentsAttribute)|o(?:gressIndicatorRole|xyAttribute)))|R(?:TFForRangeParameterizedAttribute|a(?:dio(?:ButtonRole|GroupRole)|iseAction|ngeFor(?:IndexParameterizedAttribute|LineParameterizedAttribute|PositionParameterizedAttribute)|tingIndicatorSubrole)|e(?:levanceIndicatorRole|sizedNotification)|ightTabStopMarkerTypeValue|o(?:le(?:Attribute|DescriptionAttribute)|w(?:Co(?:llapsedNotification|unt(?:Attribute|ChangedNotification))|ExpandedNotification|HeaderUIElementsAttribute|IndexRangeAttribute|Role|sAttribute))|uler(?:MarkerRole|Role))|S(?:cr(?:een(?:PointForLayoutPointParameterizedAttribute|SizeForLayoutSizeParameterizedAttribute)|oll(?:AreaRole|BarRole))|e(?:arch(?:ButtonAttribute|FieldSubrole|MenuAttribute)|cureTextFieldSubrole|lected(?:Attribute|C(?:ells(?:Attribute|ChangedNotification)|hildren(?:Attribute|ChangedNotification|MovedNotification)|olumns(?:Attribute|ChangedNotification))|Rows(?:Attribute|ChangedNotification)|Text(?:Attribute|ChangedNotification|Range(?:Attribute|sAttribute)))|rvesAsTitleForUIElementsAttribute)|h(?:a(?:dowTextAttribute|red(?:CharacterRangeAttribute|TextUIElementsAttribute))|eet(?:CreatedNotification|Role)|ow(?:MenuAction|nMenuAttribute))|izeAttribute|liderRole|ort(?:ButtonSubrole|DirectionAttribute)|plit(?:GroupRole|ter(?:Role|sAttribute))|t(?:a(?:ndardWindowSubrole|ticTextRole)|ri(?:kethrough(?:ColorTextAttribute|TextAttribute)|ngForRangeParameterizedAttribute)|yleRangeForIndexParameterizedAttribute)|u(?:broleAttribute|perscriptTextAttribute)|ystem(?:DialogSubrole|FloatingWindowSubrole|WideRole))|T(?:a(?:b(?:GroupRole|leRo(?:le|wSubrole)|sAttribute)|ilIndentMarkerTypeValue)|ext(?:A(?:reaRole|ttachmentSubrole)|FieldRole|LinkSubrole)|i(?:melineSubrole|tle(?:Attribute|ChangedNotification|UIElementAttribute))|o(?:olbar(?:Button(?:Attribute|Subrole)|Role)|pLevelUIElementAttribute))|U(?:IElementDestroyedNotification|RLAttribute|n(?:derline(?:ColorTextAttribute|TextAttribute)|it(?:DescriptionAttribute|s(?:Attribute|ChangedNotification))|known(?:MarkerTypeValue|OrientationValue|Role|S(?:ortDirectionValue|ubrole)|UnitValue)))|V(?:alue(?:Attribute|ChangedNotification|DescriptionAttribute|IndicatorRole)|ertical(?:OrientationValue|ScrollBarAttribute|Unit(?:DescriptionAttribute|sAttribute))|isible(?:C(?:ellsAttribute|h(?:aracterRangeAttribute|ildrenAttribute)|olumnsAttribute)|NameKey|RowsAttribute))|W(?:arningValueAttribute|indow(?:Attribute|CreatedNotification|DeminiaturizedNotification|M(?:iniaturizedNotification|ovedNotification)|R(?:esizedNotification|ole)|sAttribute))|ZoomButton(?:Attribute|Subrole))|l(?:ert(?:FirstButtonReturn|SecondButtonReturn|ThirdButtonReturn)|ignmentBinding|l(?:RomanInputSourcesLocaleIdentifier|ows(?:EditingMultipleValuesSelectionBindingOption|NullArgumentBindingOption))|ternate(?:ImageBinding|TitleBinding)|waysPresentsApplicationModalAlertsBindingOption)|n(?:imat(?:eBinding|ion(?:DelayBinding|ProgressMark(?:Notification)?|TriggerOrder(?:In|Out)))|tialiasThresholdChangedNotification)|pp(?:Kit(?:IgnoredException|V(?:ersionNumber(?:10_(?:0|1(?:0(?:_(?:2|3|4|5|Max))?|1(?:_(?:1|2|3))?|2(?:_(?:1|2))?|3(?:_(?:1|2|4))?|4(?:_(?:1|2|3|4|5))?)?|2(?:_3)?|3(?:_(?:2|3|5|7|9))?|4(?:_(?:1|3|4|7))?|5(?:_(?:2|3))?|6|7(?:_(?:2|3|4))?|8|9)|With(?:C(?:o(?:lumnResizingBrowser|ntinuousScrollingBrowser)|u(?:rsorSizeSupport|stomSheetPosition))|D(?:eferredWindowDisplaySupport|irectionalTabs|ockTilePlugInSupport)|PatternColorLeakFix))?|irtualMemoryException))|l(?:e(?:Event(?:ManagerWillProcessFirstEventNotification|TimeOut(?:Default|None))|ScriptError(?:AppName|BriefMessage|Message|Number|Range))|ication(?:Did(?:BecomeActiveNotification|ChangeScreenParametersNotification|Finish(?:LaunchingNotification|RestoringWindowsNotification)|HideNotification|ResignActiveNotification|U(?:nhideNotification|pdateNotification))|LaunchIsDefaultLaunchKey|Will(?:BecomeActiveNotification|FinishLaunchingNotification|HideNotification|ResignActiveNotification|TerminateNotification|U(?:nhideNotification|pdateNotification)))))?|rgument(?:Binding|Domain)|ssertionHandlerKey|tt(?:achmentAttributeName|ributedStringBinding)|uthorDocumentAttribute|verageKeyValueOperator)|B(?:a(?:ck(?:groundColor(?:AttributeName|DocumentAttribute)|ingPropertyOld(?:ColorSpaceKey|ScaleFactorKey))|d(?:BitmapParametersException|ComparisonException|RTF(?:ColorTableException|DirectiveException|FontTableException|StyleSheetException))|se(?:URLDocumentOption|lineOffsetAttributeName))|lack|ottomMarginDocumentAttribute|rowser(?:ColumnConfigurationDidChangeNotification|IllegalDelegateException)|undle(?:DidLoadNotification|ResourceRequestLo(?:adingPriorityUrgent|wDiskSpaceNotification)))|C(?:a(?:l(?:endarIdentifier(?:Buddhist|C(?:hinese|optic)|EthiopicAmete(?:Alem|Mihret)|Gregorian|Hebrew|I(?:SO8601|ndian|slamic(?:Civil)?)|Japanese|Persian|RepublicOfChina)|ibrated(?:RGBColorSpace|WhiteColorSpace))|tegoryDocumentAttribute)|haracter(?:ConversionException|EncodingDocument(?:Attribute|Option))|lassDescriptionNeededForClassNotification|o(?:coa(?:ErrorDomain|VersionDocumentAttribute)|lor(?:List(?:DidChangeNotification|IOException|NotEditableException)|PanelColorDidChangeNotification)|m(?:boBox(?:Selection(?:DidChangeNotification|IsChangingNotification)|Will(?:DismissNotification|PopUpNotification))|mentDocumentAttribute|panyDocumentAttribute)|n(?:ditionallySets(?:E(?:ditableBindingOption|nabledBindingOption)|HiddenBindingOption)|t(?:e(?:nt(?:Array(?:Binding|ForMultipleSelectionBinding)|Binding|DictionaryBinding|HeightBinding|Object(?:Binding|sBinding)|PlacementTagBindingOption|SetBinding|ValuesBinding|WidthBinding)|xtHelpModeDid(?:ActivateNotification|DeactivateNotification))|inuouslyUpdatesValueBindingOption|rol(?:StateValue(?:Mixed|O(?:ff|n))|TextDid(?:BeginEditingNotification|ChangeNotification|EndEditingNotification)))|vertedDocumentAttribute)|pyrightDocumentAttribute|untKeyValueOperator)|r(?:eat(?:esSortDescriptorBindingOption|ionTimeDocumentAttribute)|iticalValueBinding)|u(?:r(?:rentLocaleDidChangeNotification|sorAttributeName)|stomColorSpace))|D(?:a(?:rkGray|taBinding)|e(?:bugDescriptionErrorKey|cimalNumber(?:DivideByZeroException|ExactnessException|OverflowException|UnderflowException)|f(?:ault(?:AttributesDocumentOption|RunLoopMode|TabIntervalDocumentAttribute)|initionPresentationType(?:DictionaryApplication|Key|Overlay))|letesObjectsOnRemoveBindingsOption|stinationInvalidException|vice(?:BitsPerSample|C(?:MYKColorSpace|olorSpaceName)|Is(?:Printer|Screen)|R(?:GBColorSpace|esolution)|Size|WhiteColorSpace))|i(?:dBecomeSingleThreadedNotification|s(?:play(?:NameBindingOption|Pattern(?:BindingOption|TitleBinding|ValueBinding))|tinctUnionOf(?:ArraysKeyValueOperator|ObjectsKeyValueOperator|SetsKeyValueOperator)))|o(?:c(?:FormatTextDocumentType|ument(?:EditedBinding|TypeDocument(?:Attribute|Option)))|ubleClick(?:ArgumentBinding|TargetBinding))|ragging(?:Exception|ImageComponent(?:IconKey|LabelKey)))|E(?:dit(?:ableBinding|orDocumentAttribute)|nabledBinding|vent(?:DurationForever|TrackingRunLoopMode)|x(?:cluded(?:ElementsDocumentAttribute|KeysBinding)|pansionAttributeName|tension(?:Host(?:Did(?:BecomeActiveNotification|EnterBackgroundNotification)|Will(?:EnterForegroundNotification|ResignActiveNotification))|JavaScriptFinalizeArgumentKey)))|F(?:i(?:l(?:e(?:AppendOnly|Busy|C(?:ontentsPboardType|reationDate)|DeviceIdentifier|ExtensionHidden|GroupOwnerAccount(?:ID|Name)|H(?:FS(?:CreatorCode|TypeCode)|andle(?:ConnectionAcceptedNotification|DataAvailableNotification|Notification(?:DataItem|FileHandleItem)|OperationException|Read(?:CompletionNotification|ToEndOfFileCompletionNotification)))|Immutable|ModificationDate|OwnerAccount(?:ID|Name)|P(?:athErrorKey|osixPermissions|rotection(?:Complete(?:Un(?:lessOpen|tilFirstUserAuthentication))?|Key|None))|ReferenceCount|S(?:ize|ystem(?:F(?:ileNumber|ree(?:Nodes|Size))|N(?:odes|umber)|Size))|Type(?:BlockSpecial|CharacterSpecial|D(?:irectory|ocument(?:Attribute|Option))|Regular|S(?:ocket|ymbolicLink)|Unknown)?)|terPredicateBinding)|ndPanel(?:CaseInsensitiveSearch|S(?:earchOptionsPboardType|ubstringMatch)))|loatingWindowLevel|o(?:nt(?:AttributeName|B(?:inding|oldBinding)|C(?:ascadeListAttribute|haracterSetAttribute|ollection(?:A(?:ctionKey|llFonts)|Di(?:dChangeNotification|sallowAutoActivationOption)|Favorites|IncludeDisabledFontsOption|NameKey|OldNameKey|Re(?:centlyUsed|moveDuplicatesOption)|User|VisibilityKey|Was(?:Hidden|Renamed|Shown)))|F(?:a(?:ceAttribute|mily(?:Attribute|NameBinding))|eature(?:Se(?:lectorIdentifierKey|ttingsAttribute)|TypeIdentifierKey)|ixedAdvanceAttribute)|I(?:dentityMatrix|talicBinding)|MatrixAttribute|Name(?:Attribute|Binding)|S(?:etChangedNotification|ize(?:Attribute|Binding)|lantTrait|ymbolicTrait)|TraitsAttribute|UnavailableException|V(?:ariationA(?:ttribute|xis(?:DefaultValueKey|IdentifierKey|M(?:aximumValueKey|inimumValueKey)|NameKey))|isibleNameAttribute)|W(?:eightTrait|idthTrait))|regroundColorAttributeName|undationVersionNumber)|ullScreenMode(?:A(?:llScreens|pplicationPresentationOptions)|Setting|WindowLevel))|G(?:enericException|l(?:obalDomain|yphInfoAttributeName)|ra(?:mmar(?:Corrections|Range|UserDescription)|phicsContext(?:DestinationAttributeName|P(?:DFFormat|SFormat)|RepresentationFormatAttributeName)))|H(?:T(?:MLTextDocumentType|TPCookie(?:Comment(?:URL)?|D(?:iscard|omain)|Expires|Ma(?:nager(?:AcceptPolicyChangedNotification|CookiesChangedNotification)|ximumAge)|Name|OriginURL|P(?:ath|ort)|Secure|V(?:alue|ersion)))|a(?:ndlesContentAsCompoundValueBindingOption|shTable(?:CopyIn|ObjectPointerPersonality|StrongMemory))|e(?:aderTitleBinding|lpAnchorErrorKey)|iddenBinding|yphenationFactorDocumentAttribute)|I(?:llegalSelectorException|mage(?:Binding|C(?:acheException|o(?:lorSyncProfileData|mpression(?:Factor|Method))|urrentFrame(?:Duration)?)|DitherTransparency|EXIFData|F(?:allbackBackgroundColor|rameCount)|Gamma|Hint(?:CTM|Interpolation)|Interlaced|LoopCount|Name(?:A(?:ctionTemplate|d(?:dTemplate|vanced)|pplicationIcon)|B(?:luetoothTemplate|o(?:njour|okmarksTemplate))|C(?:aution|o(?:l(?:orPanel|umnViewTemplate)|mputer))|E(?:nterFullScreenTemplate|veryone|xitFullScreenTemplate)|F(?:lowViewTemplate|o(?:l(?:der(?:Burnable|Smart)?|lowLinkFreestandingTemplate)|ntPanel))|Go(?:LeftTemplate|RightTemplate)|HomeTemplate|I(?:ChatTheaterTemplate|conViewTemplate|n(?:fo|validDataFreestandingTemplate))|L(?:eftFacingTriangleTemplate|istViewTemplate|ock(?:LockedTemplate|UnlockedTemplate))|M(?:enu(?:MixedStateTemplate|OnStateTemplate)|obileMe|ultipleDocuments)|Network|P(?:athTemplate|referencesGeneral)|QuickLookTemplate|R(?:e(?:fresh(?:FreestandingTemplate|Template)|moveTemplate|vealFreestandingTemplate)|ightFacingTriangleTemplate)|S(?:lideshowTemplate|martBadgeTemplate|t(?:atus(?:Available|None|PartiallyAvailable|Unavailable)|opProgress(?:FreestandingTemplate|Template)))|Trash(?:Empty|Full)|User(?:Accounts|G(?:roup|uest))?)|Progressive|R(?:GBColorTable|epRegistryDidChangeNotification))|n(?:c(?:ludedKeysBinding|onsistentArchiveException)|itial(?:KeyBinding|ValueBinding)|sertsNullPlaceholderBindingOption|te(?:ger(?:HashCallBacks|Map(?:KeyCallBacks|ValueCallBacks))|rnalInconsistencyException)|v(?:alid(?:Ar(?:chiveOperationException|gumentException)|ReceivePortException|SendPortException|UnarchiveOperationException)|o(?:cationOperation(?:CancelledException|VoidResultException)|kesSeparatelyWithArrayObjectsBindingOption)))|s(?:IndeterminateBinding|N(?:ilTransformerName|otNilTransformerName)))|Ke(?:rnAttributeName|y(?:ValueChange(?:IndexesKey|KindKey|N(?:ewKey|otificationIsPriorKey)|OldKey)|wordsDocumentAttribute))|L(?:a(?:belBinding|youtPriority(?:D(?:efault(?:High|Low)|ragThatCan(?:ResizeWindow|notResizeWindow))|FittingSizeCompression|Required|WindowSizeStayPut))|eftMarginDocumentAttribute|i(?:g(?:atureAttributeName|htGray)|n(?:guisticTag(?:Ad(?:jective|verb)|C(?:l(?:assifier|ose(?:Parenthesis|Quote))|onjunction)|D(?:ash|eterminer)|I(?:diom|nterjection)|N(?:oun|umber)|O(?:pen(?:Parenthesis|Quote)|rganizationName|ther(?:Punctuation|W(?:hitespace|ord))?)|P(?:ar(?:agraphBreak|ticle)|ersonalName|laceName|r(?:eposition|onoun)|unctuation)|S(?:cheme(?:L(?:anguage|e(?:mma|xicalClass))|NameType(?:OrLexicalClass)?|Script|TokenType)|entenceTerminator)|Verb|W(?:hitespace|ord(?:Joiner)?))|kAttributeName))|o(?:adedClasses|cal(?:NotificationCenterType|e(?:AlternateQuotation(?:BeginDelimiterKey|EndDelimiterKey)|C(?:alendar|o(?:llat(?:ionIdentifier|orIdentifier)|untryCode)|urrency(?:Code|Symbol))|DecimalSeparator|ExemplarCharacterSet|GroupingSeparator|Identifier|LanguageCode|MeasurementSystem|Quotation(?:BeginDelimiterKey|EndDelimiterKey)|ScriptCode|UsesMetricSystem|VariantCode)|ized(?:DescriptionKey|FailureReasonErrorKey|KeyDictionaryBinding|Recovery(?:OptionsErrorKey|SuggestionErrorKey)))))|M(?:a(?:c(?:SimpleTextDocumentType|hErrorDomain)|inMenuWindowLevel|llocException|nage(?:dObjectContextBinding|rDocumentAttribute)|pTable(?:CopyIn|ObjectPointerPersonality|StrongMemory)|rkedClauseSegmentAttributeName|x(?:ValueBinding|WidthBinding|imum(?:KeyValueOperator|RecentsBinding)))|e(?:nu(?:Did(?:AddItemNotification|BeginTrackingNotification|ChangeItemNotification|EndTrackingNotification|RemoveItemNotification|SendActionNotification)|WillSendActionNotification)|tadata(?:Item(?:DisplayNameKey|FS(?:C(?:ontentChangeDateKey|reationDateKey)|NameKey|SizeKey)|IsUbiquitousKey|PathKey|URLKey)|Query(?:Did(?:FinishGatheringNotification|StartGatheringNotification|UpdateNotification)|GatheringProgressNotification|LocalComputerScope|NetworkScope|ResultContentRelevanceAttribute|U(?:biquitousD(?:ataScope|ocumentsScope)|serHomeScope))|UbiquitousItem(?:HasUnresolvedConflictsKey|Is(?:DownloadingKey|Upload(?:edKey|ingKey))|Percent(?:DownloadedKey|UploadedKey))))|i(?:n(?:ValueBinding|WidthBinding|imumKeyValueOperator)|xedStateImageBinding)|od(?:al(?:Panel(?:RunLoopMode|WindowLevel)|Response(?:Cancel|OK))|ificationTimeDocumentAttribute)|ultipleValuesPlaceholderBindingOption)|N(?:amedColorSpace|e(?:gateBooleanTransformerName|tServicesError(?:Code|Domain))|ibLoadingException|o(?:SelectionPlaceholderBindingOption|n(?:OwnedPointer(?:HashCallBacks|Map(?:KeyCallBacks|ValueCallBacks)|OrNullMapKeyCallBacks)|RetainedObject(?:HashCallBacks|Map(?:KeyCallBacks|ValueCallBacks)))|rmalWindowLevel|t(?:ApplicablePlaceholderBindingOption|Found|ification(?:DeliverImmediately|PostToAllSessions)))|ullPlaceholderBindingOption)|O(?:SStatusErrorDomain|b(?:ject(?:HashCallBacks|InaccessibleException|Map(?:KeyCallBacks|ValueCallBacks)|NotAvailableException)|liquenessAttributeName|served(?:KeyPathKey|ObjectKey))|ff(?:StateImageBinding|iceOpenXMLTextDocumentType)|ldStyleException|nStateImageBinding|p(?:e(?:nDocumentTextDocumentType|ration(?:NotSupportedForKeyException|QueueDefaultMaxConcurrentOperationCount))|tionsKey)|utlineView(?:ColumnDid(?:MoveNotification|ResizeNotification)|Item(?:Did(?:CollapseNotification|ExpandNotification)|Will(?:CollapseNotification|ExpandNotification))|Selection(?:DidChangeNotification|IsChangingNotification))|wned(?:ObjectIdentityHashCallBacks|Pointer(?:HashCallBacks|Map(?:KeyCallBacks|ValueCallBacks))))|P(?:OSIXErrorDomain|PD(?:Include(?:NotFoundException|Stack(?:OverflowException|UnderflowException))|ParseException)|a(?:perSizeDocumentAttribute|r(?:agraphStyleAttributeName|seErrorException)|steboard(?:CommunicationException|Type(?:Color|Font|HTML|MultipleTextSelection|P(?:DF|NG)|R(?:TF(?:D)?|uler)|S(?:ound|tring)|T(?:IFF|abularText|extFinderOptions))|URLReading(?:ContentsConformToTypesKey|FileURLsOnlyKey))|tternColorSpace)|lainTextDocumentType|o(?:interToStructHashCallBacks|p(?:Up(?:Button(?:CellWillPopUpNotification|WillPopUpNotification)|MenuWindowLevel)|over(?:CloseReason(?:DetachToWindow|Key|Standard)|Did(?:CloseNotification|ShowNotification)|Will(?:CloseNotification|ShowNotification)))|rt(?:DidBecomeInvalidNotification|ReceiveException|SendException|TimeoutException)|sitioningRectBinding)|r(?:e(?:dicate(?:Binding|FormatBindingOption)|f(?:erredScrollerStyleDidChangeNotification|ixSpacesDocumentAttribute))|int(?:AllP(?:ages|resetsJobStyleHint)|BottomMargin|C(?:ancelJob|opies)|DetailedErrorReporting|F(?:axNumber|irstPage)|H(?:eaderAndFooter|orizontal(?:Pagination|lyCentered))|Job(?:Disposition|Saving(?:FileNameExtensionHidden|URL))|L(?:astPage|eftMargin)|MustCollate|NoPresetsJobStyleHint|O(?:perationExistsException|rientation)|P(?:a(?:ckageException|ges(?:Across|Down)|nelAccessorySummaryItem(?:DescriptionKey|NameKey)|per(?:Name|Size))|hotoJobStyleHint|r(?:eviewJob|inter(?:Name)?))|R(?:eversePageOrder|ightMargin)|S(?:aveJob|calingFactor|electionOnly|poolJob)|T(?:ime|opMargin)|Vertical(?:Pagination|lyCentered)|ingCommunicationException)|ocessInfoPowerStateDidChangeNotification))|R(?:TF(?:DTextDocumentType|PropertyStackOverflowException|TextDocumentType)|a(?:isesForNotApplicableKeysBindingOption|ngeException)|e(?:adOnlyDocumentAttribute|c(?:entSearchesBinding|overyAttempterErrorKey)|gistrationDomain|presentedFilenameBinding)|ightMarginDocumentAttribute|owHeightBinding|u(?:leEditor(?:Predicate(?:C(?:omp(?:arisonModifier|oundType)|ustomSelector)|LeftExpression|Op(?:eratorType|tions)|RightExpression)|RowsDidChangeNotification)|nLoopCommonModes))|S(?:creen(?:ColorSpaceDidChangeNotification|SaverWindowLevel)|e(?:archField(?:ClearRecentsMenuItemTag|NoRecentsMenuItemTag|Recents(?:MenuItemTag|TitleMenuItemTag))|lect(?:ed(?:I(?:dentifierBinding|ndexBinding)|LabelBinding|Object(?:Binding|sBinding)|TagBinding|Value(?:Binding|sBinding))|ionIndex(?:PathsBinding|esBinding)|orNameBindingOption|sAllWhenSettingContentBindingOption))|hadowAttributeName|o(?:rtDescriptorsBinding|undPboardType)|p(?:e(?:ech(?:C(?:haracterModeProperty|ommand(?:DelimiterProperty|Prefix|Suffix)|urrentVoiceProperty)|Dictionary(?:Abbreviations|Entry(?:Phonemes|Spelling)|LocaleIdentifier|ModificationDate|Pronunciations)|Error(?:Count|NewestC(?:haracterOffset|ode)|OldestC(?:haracterOffset|ode)|sProperty)|InputModeProperty|Mode(?:Literal|Normal|Phoneme|Text)|NumberModeProperty|OutputToFileURLProperty|P(?:honeme(?:Info(?:Example|Hilite(?:End|Start)|Opcode|Symbol)|SymbolsProperty)|itch(?:BaseProperty|ModProperty))|R(?:ateProperty|e(?:centSyncProperty|setProperty))|S(?:tatus(?:NumberOfCharactersLeft|Output(?:Busy|Paused)|P(?:honemeCode|roperty))|ynthesizerInfo(?:Identifier|Property|Version))|VolumeProperty)|ll(?:CheckerDidChangeAutomatic(?:SpellingCorrectionNotification|TextReplacementNotification)|ingStateAttributeName))|litView(?:DidResizeSubviewsNotification|WillResizeSubviewsNotification))|quareStatusItemLength|t(?:a(?:ckTraceKey|tusWindowLevel)|r(?:eam(?:DataWrittenToMemoryStreamKey|FileCurrentOffsetKey|NetworkServiceType(?:Background|V(?:ideo|o(?:IP|ice)))?|S(?:OCKS(?:ErrorDomain|Proxy(?:ConfigurationKey|HostKey|P(?:asswordKey|ortKey)|UserKey|Version(?:4|5|Key)))|ocketS(?:SLErrorDomain|ecurityLevel(?:Key|N(?:egotiatedSSL|one)|SSLv(?:2|3)|TLSv1))))|i(?:kethrough(?:ColorAttributeName|StyleAttributeName)|ngEncodingErrorKey)|oke(?:ColorAttributeName|WidthAttributeName)))|u(?:b(?:jectDocumentAttribute|menuWindowLevel)|mKeyValueOperator|perscriptAttributeName)|ystem(?:C(?:lockDidChangeNotification|olorsDidChangeNotification)|TimeZoneDidChangeNotification))|T(?:IFFException|a(?:b(?:ColumnTerminatorsAttributeName|leView(?:ColumnDid(?:MoveNotification|ResizeNotification)|RowViewKey|Selection(?:DidChangeNotification|IsChangingNotification)))|rgetBinding|skDidTerminateNotification)|ext(?:C(?:hecking(?:AirlineKey|C(?:ityKey|ountryKey)|Document(?:AuthorKey|TitleKey|URLKey)|FlightKey|JobTitleKey|NameKey|Or(?:ganizationKey|thographyKey)|PhoneKey|QuotesKey|Re(?:ference(?:DateKey|TimeZoneKey)|gularExpressionsKey|placementsKey)|St(?:ateKey|reetKey)|ZIPKey)|olorBinding)|Did(?:BeginEditingNotification|ChangeNotification|EndEditingNotification)|EncodingNameDocument(?:Attribute|Option)|Finder(?:CaseInsensitiveKey|MatchingTypeKey)|InputContextKeyboardSelectionDidChangeNotification|L(?:ayoutSection(?:Orientation|Range|sAttribute)|ineTooLongException)|NoSelectionException|ReadException|S(?:izeMultiplierDocumentOption|torage(?:DidProcessEditingNotification|WillProcessEditingNotification))|View(?:DidChange(?:SelectionNotification|TypingAttributesNotification)|WillChangeNotifyingTextViewNotification)|WriteException)|hreadWillExitNotification|i(?:meoutDocumentOption|tle(?:Binding|DocumentAttribute))|o(?:ol(?:Tip(?:AttributeName|Binding)|bar(?:DidRemoveItemNotification|FlexibleSpaceItemIdentifier|ItemVisibilityPriority(?:High|Low|Standard|User)|PrintItemIdentifier|S(?:how(?:ColorsItemIdentifier|FontsItemIdentifier)|paceItemIdentifier)|WillAddItemNotification))|pMarginDocumentAttribute|rnOffMenuWindowLevel)|ransparentBinding|ypedStreamVersionException)|U(?:RL(?:A(?:ttributeModificationDateKey|uthenticationMethod(?:ClientCertificate|Default|HT(?:MLForm|TP(?:Basic|Digest))|N(?:TLM|egotiate)|ServerTrust))|C(?:ontent(?:AccessDateKey|ModificationDateKey)|re(?:ationDateKey|dentialStorageChangedNotification)|ustomIconKey)|E(?:ffectiveIconKey|rror(?:Domain|FailingURL(?:ErrorKey|PeerTrustErrorKey|StringErrorKey)|Key))|File(?:AllocatedSizeKey|Protection(?:Complete(?:Un(?:lessOpen|tilFirstUserAuthentication))?|Key|None)|Resource(?:IdentifierKey|Type(?:BlockSpecial|CharacterSpecial|Directory|Key|NamedPipe|Regular|S(?:ocket|ymbolicLink)|Unknown))|S(?:cheme|ecurityKey|izeKey))|HasHiddenExtensionKey|Is(?:AliasFileKey|DirectoryKey|ExecutableKey|HiddenKey|MountTriggerKey|PackageKey|Re(?:adableKey|gularFileKey)|Sy(?:mbolicLinkKey|stemImmutableKey)|U(?:biquitousItemKey|serImmutableKey)|VolumeKey|WritableKey)|KeysOfUnsetValuesKey|L(?:abel(?:ColorKey|NumberKey)|inkCountKey|ocalized(?:LabelKey|NameKey|TypeDescriptionKey))|NameKey|P(?:arentDirectoryURLKey|r(?:eferredIOBlockSizeKey|otectionSpace(?:FTP(?:Proxy)?|HTTP(?:Proxy|S(?:Proxy)?)?|SOCKSProxy)))|T(?:otalFile(?:AllocatedSizeKey|SizeKey)|ypeIdentifierKey)|UbiquitousItem(?:HasUnresolvedConflictsKey|Is(?:DownloadingKey|Upload(?:edKey|ingKey)))|Volume(?:AvailableCapacityKey|CreationDateKey|I(?:dentifierKey|s(?:AutomountedKey|BrowsableKey|EjectableKey|InternalKey|JournalingKey|LocalKey|Re(?:adOnlyKey|movableKey)))|Localized(?:FormatDescriptionKey|NameKey)|MaximumFileSizeKey|NameKey|ResourceCountKey|Supports(?:AdvisoryFileLockingKey|Case(?:PreservedNamesKey|SensitiveNamesKey)|ExtendedSecurityKey|HardLinksKey|JournalingKey|PersistentIDsKey|R(?:enamingKey|ootDirectoryDatesKey)|S(?:parseFilesKey|ymbolicLinksKey)|VolumeSizesKey|ZeroRunsKey)|TotalCapacityKey|U(?:RL(?:ForRemountingKey|Key)|UIDStringKey)))|biquitous(?:KeyValueStore(?:Change(?:ReasonKey|dKeysKey)|DidChangeExternallyNotification)|UserDefaults(?:CompletedInitialSyncNotification|DidChangeAccountsNotification|NoCloudAccountNotification))|n(?:caught(?:RuntimeErrorException|SystemExceptionException)|d(?:e(?:finedKeyException|rl(?:ine(?:ByWord|ColorAttributeName|Pattern(?:D(?:ash(?:Dot(?:Dot)?)?|ot)|Solid)|StyleAttributeName)|yingErrorKey))|o(?:CloseGroupingRunLoopOrdering|Manager(?:CheckpointNotification|Did(?:CloseUndoGroupNotification|OpenUndoGroupNotification|RedoChangeNotification|UndoChangeNotification)|GroupIsDiscardableKey|Will(?:CloseUndoGroupNotification|RedoChangeNotification|UndoChangeNotification))))|ionOf(?:ArraysKeyValueOperator|ObjectsKeyValueOperator|SetsKeyValueOperator))|ser(?:ActivityTypeBrowsingWeb|Defaults(?:DidChangeNotification|SizeLimitExceededNotification)))|V(?:a(?:l(?:idatesImmediatelyBindingOption|ue(?:Binding|PathBinding|Transformer(?:BindingOption|NameBindingOption)|URLBinding))|riableStatusItemLength)|erticalGlyphFormAttributeName|i(?:ew(?:Animation(?:E(?:ffectKey|ndFrameKey)|Fade(?:InEffect|OutEffect)|StartFrameKey|TargetKey)|BoundsDidChangeNotification|DidUpdateTrackingAreasNotification|FrameDidChangeNotification|ModeDocumentAttribute|SizeDocumentAttribute|ZoomDocumentAttribute)|sibleBinding)|oice(?:Age|DemoText|Gender(?:Female|Male|Neuter)?|I(?:dentifier|ndividuallySpokenCharacters)|LocaleIdentifier|Name|SupportedCharacters))|W(?:arningValueBinding|eb(?:ArchiveTextDocumentType|PreferencesDocumentOption|ResourceLoadDelegateDocumentOption)|hite|i(?:dthBinding|llBecomeMultiThreadedNotification|ndow(?:Did(?:Become(?:KeyNotification|MainNotification)|Change(?:BackingPropertiesNotification|Screen(?:Notification|ProfileNotification))|DeminiaturizeNotification|E(?:n(?:d(?:LiveResizeNotification|SheetNotification)|ter(?:FullScreenNotification|VersionBrowserNotification))|x(?:it(?:FullScreenNotification|VersionBrowserNotification)|poseNotification))|M(?:iniaturizeNotification|oveNotification)|Resi(?:gn(?:KeyNotification|MainNotification)|zeNotification)|UpdateNotification)|ServerCommunicationException|Will(?:BeginSheetNotification|CloseNotification|E(?:nter(?:FullScreenNotification|VersionBrowserNotification)|xit(?:FullScreenNotification|VersionBrowserNotification))|M(?:iniaturizeNotification|oveNotification)|StartLiveResizeNotification)))|or(?:d(?:MLTextDocumentType|Tables(?:ReadException|WriteException))|kspace(?:A(?:ctiveSpaceDidChangeNotification|pplicationKey)|D(?:esktopImage(?:AllowClippingKey|FillColorKey|ScalingKey)|id(?:ActivateApplicationNotification|ChangeFileLabelsNotification|DeactivateApplicationNotification|HideApplicationNotification|LaunchApplicationNotification|MountNotification|RenameVolumeNotification|TerminateApplicationNotification|Un(?:hideApplicationNotification|mountNotification)|WakeNotification))|S(?:creensDid(?:SleepNotification|WakeNotification)|essionDid(?:BecomeActiveNotification|ResignActiveNotification))|Volume(?:LocalizedNameKey|Old(?:LocalizedNameKey|URLKey)|URLKey)|Will(?:LaunchApplicationNotification|PowerOffNotification|SleepNotification|UnmountNotification)))|ritingDirectionAttributeName)|XMLParserErrorDomain|Zero(?:Point|Rect|Size))|WebViewDid(?:BeginEditingNotification|Change(?:Notification|SelectionNotification|TypingStyleNotification)|EndEditingNotification)|kAB(?:A(?:ddress(?:C(?:ityKey|ountry(?:CodeKey|Key))|HomeLabel|Property|St(?:ateKey|reetKey)|WorkLabel|ZIPKey)|lternateBirthdayComponentsProperty|nniversaryLabel|ssistantLabel)|B(?:irthday(?:ComponentsProperty|Property)|rotherLabel)|C(?:alendarURIsProperty|hildLabel|reationDateProperty)|D(?:atabaseChanged(?:ExternallyNotification|Notification)|e(?:letedRecords|partmentProperty))|Email(?:HomeLabel|MobileMeLabel|Property|WorkLabel)|F(?:atherLabel|irstNameP(?:honeticProperty|roperty)|riendLabel)|GroupNameProperty|Home(?:Label|Page(?:Label|Property))|Ins(?:ertedRecords|tantMessage(?:Property|Service(?:AIM|Facebook|G(?:aduGadu|oogleTalk)|ICQ|Jabber|Key|MSN|QQ|Skype|Yahoo)|UsernameKey))|JobTitleProperty|LastNameP(?:honeticProperty|roperty)|M(?:a(?:idenNameProperty|nagerLabel)|iddleNameP(?:honeticProperty|roperty)|o(?:bileMeLabel|dificationDateProperty|therLabel))|N(?:icknameProperty|oteProperty)|O(?:rganizationP(?:honeticProperty|roperty)|ther(?:Date(?:ComponentsProperty|sProperty)|Label))|P(?:ar(?:entLabel|tnerLabel)|ersonFlags|hone(?:Home(?:FAXLabel|Label)|M(?:ainLabel|obileLabel)|P(?:agerLabel|roperty)|Work(?:FAXLabel|Label)|iPhoneLabel))|RelatedNamesProperty|S(?:isterLabel|ocialProfile(?:Property|Service(?:F(?:acebook|lickr)|Key|LinkedIn|MySpace|Twitter)|U(?:RLKey|ser(?:IdentifierKey|nameKey)))|pouseLabel|uffixProperty)|TitleProperty|U(?:IDProperty|RLsProperty|pdatedRecords)|WorkLabel))\\\\b',\n name: 'support.variable.cocoa.objc'\n },\n {\n match:\n '\\\\b(?:C(?:I(?:Detector(?:Accuracy(?:High|Low)?|TypeFace)|FeatureType(?:Face|QRCode|Rectangle|Text))|X(?:CallDirectoryPhoneNumberMax|ErrorDomain(?:CallDirectoryManager|IncomingCall|RequestTransaction)?)|al(?:AttendeeStatus(?:Accepted|Declined|NeedsAction|Tentative)|DeletedRecordsKey|InsertedRecordsKey|UpdatedRecordsKey))|DR(?:A(?:bstractFile|ccessDate|llFilesystems|pplicationIdentifier|ttributeModificationDate|udio(?:FourChannelKey|PreEmphasisKey))|B(?:ackupDate|ibliographicFile|lock(?:Size(?:Key)?|TypeKey)|urn(?:AppendableKey|CompletionAction(?:Eject|Key|Mount)|DoubleLayerL0DataZoneBlocksKey|FailureAction(?:Eject|Key|None)|OverwriteDiscKey|RequestedSpeedKey|St(?:atusChangedNotification|rategy(?:BDDAO|CD(?:SAO|TAO)|DVDDAO|IsRequiredKey|Key))|TestingKey|UnderrunProtectionKey|VerifyDiscKey))|C(?:DText(?:ArrangerKey|C(?:haracterCodeKey|losedKey|o(?:mposerKey|pyrightAssertedFor(?:NamesKey|SpecialMessagesKey|TitlesKey)))|DiscIdentKey|Genre(?:CodeKey|Key)|Key|LanguageKey|MCNISRCKey|NSStringEncodingKey|PerformerKey|S(?:izeKey|ongwriterKey|pecialMessageKey)|T(?:OC(?:2Key|Key)|itleKey))|o(?:ntentModificationDate|pyrightFile)|reationDate)|D(?:VD(?:CopyrightInfoKey|TimestampKey)|ata(?:FormKey|Preparer)|e(?:faultDate|vice(?:AppearedNotification|BurnSpeed(?:BD1x|CD1x|DVD1x|HDDVD1x|Max|sKey)|C(?:an(?:TestWrite(?:CDKey|DVDKey)|UnderrunProtect(?:CDKey|DVDKey)|Write(?:BD(?:Key|R(?:EKey|Key))|CD(?:Key|R(?:Key|WKey|awKey)|SAOKey|T(?:AOKey|extKey))|DVD(?:DAOKey|Key|PlusR(?:DoubleLayerKey|Key|W(?:DoubleLayerKey|Key))|R(?:AMKey|DualLayerKey|Key|W(?:DualLayerKey|Key)))|HDDVD(?:Key|R(?:AMKey|DualLayerKey|Key|W(?:DualLayerKey|Key)))|I(?:SRCKey|ndexPointsKey)|Key))|urrentWriteSpeedKey)|DisappearedNotification|FirmwareRevisionKey|I(?:ORegistryEntryPathKey|s(?:BusyKey|TrayOpenKey))|LoadingMechanismCan(?:EjectKey|InjectKey|OpenKey)|M(?:aximumWriteSpeedKey|edia(?:B(?:SDNameKey|locks(?:FreeKey|OverwritableKey|UsedKey))|Class(?:BD|CD|DVD|HDDVD|Key|Unknown)|DoubleLayerL0DataZoneBlocksKey|FreeSpaceKey|I(?:nfoKey|s(?:AppendableKey|BlankKey|ErasableKey|OverwritableKey|ReservedKey))|OverwritableSpaceKey|S(?:essionCountKey|tate(?:InTransition|Key|MediaPresent|None))|T(?:rackCountKey|ype(?:BDR(?:E|OM)?|CDR(?:OM|W)?|DVD(?:PlusR(?:DoubleLayer|W(?:DoubleLayer)?)?|R(?:AM|DualLayer|OM|W(?:DualLayer)?)?)|HDDVDR(?:AM|DualLayer|OM|W(?:DualLayer)?)?|Key|Unknown))|UsedSpaceKey))|P(?:hysicalInterconnect(?:ATAPI|Fi(?:breChannel|reWire)|Key|Location(?:External|Internal|Key|Unknown)|SCSI|USB)|roductNameKey)|S(?:tatusChangedNotification|upportLevel(?:AppleS(?:hipping|upported)|Key|None|Unsupported|VendorSupported))|Track(?:InfoKey|RefsKey)|VendorNameKey|Write(?:BufferSizeKey|CapabilitiesKey))))|E(?:ffectiveDate|r(?:ase(?:StatusChangedNotification|Type(?:Complete|Key|Quick))|rorStatus(?:AdditionalSenseStringKey|Error(?:InfoStringKey|Key|StringKey)|Key|Sense(?:CodeStringKey|Key)))|xpirationDate)|FreeBlocksKey|HFSPlus(?:CatalogNodeID|TextEncodingHint)?|I(?:SO(?:9660(?:Level(?:One|Two)|VersionNumber)?|Level|MacExtensions|RockRidgeExtensions)|n(?:dexPointsKey|visible))|Joliet|LinkType(?:FinderAlias|HardLink|SymbolicLink)|M(?:a(?:c(?:ExtendedFinderFlags|Fi(?:le(?:Creator|Type)|nder(?:Flags|HideExtension))|IconLocation|ScrollPosition|Window(?:Bounds|View))|xBurnSpeedKey)|ediaCatalogNumberKey)|NextWritableAddressKey|P(?:osix(?:FileMode|GID|UID)|reGap(?:IsRequiredKey|LengthKey)|ublisher)|RecordingDate|S(?:CMSCopyright(?:Free|Protected(?:Copy|Original))|e(?:rialCopyManagementStateKey|ssion(?:FormatKey|NumberKey))|tatus(?:Current(?:S(?:essionKey|peedKey)|TrackKey)|EraseTypeKey|P(?:ercentCompleteKey|rogress(?:Current(?:KPS|XFactor)|InfoKey))|State(?:Done|Erasing|F(?:ailed|inishing)|Key|None|Preparing|Session(?:Close|Open)|Track(?:Close|Open|Write)|Verifying)|Total(?:SessionsKey|TracksKey))|u(?:bchannelDataForm(?:Key|None|Pack|Raw)|ppressMacSpecificFiles)|y(?:nchronousBehaviorKey|stemIdentifier))|Track(?:I(?:SRCKey|sEmptyKey)|LengthKey|ModeKey|NumberKey|Packet(?:SizeKey|Type(?:Fixed|Key|Variable))|StartAddressKey|Type(?:Closed|In(?:complete|visible)|Key|Reserved))|UDF(?:ApplicationIdentifierSuffix|ExtendedFilePermissions|InterchangeLevel|Max(?:InterchangeLevel|VolumeSequenceNumber)|PrimaryVolumeDescriptorNumber|RealTimeFile|V(?:ersion1(?:02|50)|olumeSe(?:quenceNumber|t(?:I(?:dentifier|mplementationUse)|Timestamp)))|WriteVersion)?|V(?:erificationType(?:Checksum|Key|None|ProduceAgain|ReceiveData)|olume(?:C(?:heckedDate|reationDate)|E(?:ffectiveDate|xpirationDate)|ModificationDate|Set)))|I(?:C(?:ButtonType(?:Copy|Mail|Print|Scan|Transfer|Web)|CameraDeviceCan(?:AcceptPTPCommands|Delete(?:AllFiles|OneFile)|ReceiveFile|SyncClock|TakePicture(?:UsingShutterReleaseOnCamera)?)|D(?:e(?:leteAfterSuccessfulDownload|vice(?:CanEjectOrDisconnect|LocationDescription(?:Bluetooth|FireWire|MassStorage|USB)))|ownload(?:SidecarFiles|sDirectoryURL))|LocalizedStatusNotificationKey|Overwrite|S(?:ave(?:AsFilename|d(?:AncillaryFiles|Filename))|cannerStatus(?:RequestsOverviewScan|Warm(?:UpDone|ingUp))|tatus(?:CodeKey|NotificationKey))|TransportType(?:Bluetooth|ExFAT|FireWire|MassStorage|TCPIP|USB))|K(?:FilterBrowser(?:DefaultInputImage|Exclude(?:Categories|Filters)|Filter(?:DoubleClickNotification|SelectedNotification)|Show(?:Categories|Preview)|WillPreviewFilterNotification)|ImageBrowser(?:BackgroundColorKey|C(?:GImage(?:RepresentationType|SourceRepresentationType)|ell(?:BackgroundLayer|ForegroundLayer|PlaceHolderLayer|SelectionLayer|s(?:HighlightedTitleAttributesKey|OutlineColorKey|SubtitleAttributesKey|TitleAttributesKey)))|Group(?:BackgroundColorKey|FooterLayer|HeaderLayer|RangeKey|StyleKey|TitleKey)|IconRef(?:PathRepresentationType|RepresentationType)|NS(?:BitmapImageRepresentationType|DataRepresentationType|ImageRepresentationType|URLRepresentationType)|P(?:DFPageRepresentationType|athRepresentationType)|Q(?:CComposition(?:PathRepresentationType|RepresentationType)|TMovie(?:PathRepresentationType|RepresentationType)|uickLookPathRepresentationType)|SelectionColorKey)|OverlayType(?:Background|Image)|PictureTaker(?:Allows(?:EditingKey|FileChoosingKey|VideoCaptureKey)|CropAreaSizeKey|I(?:mageTransformsKey|nformationalTextKey)|OutputImageMaxSizeKey|RemainOpenAfterValidateKey|Show(?:AddressBookPicture(?:Key)?|E(?:ffectsKey|mptyPicture(?:Key)?)|RecentPictureKey)|UpdateRecentPictureKey)|Slideshow(?:AudioFile|Mode(?:Images|Other|PDF)|PDFDisplay(?:Box|Mode|sAsBook)|S(?:creen|tart(?:Index|Paused))|WrapAround)|ToolMode(?:Annotate|Crop|Move|None|Rotate|Select(?:Ellipse|Lasso|Rect)?)|UI(?:FlavorAllowFallback|Size(?:Flavor|Mini|Regular|Small)|maxSize)|_(?:ApertureBundleIdentifier|MailBundleIdentifier|PhotosBundleIdentifier|iPhotoBundleIdentifier))|MKTextOrientationName|OBluetooth(?:H(?:andsFree(?:Call(?:Direction|Index|M(?:ode|ultiparty)|N(?:ame|umber)|Status|Type)|Indicator(?:BattChg|Call(?:Held|Setup)?|Roam|S(?:ervice|ignal)))|ostControllerPoweredO(?:ffNotification|nNotification))|L2CAPChannel(?:PublishedNotification|TerminatedNotification)|PDU(?:Encoding|OriginatingAddress(?:Type)?|ProtocolID|Servic(?:CenterAddress|eCenterAddressType)|T(?:imestamp|ype)|UserData)))|MDLVertexAttribute(?:Anisotropy|Bi(?:normal|tangent)|Color|EdgeCrease|Joint(?:Indices|Weights)|Normal|OcclusionValue|Position|S(?:hadingBasis(?:U|V)|ubdivisionStencil)|T(?:angent|extureCoordinate))|NS(?:A(?:ddedPersistentStoresKey|ffected(?:ObjectsErrorKey|StoresErrorKey))|BinaryStoreType|CoreDataVersionNumber|De(?:letedObjectsKey|tailedErrorsKey)|ErrorMergePolicy|FetchRequestExpressionType|I(?:gnorePersistentStoreVersioningOption|n(?:MemoryStoreType|ferMappingModelAutomaticallyOption|sertedObjectsKey|validated(?:AllObjectsKey|ObjectsKey)))|M(?:anagedObjectContext(?:DidSaveNotification|ObjectsDidChangeNotification|WillSaveNotification)|ergeByProperty(?:ObjectTrumpMergePolicy|StoreTrumpMergePolicy)|igrat(?:ePersistentStoresAutomaticallyOption|ion(?:DestinationObjectKey|Entity(?:MappingKey|PolicyKey)|ManagerKey|PropertyMappingKey|SourceObjectKey)))|OverwriteMergePolicy|P(?:ersistentStore(?:Coordinator(?:StoresDidChangeNotification|WillRemoveStoreNotification)|FileProtectionKey|OSCompatibility|SaveConflictsErrorKey|TimeoutOption)|ref(?:PaneHelpMenu(?:AnchorKey|InfoPListKey|TitleKey)|erenceP(?:ane(?:CancelUnselectNotification|DoUnselectNotification|SwitchToPaneNotification|UpdateHelpMenuNotification)|refPaneIsAvailableNotification)))|R(?:e(?:adOnlyPersistentStoreOption|freshedObjectsKey|movedPersistentStoresKey)|ollbackMergePolicy)|S(?:QLite(?:AnalyzeOption|ErrorDomain|ManualVacuumOption|PragmasOption|StoreType)|tore(?:ModelVersion(?:HashesKey|IdentifiersKey)|TypeKey|UUIDKey))|U(?:UIDChangedPersistentStoresKey|pdatedObjectsKey)|Validat(?:eXMLStoreOption|ion(?:KeyErrorKey|ObjectErrorKey|PredicateErrorKey|ValueErrorKey))|XMLStoreType)|OSAS(?:criptError(?:App(?:AddressKey|Name(?:Key)?)|BriefMessage(?:Key)?|ExpectedTypeKey|Message(?:Key)?|Number(?:Key)?|OffendingObjectKey|PartialResultKey|Range(?:Key)?)|torage(?:Application(?:BundleType|Type)|Script(?:BundleType|Type)|TextType))|PDF(?:Document(?:AuthorAttribute|Creat(?:ionDateAttribute|orAttribute)|Did(?:Begin(?:FindNotification|Page(?:FindNotification|WriteNotification)|WriteNotification)|End(?:FindNotification|Page(?:FindNotification|WriteNotification)|WriteNotification)|FindMatchNotification|UnlockNotification)|KeywordsAttribute|ModificationDateAttribute|OwnerPasswordOption|ProducerAttribute|SubjectAttribute|TitleAttribute|UserPasswordOption)|ThumbnailViewDocumentEditedNotification|View(?:Annotation(?:HitNotification|WillHitNotification)|C(?:hangedHistoryNotification|opyPermissionNotification)|D(?:isplay(?:BoxChangedNotification|ModeChangedNotification)|ocumentChangedNotification)|P(?:ageChangedNotification|rintPermissionNotification)|S(?:caleChangedNotification|electionChangedNotification)|VisiblePagesChangedNotification))|QCCompositionInputPaceKey|SF(?:AuthorizationPluginViewUser(?:NameKey|ShortNameKey)|CertificateViewDisclosureStateDidChange|DisplayViewException)|globalUpdateOK|k(?:C(?:A(?:A(?:lignment(?:Center|Justified|Left|Natural|Right)|nimation(?:Cubic(?:Paced)?|Discrete|Linear|Paced|RotateAuto(?:Reverse)?))|EmitterLayer(?:Additive|BackToFront|C(?:ircle|uboid)|Line|O(?:ldest(?:First|Last)|utline)|Point(?:s)?|Rectangle|S(?:phere|urface)|Unordered|Volume)|Fil(?:l(?:Mode(?:B(?:ackwards|oth)|Forwards|Removed)|Rule(?:EvenOdd|NonZero))|ter(?:Linear|Nearest|Trilinear))|Gra(?:dientLayer(?:Axial|Radial)|vity(?:Bottom(?:Left|Right)?|Center|Left|R(?:esize(?:Aspect(?:Fill)?)?|ight)|Top(?:Left|Right)?))|Line(?:Cap(?:Butt|Round|Square)|Join(?:Bevel|Miter|Round))|MediaTimingFunction(?:Default|Ease(?:In(?:EaseOut)?|Out)|Linear)|OnOrder(?:In|Out)|RendererColorSpace|Scroll(?:Both|Horizontally|None|Vertically)|Tr(?:ans(?:action(?:Animation(?:Duration|TimingFunction)|CompletionBlock|DisableActions)|ition(?:F(?:ade|rom(?:Bottom|Left|Right|Top))|MoveIn|Push|Reveal)?)|uncation(?:End|Middle|None|Start))|ValueFunction(?:Rotate(?:X|Y|Z)|Scale(?:X|Y|Z)?|Translate(?:X|Y|Z)?))|I(?:A(?:ctiveKeys|pplyOption(?:ColorSpace|Definition|Extent|UserInfo)|ttribute(?:Class|D(?:e(?:fault|scription)|isplayName)|Filter(?:Categories|DisplayName|Name)|Identity|M(?:ax|in)|Name|ReferenceDocumentation|SliderM(?:ax|in)|Type(?:Angle|Boolean|Count|Distance|Gradient|Integer|O(?:ffset|paqueColor)|Position(?:3)?|Rectangle|Scalar|Time)?))|C(?:ategory(?:B(?:lur|uiltIn)|Co(?:lor(?:Adjustment|Effect)|mpositeOperation)|DistortionEffect|FilterGenerator|G(?:e(?:nerator|ometryAdjustment)|radient)|H(?:alftoneEffect|ighDynamicRange)|Interlaced|NonSquarePixels|Reduction|S(?:harpen|t(?:illImage|ylize))|T(?:ileEffect|ransition)|Video)|ontext(?:Output(?:ColorSpace|Premultiplied)|UseSoftwareRenderer|Working(?:ColorSpace|Format)))|F(?:ilterGeneratorExportedKey(?:Name|TargetObject)?|ormat(?:ARGB8|BGRA8|RGBA(?:16|8|f|h)))|I(?:mage(?:ColorSpace|Provider(?:TileSize|UserInfo))|nput(?:A(?:llowDraftModeKey|ngleKey|spectRatioKey)|B(?:ackgroundImageKey|iasKey|oost(?:Key|ShadowAmountKey)|rightnessKey)|C(?:enterKey|o(?:lorKey|ntrastKey))|DecoderVersionKey|E(?:VKey|nable(?:ChromaticNoiseTrackingKey|SharpeningKey)|xtentKey)|GradientImageKey|I(?:gnoreImageOrientationKey|mage(?:Key|OrientationKey)|ntensityKey)|LinearSpaceFilter|MaskImageKey|N(?:eutral(?:Chromaticity(?:XKey|YKey)|LocationKey|T(?:emperatureKey|intKey))|oiseReductionAmountKey)|R(?:adiusKey|efractionKey)|S(?:aturationKey|cale(?:FactorKey|Key)|ha(?:dingImageKey|rpnessKey))|T(?:argetImageKey|imeKey|ransformKey)|WidthKey))|Output(?:ImageKey|NativeSizeKey)|S(?:ampler(?:AffineMatrix|ColorSpace|Filter(?:Linear|Mode|Nearest)|Wrap(?:Black|Clamp|Mode))|upportedDecoderVersionsKey)|UI(?:ParameterSet|Set(?:Advanced|Basic|Development|Intermediate))))|FTS(?:Listing(?:NameKey|SizeKey|TypeKey)|Progress(?:BytesT(?:otalKey|ransferredKey)|EstimatedTimeKey|P(?:ercentageKey|recentageKey)|T(?:imeElapsedKey|ransferRateKey)))|OBEXHeaderIDKey(?:A(?:ppParameters|uthorization(?:Challenge|Response))|B(?:ody|yteSequence)|Co(?:nnectionID|unt)|Description|EndOfBody|HTTP|Length|Name|ObjectClass|T(?:arget|ime(?:4Byte|ISO)|ype)|U(?:nknown(?:1ByteQuantity|4ByteQuantity|ByteSequence|UnicodeText)|serDefined)|Who)|PDFDestinationUnspecifiedValue|QuartzFilter(?:ApplicationDomain|ManagerDid(?:AddFilterNotification|ModifyFilterNotification|RemoveFilterNotification|SelectFilterNotification)|P(?:DFWorkflowDomain|rintingDomain))))\\\\b',\n name: 'support.variable.objc'\n }\n ],\n repository: {\n functions: {\n patterns: [\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.0.support.function.cocoa.objc'}\n },\n match:\n '(\\\\s*)(\\\\bNS(?:HighlightRect|Run(?:AlertPanelRelativeToWindow|CriticalAlertPanelRelativeToWindow|InformationalAlertPanelRelativeToWindow))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.10.support.function.cocoa.objc'}\n },\n match:\n '(\\\\s*)(\\\\bNS(?:Begin(?:AlertSheet|CriticalAlertSheet|InformationalAlertSheet)|CopyBits|Get(?:AlertPanel|CriticalAlertPanel|InformationalAlertPanel)|R(?:eleaseAlertPanel|un(?:AlertPanel|CriticalAlertPanel|InformationalAlertPanel)))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.11.support.function.cocoa.objc'}\n },\n match:\n '(\\\\s*)(\\\\bNS(?:AccessibilityRaiseBadArgumentException|DisableScreenUpdates|EnableScreenUpdates)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.13.support.function.cocoa.objc'}\n },\n match: '(\\\\s*)(\\\\bNSConvertGlyphsToPackedGlyphs\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.14.support.function.cocoa.objc'}\n },\n match:\n '(\\\\s*)(\\\\bNS(?:GetWindowServerMemory|OpenGL(?:Get(?:Option|Version)|SetOption)|ReadPixel)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.5.support.function.cocoa.objc'}\n },\n match: '(\\\\s*)(\\\\bNXReadNSObjectFromCoder\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.5.support.function.run-time.objc'}\n },\n match:\n '(\\\\s*)(\\\\b(?:class_(?:createInstanceFromZone|lookupMethod|respondsToMethod|setSuperclass)|object_copyFromZone)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.6.support.function.cocoa.objc'}\n },\n match:\n '(\\\\s*)(\\\\bNS(?:CountWindows(?:ForContext)?|WindowList(?:ForContext)?)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.6.support.function.objc'}\n },\n match:\n '(\\\\s*)(\\\\bIOBluetooth(?:GetObjectIDFromArguments|OBEXSessionCreateWithIncomingIOBluetoothRFCOMMChannel)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'invalid.deprecated.10.8.support.function.cocoa.objc'}\n },\n match:\n '(\\\\s*)(\\\\bNS(?:CopyObject|InterfaceStyleForKey|RealMemoryAvailable)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.11.objc'}\n },\n match:\n '(\\\\s*)(\\\\b(?:CGDirectDisplayCopyCurrentMetalDevice|MT(?:KM(?:etalVertex(?:DescriptorFromModelIO|FormatFromModelIO)|odelIOVertex(?:DescriptorFromMetal|FormatFromMetal))|LC(?:opyAllDevices|reateSystemDefaultDevice)))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.12.objc'}\n },\n match:\n '(\\\\s*)(\\\\bMTKM(?:etalVertexDescriptorFromModelIOWithError|odelIOVertexDescriptorFromMetalWithError)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.13.objc'}\n },\n match:\n '(\\\\s*)(\\\\bMTL(?:CopyAllDevicesWithObserver|RemoveDeviceObserver|SamplePositionMake)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.14.objc'}\n },\n match: '(\\\\s*)(\\\\bMTLIndirectCommandBufferExecutionRangeMake\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.10.15.objc'}\n },\n match: '(\\\\s*)(\\\\bMTLTextureSwizzleChannelsMake\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.cocoa.10.10.objc'}\n },\n match:\n '(\\\\s*)(\\\\bNS(?:Accessibility(?:FrameInView|PointInView)|EdgeInsetsEqual)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.cocoa.10.15.objc'}\n },\n match: '(\\\\s*)(\\\\bNSDirectionalEdgeInsetsMake\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.cocoa.objc'}\n },\n match:\n '(\\\\s*)(\\\\b(?:ABLocalizedPropertyOrLabel|CFBridgingRe(?:lease|tain)|NS(?:A(?:ccessibility(?:ActionDescription|PostNotification(?:WithUserInfo)?|RoleDescription(?:ForUIElement)?|SetMayContainProtectedContent|Unignored(?:Ancestor|Children(?:ForOnlyChild)?|Descendant))|ll(?:HashTableObjects|MapTable(?:Keys|Values)|ocate(?:Collectable|MemoryPages|Object))|pplication(?:Load|Main)|vailableWindowDepths)|B(?:e(?:ep|stDepth)|itsPer(?:PixelFromDepth|SampleFromDepth))|C(?:lassFromString|o(?:lorSpaceFromDepth|mpare(?:HashTables|MapTables)|n(?:tainsRect|vert(?:Host(?:DoubleToSwapped|FloatToSwapped)|Swapped(?:DoubleToHost|FloatToHost)))|py(?:HashTableWithZone|M(?:apTableWithZone|emoryPages))|unt(?:HashTable|MapTable))|reate(?:File(?:ContentsPboardType|namePboardType)|HashTable(?:WithZone)?|MapTable(?:WithZone)?|Zone))|D(?:e(?:allocate(?:MemoryPages|Object)|c(?:imal(?:Add|Co(?:mpa(?:ct|re)|py)|Divide|IsNotANumber|Multiply(?:ByPowerOf10)?|Normalize|Power|Round|S(?:tring|ubtract))|rementExtraRefCountWasZero)|faultMallocZone)|ivideRect|ottedFrameRect|raw(?:B(?:itmap|utton)|ColorTiledRects|DarkBezel|Gr(?:ayBezel|oove)|LightBezel|NinePartImage|T(?:hreePartImage|iledRects)|W(?:hiteBezel|indowBackground)))|E(?:dgeInsetsMake|n(?:d(?:HashTableEnumeration|MapTableEnumeration)|umerate(?:HashTable|MapTable))|qual(?:Points|R(?:anges|ects)|Sizes)|raseRect|ventMaskFromType|x(?:ceptionHandlerResume|traRefCount))|F(?:ileTypeForHFSTypeCode|r(?:ameRect(?:WithWidth(?:UsingOperation)?)?|ee(?:HashTable|MapTable))|ullUserName)|Get(?:FileType(?:s)?|SizeAndAlignment|UncaughtExceptionHandler)|H(?:FSType(?:CodeFromFileType|OfFile)|ash(?:Get|Insert(?:IfAbsent|KnownAbsent)?|Remove)|eight|o(?:meDirectory(?:ForUser)?|stByteOrder))|I(?:n(?:crementExtraRefCount|setRect|te(?:gralRect(?:WithOptions)?|rsect(?:ionR(?:ange|ect)|sRect)))|s(?:ControllerMarker|EmptyRect))|Lo(?:cationInRange|g(?:PageSize|v)?)|M(?:a(?:ke(?:Collectable|Point|R(?:ange|ect)|Size)|p(?:Get|Insert(?:IfAbsent|KnownAbsent)?|Member|Remove)|x(?:Range|X|Y))|i(?:d(?:X|Y)|n(?:X|Y))|ouseInRect)|N(?:ext(?:HashEnumeratorItem|MapEnumeratorPair)|umberOfColorComponents)|O(?:ffsetRect|penStepRootDirectory)|P(?:ageSize|erformService|lanarFromDepth|oint(?:From(?:CGPoint|String)|InRect|ToCGPoint)|rotocolFromString)|R(?:angeFromString|e(?:allocateCollectable|c(?:t(?:Clip(?:List)?|F(?:ill(?:List(?:UsingOperation|With(?:Colors(?:UsingOperation)?|Grays))?|UsingOperation)?|rom(?:CGRect|String))|ToCGRect)|ycleZone)|gisterServicesProvider|set(?:HashTable|MapTable))|ound(?:DownToMultipleOfPageSize|UpToMultipleOfPageSize))|S(?:e(?:archPathForDirectoriesInDomains|lectorFromString|t(?:FocusRingStyle|ShowsServicesMenuItem|UncaughtExceptionHandler|ZoneName))|ho(?:uldRetainWithZone|w(?:AnimationEffect|sServicesMenuItem))|ize(?:From(?:CGSize|String)|ToCGSize)|tringFrom(?:Class|HashTable|MapTable|P(?:oint|rotocol)|R(?:ange|ect)|S(?:elector|ize))|wap(?:Big(?:DoubleToHost|FloatToHost|IntToHost|Long(?:LongToHost|ToHost)|ShortToHost)|Double|Float|Host(?:DoubleTo(?:Big|Little)|FloatTo(?:Big|Little)|IntTo(?:Big|Little)|Long(?:LongTo(?:Big|Little)|To(?:Big|Little))|ShortTo(?:Big|Little))|Int|L(?:ittle(?:DoubleToHost|FloatToHost|IntToHost|Long(?:LongToHost|ToHost)|ShortToHost)|ong(?:Long)?)|Short))|T(?:emporaryDirectory|ouchTypeMaskFromType)|U(?:n(?:ionR(?:ange|ect)|registerServicesProvider)|pdateDynamicServices|serName)|Width|Zone(?:Calloc|Fr(?:ee|omPointer)|Malloc|Name|Realloc)))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.objc'}\n },\n match:\n '(\\\\s*)(\\\\b(?:AuthorizationPluginCreate|IOBluetooth(?:DeviceRegisterForDisconnectNotification|FindNumberOfRegistryEntriesOfClassName|Get(?:DeviceSelectorController|PairingController|UniqueFileNameAndPath)|I(?:gnoreHIDDevice|sFileAppleDesignatedPIMData)|L2CAPChannelRegisterForChannelCloseNotification|N(?:SString(?:FromDeviceAddress(?:Colon)?|ToDeviceAddress)|umberOf(?:AvailableHIDDevices|KeyboardHIDDevices|PointingHIDDevices|TabletHIDDevices))|PackData(?:List)?|R(?:FCOMMChannelRegisterForChannelCloseNotification|e(?:gisterFor(?:DeviceConnectNotifications|Filtered(?:L2CAPChannelOpenNotifications|RFCOMMChannelOpenNotifications)|L2CAPChannelOpenNotifications|RFCOMMChannelOpenNotifications)|moveIgnoredHIDDevice))|U(?:npackData(?:List)?|serNotificationUnregister)|ValidateHardwareWithDescription)|MTL(?:C(?:learColorMake|oordinate2DMake)|OriginMake|RegionMake(?:1D|2D|3D)|SizeMake)|OBEX(?:Add(?:A(?:pplicationParameterHeader|uthorization(?:ChallengeHeader|ResponseHeader))|B(?:odyHeader|yteSequenceHeader)|Co(?:nnectionIDHeader|untHeader)|DescriptionHeader|HTTPHeader|LengthHeader|NameHeader|ObjectClassHeader|T(?:argetHeader|ime(?:4ByteHeader|ISOHeader)|ypeHeader)|UserDefinedHeader|WhoHeader)|GetHeaders|HeadersToBytes)|SS(?:CenteredRectInRect|Random(?:FloatBetween|IntBetween|PointForSizeWithinRect)))\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.run-time.10.10.objc'}\n },\n match: '(\\\\s*)(\\\\bobject_isClass\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.run-time.10.12.objc'}\n },\n match:\n '(\\\\s*)(\\\\b(?:object_setI(?:nstanceVariableWithStrongDefault|varWithStrongDefault)|protocol_copyPropertyList2)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.run-time.10.14.objc'}\n },\n match: '(\\\\s*)(\\\\bobjc_setHook_get(?:Class|ImageName)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.run-time.10.15.objc'}\n },\n match:\n '(\\\\s*)(\\\\bobjc_(?:addLoadImageFunc|setHook_setAssociatedObject)\\\\b)'\n },\n {\n captures: {\n 1: {name: 'punctuation.whitespace.support.function.leading'},\n 2: {name: 'support.function.run-time.objc'}\n },\n match:\n '(\\\\s*)(\\\\b(?:class_(?:add(?:Ivar|Method(?:s)?|Pro(?:perty|tocol))|c(?:o(?:nformsToProtocol|py(?:IvarList|MethodList|Pro(?:pertyList|tocolList)))|reateInstance)|get(?:Class(?:Method|Variable)|I(?:mageName|nstance(?:Method|Size|Variable)|varLayout)|MethodImplementation(?:_stret)?|Name|Property|Superclass|Version|WeakIvarLayout)|isMetaClass|nextMethodList|poseAs|re(?:moveMethods|place(?:Method|Property)|spondsToSelector)|set(?:IvarLayout|Version|WeakIvarLayout))|i(?:mp_(?:getBlock|implementationWithBlock|removeBlock)|var_get(?:Name|Offset|TypeEncoding))|method_(?:copy(?:ArgumentType|ReturnType)|exchangeImplementations|get(?:Argument(?:Info|Type)|Description|Implementation|N(?:ame|umberOfArguments)|ReturnType|SizeOfArguments|TypeEncoding)|setImplementation)|obj(?:c_(?:a(?:ddClass|llocate(?:ClassPair|Protocol))|co(?:nstructInstance|py(?:Class(?:List|NamesForImage)|ImageNames|ProtocolList))|d(?:estructInstance|isposeClassPair|uplicateClass)|enumerationMutation|get(?:AssociatedObject|Class(?:List|es)?|FutureClass|MetaClass|OrigClass|Protocol|RequiredClass)|lo(?:adWeak|okUpClass)|re(?:gister(?:ClassPair|Protocol)|moveAssociatedObjects|tainedObject)|s(?:et(?:AssociatedObject|ClassHandler|EnumerationMutationHandler|ForwardHandler|Multithreaded)|toreWeak)|unretained(?:Object|Pointer))|ect_(?:copy|dispose|get(?:Class(?:Name)?|I(?:n(?:dexedIvars|stanceVariable)|var))|realloc(?:FromZone)?|set(?:Class|I(?:nstanceVariable|var))))|pro(?:perty_(?:copyAttribute(?:List|Value)|get(?:Attributes|Name))|tocol_(?:add(?:MethodDescription|Pro(?:perty|tocol))|co(?:nformsToProtocol|py(?:MethodDescriptionList|Pro(?:pertyList|tocolList)))|get(?:MethodDescription|Name|Property)|isEqual))|sel_(?:get(?:Name|Uid)|is(?:Equal|Mapped)|registerName))\\\\b)'\n }\n ]\n },\n protocols: {\n patterns: [\n {\n match: '\\\\bNSConnectionDelegate\\\\b',\n name: 'invalid.deprecated.10.13.support.other.protocol.cocoa.objc'\n },\n {\n match:\n '\\\\b(?:DOM(?:Event(?:Listener|Target)|NodeFilter|XPathNSResolver)|Web(?:Do(?:cument(?:Representation|Searching|Text|View)|wnloadDelegate)|EditingDelegate|FrameLoadDelegate|OpenPanelResultListener|P(?:lugInViewFactory|olicyDe(?:cisionListener|legate))|ResourceLoadDelegate|UIDelegate))\\\\b',\n name: 'invalid.deprecated.10.14.support.other.protocol.cocoa.objc'\n },\n {\n match:\n '\\\\bQC(?:CompositionRenderer|PlugIn(?:Context|InputImageSource|OutputImageProvider))\\\\b',\n name: 'invalid.deprecated.10.15.support.other.protocol.objc'\n },\n {\n match: '\\\\bNSURLHandleClient\\\\b',\n name: 'invalid.deprecated.10.4.support.other.protocol.cocoa.objc'\n },\n {\n match:\n '\\\\bM(?:DL(?:Component|MeshBuffer(?:Allocator|Zone)?|Named|ObjectContainerComponent|TransformComponent)|T(?:KViewDelegate|L(?:B(?:litCommandEncoder|uffer)|Com(?:mand(?:Buffer|Encoder|Queue)|pute(?:CommandEncoder|PipelineState))|D(?:e(?:pthStencilState|vice)|rawable)|Function|Library|ParallelRenderCommandEncoder|Re(?:nder(?:CommandEncoder|PipelineState)|source)|SamplerState|Texture)))\\\\b',\n name: 'support.other.protocol.10.11.objc'\n },\n {\n match: '\\\\bCIImageProcessor(?:Input|Output)\\\\b',\n name: 'support.other.protocol.10.12.objc'\n },\n {\n match:\n '\\\\bM(?:DL(?:AssetResolver|JointAnimation|TransformOp)|TL(?:ArgumentEncoder|CaptureScope|Fence|Heap))\\\\b',\n name: 'support.other.protocol.10.13.objc'\n },\n {\n match:\n '\\\\bMTL(?:Event|Indirect(?:CommandBuffer|RenderCommand)|SharedEvent)\\\\b',\n name: 'support.other.protocol.10.14.objc'\n },\n {\n match:\n '\\\\bMTL(?:Counter(?:S(?:ampleBuffer|et))?|RasterizationRateMap)\\\\b',\n name: 'support.other.protocol.10.15.objc'\n },\n {\n match: '\\\\bNSUserActivityDelegate\\\\b',\n name: 'support.other.protocol.cocoa.10.10.objc'\n },\n {\n match:\n '\\\\b(?:NS(?:Accessibility(?:CustomRotorItemSearchDelegate|ElementLoading)|ItemProvider(?:Reading|Writing))|WK(?:HTTPCookieStoreObserver|URLScheme(?:Handler|Task)))\\\\b',\n name: 'support.other.protocol.cocoa.10.13.objc'\n },\n {\n match: '\\\\bUNUserNotificationCenterDelegate\\\\b',\n name: 'support.other.protocol.cocoa.10.14.objc'\n },\n {\n match:\n '\\\\bNS(?:CollectionLayout(?:Container|Environment|VisibleItem)|URLSessionWebSocketDelegate)\\\\b',\n name: 'support.other.protocol.cocoa.10.15.objc'\n },\n {\n match:\n '\\\\b(?:ABImageClient|NS(?:A(?:ccessibility(?:Button|C(?:heckBox|ontainsTransientUI)|Element|Group|Image|L(?:ayout(?:Area|Item)|ist)|NavigableStaticText|Outline|ProgressIndicator|R(?:adioButton|ow)|S(?:lider|t(?:aticText|epper)|witch)|Table)?|l(?:ertDelegate|ignmentFeedbackToken)|nimat(?:ablePropertyContainer|ionDelegate)|pp(?:earanceCustomization|licationDelegate))|BrowserDelegate|C(?:a(?:cheDelegate|ndidateListTouchBarItemDelegate)|hangeSpelling|loudSharing(?:ServiceDelegate|Validation)|o(?:ding|l(?:lectionView(?:D(?:ataSource|elegate(?:FlowLayout)?)|Element|Prefetching|SectionHeaderView)|or(?:Changing|Picking(?:Custom|Default)))|mboBox(?:CellDataSource|D(?:ataSource|elegate))|ntrolTextEditingDelegate|pying))|D(?:atePickerCellDelegate|ecimalNumberBehaviors|iscardableContent|ockTilePlugIn|ra(?:gging(?:Destination|Info|Source)|werDelegate))|E(?:ditor(?:Registration)?|xtensionRequestHandling)|F(?:astEnumeration|ile(?:ManagerDelegate|Pr(?:esenter|omiseProviderDelegate))|ontChanging)|G(?:estureRecognizerDelegate|lyphStorage)|HapticFeedbackPerformer|I(?:gnoreMisspelledWords|mageDelegate|nputServ(?:erMouseTracker|iceProvider))|Keyed(?:ArchiverDelegate|UnarchiverDelegate)|L(?:ayoutManagerDelegate|ocking)|M(?:a(?:chPortDelegate|trixDelegate)|e(?:nu(?:Delegate|ItemValidation)|tadataQueryDelegate)|utableCopying)|NetService(?:BrowserDelegate|Delegate)|O(?:penSavePanelDelegate|utlineViewD(?:ataSource|elegate))|P(?:a(?:geControllerDelegate|steboard(?:ItemDataProvider|Reading|TypeOwner|Writing)|thC(?:ellDelegate|ontrolDelegate))|o(?:poverDelegate|rtDelegate)|r(?:intPanelAccessorizing|ogressReporting))|RuleEditorDelegate|S(?:crubber(?:D(?:ataSource|elegate)|FlowLayoutDelegate)|e(?:archFieldDelegate|cureCoding|guePerforming|rvicesMenuRequestor)|haringService(?:Delegate|Picker(?:Delegate|To(?:olbarItemDelegate|uchBarItemDelegate)))|oundDelegate|p(?:e(?:ech(?:RecognizerDelegate|SynthesizerDelegate)|llServerDelegate)|litViewDelegate|ringLoadingDestination)|t(?:a(?:ckViewDelegate|ndardKeyBindingResponding)|reamDelegate))|T(?:ab(?:ViewDelegate|leViewD(?:ataSource|elegate))|ext(?:AttachmentC(?:ell|ontainer)|CheckingClient|Delegate|Fi(?:eldDelegate|nder(?:BarContainer|Client))|Input(?:Client|Traits)?|LayoutOrientationProvider|StorageDelegate|ViewDelegate)|o(?:kenField(?:CellDelegate|Delegate)|olbar(?:Delegate|ItemValidation)|uchBar(?:Delegate|Provider)))|U(?:RL(?:AuthenticationChallengeSender|ConnectionD(?:ataDelegate|elegate|ownloadDelegate)|DownloadDelegate|ProtocolClient|Session(?:D(?:ataDelegate|elegate|ownloadDelegate)|StreamDelegate|TaskDelegate))|ser(?:ActivityRestoring|Interface(?:Compression|Item(?:Identification|Searching)|Validations)|NotificationCenterDelegate))|V(?:alidatedUserInterfaceItem|iew(?:ControllerPresentationAnimator|LayerContentScaleDelegate|ToolTipOwner))|Window(?:Delegate|Restoration)|X(?:MLParserDelegate|PC(?:ListenerDelegate|ProxyCreating)))|WK(?:NavigationDelegate|ScriptMessageHandler|UIDelegate))\\\\b',\n name: 'support.other.protocol.cocoa.objc'\n },\n {\n match:\n '\\\\b(?:A(?:MWorkflowControllerDelegate|UAudioUnitFactory)|C(?:A(?:A(?:ction|nimationDelegate)|Lay(?:erDelegate|outManager)|Me(?:diaTiming|talDrawable))|I(?:Filter(?:Constructor)?|PlugInRegistration)|X(?:Call(?:DirectoryExtensionContextDelegate|ObserverDelegate)|ProviderDelegate))|DR(?:FileDataProduction|TrackDataProduction)|I(?:C(?:CameraDeviceD(?:elegate|ownloadDelegate)|Device(?:BrowserDelegate|Delegate)|ScannerDeviceDelegate)|K(?:CameraDeviceViewDelegate|DeviceBrowserViewDelegate|FilterCustomUIProvider|ImageEditPanelDataSource|S(?:cannerDeviceViewDelegate|lideshowDataSource))|MK(?:TextInput|UnicodeTextInput)|OBluetooth(?:Device(?:AsyncCallbacks|InquiryDelegate|PairDelegate)|HandsFree(?:AudioGatewayDelegate|De(?:legate|viceDelegate))|L2CAPChannelDelegate|RFCOMMChannelDelegate))|MDLLightProbeIrradianceDataSource|NS(?:Fetch(?:RequestResult|edResults(?:ControllerDelegate|SectionInfo))|Object)|PDF(?:DocumentDelegate|ViewDelegate)|QLPreview(?:Item|PanelD(?:ataSource|elegate)|ingController))\\\\b',\n name: 'support.other.protocol.objc'\n }\n ]\n }\n },\n scopeName: 'source.objc.platform'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed permissive.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.pl', '.cgi', '.perl', '.ph', '.plx', '.pm', '.psgi', '.t'],\n names: ['perl', 'cperl'],\n patterns: [\n {include: '#line_comment'},\n {\n begin: '^(?==[a-zA-Z]+)',\n end: '^(=cut\\\\b.*$)',\n endCaptures: {1: {patterns: [{include: '#pod'}]}},\n name: 'comment.block.documentation.perl',\n patterns: [{include: '#pod'}]\n },\n {include: '#variable'},\n {\n applyEndPatternLast: true,\n begin: '\\\\b(?=qr\\\\s*[^\\\\s\\\\w])',\n end: '((([egimosxradlupcn]*)))(?=(\\\\s+\\\\S|\\\\s*[;\\\\,\\\\#\\\\{\\\\}\\\\)]|\\\\s*$))',\n endCaptures: {\n 1: {name: 'string.regexp.compile.perl'},\n 2: {name: 'punctuation.definition.string.perl'},\n 3: {name: 'keyword.control.regexp-option.perl'}\n },\n patterns: [\n {\n begin: '(qr)\\\\s*\\\\{',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '\\\\}',\n name: 'string.regexp.compile.nested_braces.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_braces_interpolated'}\n ]\n },\n {\n begin: '(qr)\\\\s*\\\\[',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '\\\\]',\n name: 'string.regexp.compile.nested_brackets.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_brackets_interpolated'}\n ]\n },\n {\n begin: '(qr)\\\\s*<',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '>',\n name: 'string.regexp.compile.nested_ltgt.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_ltgt_interpolated'}\n ]\n },\n {\n begin: '(qr)\\\\s*\\\\(',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '\\\\)',\n name: 'string.regexp.compile.nested_parens.perl',\n patterns: [\n {match: \"\\\\$(?=[^\\\\s\\\\w\\\\\\\\'\\\\{\\\\[\\\\(\\\\<])\"},\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_parens_interpolated'}\n ]\n },\n {\n begin: \"(qr)\\\\s*'\",\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: \"'\",\n name: 'string.regexp.compile.single-quote.perl',\n patterns: [{include: '#escaped_char'}]\n },\n {\n begin: \"(qr)\\\\s*([^\\\\s\\\\w'\\\\{\\\\[\\\\(\\\\<])\",\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '\\\\2',\n name: 'string.regexp.compile.simple-delimiter.perl',\n patterns: [\n {\n match: \"\\\\$(?=[^\\\\s\\\\w'\\\\{\\\\[\\\\(\\\\<])\",\n name: 'keyword.control.anchor.perl'\n },\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_parens_interpolated'}\n ]\n }\n ]\n },\n {\n applyEndPatternLast: true,\n begin: '(?',\n name: 'string.regexp.find-m.nested_ltgt.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_ltgt_interpolated'}\n ]\n },\n {\n begin: '(m)\\\\s*\\\\(',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '\\\\)',\n name: 'string.regexp.find-m.nested_parens.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_parens_interpolated'}\n ]\n },\n {\n begin: \"(m)\\\\s*'\",\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: \"'\",\n name: 'string.regexp.find-m.single-quote.perl',\n patterns: [{include: '#escaped_char'}]\n },\n {\n begin:\n \"\\\\G(?]|\\\\s*$))',\n endCaptures: {\n 1: {name: 'string.regexp.replace.perl'},\n 2: {name: 'punctuation.definition.string.perl'},\n 3: {name: 'keyword.control.regexp-option.perl'}\n },\n patterns: [\n {\n begin: '(s)\\\\s*\\\\{',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '\\\\}',\n name: 'string.regexp.nested_braces.perl',\n patterns: [{include: '#escaped_char'}, {include: '#nested_braces'}]\n },\n {\n begin: '(s)\\\\s*\\\\[',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '\\\\]',\n name: 'string.regexp.nested_brackets.perl',\n patterns: [{include: '#escaped_char'}, {include: '#nested_brackets'}]\n },\n {\n begin: '(s)\\\\s*<',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '>',\n name: 'string.regexp.nested_ltgt.perl',\n patterns: [{include: '#escaped_char'}, {include: '#nested_ltgt'}]\n },\n {\n begin: '(s)\\\\s*\\\\(',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '\\\\)',\n name: 'string.regexp.nested_parens.perl',\n patterns: [{include: '#escaped_char'}, {include: '#nested_parens'}]\n },\n {\n begin: '\\\\{',\n captures: {0: {name: 'punctuation.definition.string.perl'}},\n end: '\\\\}',\n name: 'string.regexp.format.nested_braces.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_braces_interpolated'}\n ]\n },\n {\n begin: '\\\\[',\n captures: {0: {name: 'punctuation.definition.string.perl'}},\n end: '\\\\]',\n name: 'string.regexp.format.nested_brackets.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_brackets_interpolated'}\n ]\n },\n {\n begin: '<',\n captures: {0: {name: 'punctuation.definition.string.perl'}},\n end: '>',\n name: 'string.regexp.format.nested_ltgt.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_ltgt_interpolated'}\n ]\n },\n {\n begin: '\\\\(',\n captures: {0: {name: 'punctuation.definition.string.perl'}},\n end: '\\\\)',\n name: 'string.regexp.format.nested_parens.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_parens_interpolated'}\n ]\n },\n {\n begin: \"'\",\n captures: {0: {name: 'punctuation.definition.string.perl'}},\n end: \"'\",\n name: 'string.regexp.format.single_quote.perl',\n patterns: [\n {match: \"\\\\\\\\['\\\\\\\\]\", name: 'constant.character.escape.perl'}\n ]\n },\n {\n begin: '([^\\\\s\\\\w\\\\[({<;])',\n captures: {0: {name: 'punctuation.definition.string.perl'}},\n end: '\\\\1',\n name: 'string.regexp.format.simple_delimiter.perl',\n patterns: [{include: '#escaped_char'}, {include: '#variable'}]\n },\n {match: '\\\\s+'}\n ]\n },\n {\n begin:\n '\\\\b(?=s([^\\\\sa-zA-Z0-9\\\\[({<]).*\\\\1([egimosxradlupcn]*)([\\\\}\\\\)\\\\;\\\\,]|\\\\s+))',\n end: '((([egimosxradlupcn]*)))(?=([\\\\}\\\\)\\\\;\\\\,]|\\\\s+|\\\\s*$))',\n endCaptures: {\n 1: {name: 'string.regexp.replace.perl'},\n 2: {name: 'punctuation.definition.string.perl'},\n 3: {name: 'keyword.control.regexp-option.perl'}\n },\n patterns: [\n {\n begin: '(s\\\\s*)([^\\\\sa-zA-Z0-9\\\\[({<])',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '(?=\\\\2)',\n name: 'string.regexp.replaceXXX.simple_delimiter.perl',\n patterns: [{include: '#escaped_char'}]\n },\n {\n begin: \"'\",\n captures: {0: {name: 'punctuation.definition.string.perl'}},\n end: \"'\",\n name: 'string.regexp.replaceXXX.format.single_quote.perl',\n patterns: [\n {match: \"\\\\\\\\['\\\\\\\\]\", name: 'constant.character.escape.perl.perl'}\n ]\n },\n {\n begin: '([^\\\\sa-zA-Z0-9\\\\[({<])',\n captures: {0: {name: 'punctuation.definition.string.perl'}},\n end: '\\\\1',\n name: 'string.regexp.replaceXXX.format.simple_delimiter.perl',\n patterns: [{include: '#escaped_char'}, {include: '#variable'}]\n }\n ]\n },\n {\n begin: '\\\\b(?=(?]))',\n end: '((([egimosradlupc]*x[egimosradlupc]*)))\\\\b',\n endCaptures: {\n 1: {name: 'string.regexp.replace.perl'},\n 2: {name: 'punctuation.definition.string.perl'},\n 3: {name: 'keyword.control.regexp-option.perl'}\n },\n patterns: [\n {\n begin: '(s)\\\\s*(.)',\n captures: {\n 0: {name: 'punctuation.definition.string.perl'},\n 1: {name: 'support.function.perl'}\n },\n end: '(?=\\\\2)',\n name: 'string.regexp.replace.extended.simple_delimiter.perl',\n patterns: [{include: '#escaped_char'}]\n },\n {\n begin: \"'\",\n captures: {0: {name: 'punctuation.definition.string.perl'}},\n end: \"'(?=[egimosradlupc]*x[egimosradlupc]*)\\\\b\",\n name: 'string.regexp.replace.extended.simple_delimiter.perl',\n patterns: [{include: '#escaped_char'}]\n },\n {\n begin: '(.)',\n captures: {0: {name: 'punctuation.definition.string.perl'}},\n end: '\\\\1(?=[egimosradlupc]*x[egimosradlupc]*)\\\\b',\n name: 'string.regexp.replace.extended.simple_delimiter.perl',\n patterns: [{include: '#escaped_char'}, {include: '#variable'}]\n }\n ]\n },\n {\n begin: '(?<=\\\\(|\\\\{|~|&|\\\\||if|unless|^)\\\\s*((\\\\/))',\n beginCaptures: {\n 1: {name: 'string.regexp.find.perl'},\n 2: {name: 'punctuation.definition.string.perl'}\n },\n contentName: 'string.regexp.find.perl',\n end: '((\\\\1([egimosxradlupcn]*)))(?=(\\\\s+\\\\S|\\\\s*[;\\\\,\\\\#\\\\{\\\\}\\\\)]|\\\\s*$))',\n endCaptures: {\n 1: {name: 'string.regexp.find.perl'},\n 2: {name: 'punctuation.definition.string.perl'},\n 3: {name: 'keyword.control.regexp-option.perl'}\n },\n patterns: [\n {match: '\\\\$(?=\\\\/)', name: 'keyword.control.anchor.perl'},\n {include: '#escaped_char'},\n {include: '#variable'}\n ]\n },\n {\n captures: {1: {name: 'constant.other.key.perl'}},\n match: '\\\\b(\\\\w+)\\\\s*(?==>)'\n },\n {match: '(?<={)\\\\s*\\\\w+\\\\s*(?=})', name: 'constant.other.bareword.perl'},\n {\n captures: {\n 1: {name: 'keyword.control.perl'},\n 2: {name: 'entity.name.type.class.perl'}\n },\n match: '^\\\\s*(package)\\\\s+([^\\\\s;]+)',\n name: 'meta.class.perl'\n },\n {\n captures: {\n 1: {name: 'storage.type.sub.perl'},\n 2: {name: 'entity.name.function.perl'},\n 3: {name: 'storage.type.method.perl'}\n },\n match:\n '\\\\b(sub)(?:\\\\s+([-a-zA-Z0-9_]+))?\\\\s*(?:\\\\([\\\\$\\\\@\\\\*;]*\\\\))?[^\\\\w\\\\{]',\n name: 'meta.function.perl'\n },\n {\n captures: {\n 1: {name: 'entity.name.function.perl'},\n 2: {name: 'punctuation.definition.parameters.perl'},\n 3: {name: 'variable.parameter.function.perl'}\n },\n match: '^\\\\s*(BEGIN|UNITCHECK|CHECK|INIT|END|DESTROY)\\\\b',\n name: 'meta.function.perl'\n },\n {\n begin: '^(?=(\\\\t| {4}))',\n end: '(?=[^\\\\t\\\\s])',\n name: 'meta.leading-tabs',\n patterns: [\n {\n captures: {1: {name: 'meta.odd-tab'}, 2: {name: 'meta.even-tab'}},\n match: '(\\\\t| {4})(\\\\t| {4})?'\n }\n ]\n },\n {\n captures: {\n 1: {name: 'support.function.perl'},\n 2: {name: 'punctuation.definition.string.perl'},\n 5: {name: 'punctuation.definition.string.perl'},\n 8: {name: 'punctuation.definition.string.perl'}\n },\n match:\n '\\\\b(tr|y)\\\\s*([^A-Za-z0-9\\\\s])(.*?)(?)\\\\b(continue|default|die|do|else|elsif|exit|for|foreach|given|goto|if|last|next|redo|return|select|unless|until|wait|when|while|switch|case|require|use|eval)\\\\b',\n name: 'keyword.control.perl'\n },\n {match: '\\\\b(my|our|local)\\\\b', name: 'storage.modifier.perl'},\n {\n match: '(?|=>|->)', name: 'keyword.operator.comparison.perl'},\n {include: '#heredoc'},\n {\n begin: '\\\\bqq\\\\s*([^\\\\(\\\\{\\\\[\\\\<\\\\w\\\\s])',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.other.qq.perl',\n patterns: [{include: '#escaped_char'}, {include: '#variable'}]\n },\n {\n begin: \"\\\\bqx\\\\s*([^'\\\\(\\\\{\\\\[\\\\<\\\\w\\\\s])\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.interpolated.qx.perl',\n patterns: [{include: '#escaped_char'}, {include: '#variable'}]\n },\n {\n begin: \"\\\\bqx\\\\s*'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.interpolated.qx.single-quote.perl',\n patterns: [{include: '#escaped_char'}]\n },\n {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.double.perl',\n patterns: [{include: '#escaped_char'}, {include: '#variable'}]\n },\n {\n begin: '(?)\\\\bqw?\\\\s*([^\\\\(\\\\{\\\\[\\\\<\\\\w\\\\s])',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.other.q.perl'\n },\n {\n begin: \"'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.single.perl',\n patterns: [{match: \"\\\\\\\\['\\\\\\\\]\", name: 'constant.character.escape.perl'}]\n },\n {\n begin: '`',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '`',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.interpolated.perl',\n patterns: [{include: '#escaped_char'}, {include: '#variable'}]\n },\n {\n begin: '(?)\\\\bqq\\\\s*\\\\(',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.other.qq-paren.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#nested_parens_interpolated'},\n {include: '#variable'}\n ]\n },\n {\n begin: '\\\\bqq\\\\s*\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.other.qq-brace.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#nested_braces_interpolated'},\n {include: '#variable'}\n ]\n },\n {\n begin: '\\\\bqq\\\\s*\\\\[',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\]',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.other.qq-bracket.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#nested_brackets_interpolated'},\n {include: '#variable'}\n ]\n },\n {\n begin: '\\\\bqq\\\\s*\\\\<',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\>',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.other.qq-ltgt.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#nested_ltgt_interpolated'},\n {include: '#variable'}\n ]\n },\n {\n begin: '(?)\\\\bqx\\\\s*\\\\(',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.interpolated.qx-paren.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#nested_parens_interpolated'},\n {include: '#variable'}\n ]\n },\n {\n begin: '\\\\bqx\\\\s*\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.interpolated.qx-brace.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#nested_braces_interpolated'},\n {include: '#variable'}\n ]\n },\n {\n begin: '\\\\bqx\\\\s*\\\\[',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\]',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.interpolated.qx-bracket.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#nested_brackets_interpolated'},\n {include: '#variable'}\n ]\n },\n {\n begin: '\\\\bqx\\\\s*\\\\<',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\>',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.interpolated.qx-ltgt.perl',\n patterns: [\n {include: '#escaped_char'},\n {include: '#nested_ltgt_interpolated'},\n {include: '#variable'}\n ]\n },\n {\n begin: '(?)\\\\bqw?\\\\s*\\\\(',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.other.q-paren.perl',\n patterns: [{include: '#nested_parens'}]\n },\n {\n begin: '\\\\bqw?\\\\s*\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.other.q-brace.perl',\n patterns: [{include: '#nested_braces'}]\n },\n {\n begin: '\\\\bqw?\\\\s*\\\\[',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\]',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.other.q-bracket.perl',\n patterns: [{include: '#nested_brackets'}]\n },\n {\n begin: '\\\\bqw?\\\\s*\\\\<',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '\\\\>',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.quoted.other.q-ltgt.perl',\n patterns: [{include: '#nested_ltgt'}]\n },\n {\n begin: '^__\\\\w+__',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.perl'}},\n end: '$',\n endCaptures: {0: {name: 'punctuation.definition.string.end.perl'}},\n name: 'string.unquoted.program-block.perl'\n },\n {\n begin: '\\\\b(format)\\\\s+(\\\\w+)\\\\s*=',\n beginCaptures: {\n 1: {name: 'support.function.perl'},\n 2: {name: 'entity.name.function.format.perl'}\n },\n end: '^\\\\.\\\\s*$',\n name: 'meta.format.perl',\n patterns: [{include: '#line_comment'}, {include: '#variable'}]\n },\n {\n captures: {\n 1: {name: 'support.function.perl'},\n 2: {name: 'entity.name.function.perl'}\n },\n match: '\\\\b(x)\\\\s*(\\\\d+)\\\\b'\n },\n {\n match:\n '\\\\b(ARGV|DATA|ENV|SIG|STDERR|STDIN|STDOUT|atan2|bind|binmode|bless|caller|chdir|chmod|chomp|chop|chown|chr|chroot|close|closedir|cmp|connect|cos|crypt|dbmclose|dbmopen|defined|delete|dump|each|endgrent|endhostent|endnetent|endprotoent|endpwent|endservent|eof|eq|eval|exec|exists|exp|fcntl|fileno|flock|fork|formline|ge|getc|getgrent|getgrgid|getgrnam|gethostbyaddr|gethostbyname|gethostent|getlogin|getnetbyaddr|getnetbyname|getnetent|getpeername|getpgrp|getppid|getpriority|getprotobyname|getprotobynumber|getprotoent|getpwent|getpwnam|getpwuid|getservbyname|getservbyport|getservent|getsockname|getsockopt|glob|gmtime|grep|gt|hex|import|index|int|ioctl|join|keys|kill|lc|lcfirst|le|length|link|listen|local|localtime|log|lstat|lt|m|map|mkdir|msgctl|msgget|msgrcv|msgsnd|ne|no|oct|open|opendir|ord|pack|pipe|pop|pos|print|printf|push|quotemeta|rand|read|readdir|readlink|recv|ref|rename|reset|reverse|rewinddir|rindex|rmdir|s|say|scalar|seek|seekdir|semctl|semget|semop|send|setgrent|sethostent|setnetent|setpgrp|setpriority|setprotoent|setpwent|setservent|setsockopt|shift|shmctl|shmget|shmread|shmwrite|shutdown|sin|sleep|socket|socketpair|sort|splice|split|sprintf|sqrt|srand|stat|study|substr|symlink|syscall|sysopen|sysread|system|syswrite|tell|telldir|tie|tied|time|times|tr|truncate|uc|ucfirst|umask|undef|unlink|unpack|unshift|untie|utime|values|vec|waitpid|wantarray|warn|write|y)\\\\b',\n name: 'support.function.perl'\n },\n {\n captures: {\n 1: {name: 'punctuation.section.scope.begin.perl'},\n 2: {name: 'punctuation.section.scope.end.perl'}\n },\n match: '(\\\\{)(\\\\})'\n },\n {\n captures: {\n 1: {name: 'punctuation.section.scope.begin.perl'},\n 2: {name: 'punctuation.section.scope.end.perl'}\n },\n match: '(\\\\()(\\\\))'\n }\n ],\n repository: {\n escaped_char: {\n patterns: [\n {match: '\\\\\\\\\\\\d+', name: 'constant.character.escape.perl'},\n {match: '\\\\\\\\c[^\\\\s\\\\\\\\]', name: 'constant.character.escape.perl'},\n {\n match: '\\\\\\\\g(?:\\\\{(?:\\\\w*|-\\\\d+)\\\\}|\\\\d+)',\n name: 'constant.character.escape.perl'\n },\n {\n match: \"\\\\\\\\k(?:\\\\{\\\\w*\\\\}|<\\\\w*>|'\\\\w*')\",\n name: 'constant.character.escape.perl'\n },\n {match: '\\\\\\\\N\\\\{[^\\\\}]*\\\\}', name: 'constant.character.escape.perl'},\n {match: '\\\\\\\\o\\\\{\\\\d*\\\\}', name: 'constant.character.escape.perl'},\n {\n match: '\\\\\\\\(?:p|P)(?:\\\\{\\\\w*\\\\}|P)',\n name: 'constant.character.escape.perl'\n },\n {\n match: '\\\\\\\\x(?:[0-9a-zA-Z]{2}|\\\\{\\\\w*\\\\})?',\n name: 'constant.character.escape.perl'\n },\n {match: '\\\\\\\\.', name: 'constant.character.escape.perl'}\n ]\n },\n heredoc: {\n patterns: [\n {\n begin: \"((((<<(~)?) *')(HTML)(')))(.*)\\\\n?\",\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.raw.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.raw.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.raw.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.html',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'text.html.basic',\n patterns: [{include: 'text.html.basic'}]\n }\n ]\n },\n {\n begin: \"((((<<(~)?) *')(XML)(')))(.*)\\\\n?\",\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.raw.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.raw.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.raw.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.xml',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'text.xml',\n patterns: [{include: 'text.xml'}]\n }\n ]\n },\n {\n begin: \"((((<<(~)?) *')(CSS)(')))(.*)\\\\n?\",\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.raw.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.raw.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.raw.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.css',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.css',\n patterns: [{include: 'source.css'}]\n }\n ]\n },\n {\n begin: \"((((<<(~)?) *')(JAVASCRIPT)(')))(.*)\\\\n?\",\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.raw.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.raw.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.raw.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.js',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.js',\n patterns: [{include: 'source.js'}]\n }\n ]\n },\n {\n begin: \"((((<<(~)?) *')(SQL)(')))(.*)\\\\n?\",\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.raw.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.raw.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.raw.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.sql',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.sql',\n patterns: [{include: 'source.sql'}]\n }\n ]\n },\n {\n begin: \"((((<<(~)?) *')(POSTSCRIPT)(')))(.*)\\\\n?\",\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.raw.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.raw.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.raw.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.postscript',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.postscript',\n patterns: [{include: 'source.postscript'}]\n }\n ]\n },\n {\n begin: \"((((<<(~)?) *')([^']*)(')))(.*)\\\\n?\",\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.raw.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.raw.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.raw.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n }\n },\n {\n begin:\n '((((<<(~)?) *\\\\\\\\)((?![=\\\\d\\\\$\\\\( ])[^;,\\'\"`\\\\s\\\\)]*)()))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.raw.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.raw.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.raw.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n }\n },\n {\n begin: '((((<<(~)?) *\")(HTML)(\")))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.html',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'text.html.basic',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'text.html.basic'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *\")(XML)(\")))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.xml',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'text.xml',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'text.xml'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *\")(CSS)(\")))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.css',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.css',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'source.css'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *\")(JAVASCRIPT)(\")))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.js',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.js',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'source.js'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *\")(SQL)(\")))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.sql',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.sql',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'source.sql'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *\")(POSTSCRIPT)(\")))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.postscript',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.postscript',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'source.postscript'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *\")([^\"]*)(\")))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n patterns: [{include: '#escaped_char'}, {include: '#variable'}]\n },\n {\n begin: '((((<<(~)?) *)(HTML)()))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.html',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'text.html.basic',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'text.html.basic'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *)(XML)()))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.xml',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'text.xml',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'text.xml'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *)(CSS)()))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.css',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.css',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'source.css'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *)(JAVASCRIPT)()))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.js',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.js',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'source.js'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *)(SQL)()))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.sql',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.sql',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'source.sql'}\n ]\n }\n ]\n },\n {\n begin: '((((<<(~)?) *)(POSTSCRIPT)()))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n name: 'meta.embedded.block.postscript',\n patterns: [\n {\n begin: '^',\n end: '\\\\n',\n name: 'source.postscript',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: 'source.postscript'}\n ]\n }\n ]\n },\n {\n begin:\n '((((<<(~)?) *)((?![=\\\\d\\\\$\\\\( ])[^;,\\'\"`\\\\s\\\\)]*)()))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.interpolated.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n patterns: [{include: '#escaped_char'}, {include: '#variable'}]\n },\n {\n begin: '((((<<(~)?) *`)([^`]*)(`)))(.*)\\\\n?',\n beginCaptures: {\n 1: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 2: {name: 'punctuation.definition.string.begin.perl'},\n 3: {name: 'punctuation.definition.delimiter.begin.perl'},\n 7: {name: 'punctuation.definition.delimiter.end.perl'},\n 8: {patterns: [{include: '$self'}]}\n },\n contentName: 'string.unquoted.heredoc.shell.perl',\n end: '^((?!\\\\5)\\\\s+)?((\\\\6))$',\n endCaptures: {\n 2: {name: 'string.unquoted.heredoc.interpolated.perl'},\n 3: {name: 'punctuation.definition.string.end.perl'}\n },\n patterns: [{include: '#escaped_char'}, {include: '#variable'}]\n }\n ]\n },\n line_comment: {\n patterns: [\n {\n begin: '(^[ \\\\t]+)?(?=#)',\n beginCaptures: {\n 1: {name: 'punctuation.whitespace.comment.leading.perl'}\n },\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '#',\n beginCaptures: {0: {name: 'punctuation.definition.comment.perl'}},\n end: '\\\\n',\n name: 'comment.line.number-sign.perl'\n }\n ]\n }\n ]\n },\n nested_braces: {\n begin: '\\\\{',\n captures: {1: {name: 'punctuation.section.scope.perl'}},\n end: '\\\\}',\n patterns: [{include: '#escaped_char'}, {include: '#nested_braces'}]\n },\n nested_braces_interpolated: {\n begin: '\\\\{',\n captures: {1: {name: 'punctuation.section.scope.perl'}},\n end: '\\\\}',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_braces_interpolated'}\n ]\n },\n nested_brackets: {\n begin: '\\\\[',\n captures: {1: {name: 'punctuation.section.scope.perl'}},\n end: '\\\\]',\n patterns: [{include: '#escaped_char'}, {include: '#nested_brackets'}]\n },\n nested_brackets_interpolated: {\n begin: '\\\\[',\n captures: {1: {name: 'punctuation.section.scope.perl'}},\n end: '\\\\]',\n patterns: [\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_brackets_interpolated'}\n ]\n },\n nested_ltgt: {\n begin: '<',\n captures: {1: {name: 'punctuation.section.scope.perl'}},\n end: '>',\n patterns: [{include: '#nested_ltgt'}]\n },\n nested_ltgt_interpolated: {\n begin: '<',\n captures: {1: {name: 'punctuation.section.scope.perl'}},\n end: '>',\n patterns: [{include: '#variable'}, {include: '#nested_ltgt_interpolated'}]\n },\n nested_parens: {\n begin: '\\\\(',\n captures: {1: {name: 'punctuation.section.scope.perl'}},\n end: '\\\\)',\n patterns: [{include: '#escaped_char'}, {include: '#nested_parens'}]\n },\n nested_parens_interpolated: {\n begin: '\\\\(',\n captures: {1: {name: 'punctuation.section.scope.perl'}},\n end: '\\\\)',\n patterns: [\n {\n match: \"\\\\$(?=[^\\\\s\\\\w'\\\\{\\\\[\\\\(\\\\<])\",\n name: 'keyword.control.anchor.perl'\n },\n {include: '#escaped_char'},\n {include: '#variable'},\n {include: '#nested_parens_interpolated'}\n ]\n },\n pod: {\n patterns: [\n {match: '^=(pod|back|cut)\\\\b', name: 'storage.type.class.pod.perl'},\n {\n begin: '^(=begin)\\\\s+(html)\\\\s*$',\n beginCaptures: {\n 1: {name: 'storage.type.class.pod.perl'},\n 2: {name: 'variable.other.pod.perl'}\n },\n contentName: 'text.embedded.html.basic',\n end: '^(=end)\\\\s+(html)|^(?==cut)',\n endCaptures: {\n 1: {name: 'storage.type.class.pod.perl'},\n 2: {name: 'variable.other.pod.perl'}\n },\n name: 'meta.embedded.pod.perl',\n patterns: [{include: 'text.html.basic'}]\n },\n {\n captures: {\n 1: {name: 'storage.type.class.pod.perl'},\n 2: {\n name: 'variable.other.pod.perl',\n patterns: [{include: '#pod-formatting'}]\n }\n },\n match: '^(=(?:head[1-4]|item|over|encoding|begin|end|for))\\\\b\\\\s*(.*)'\n },\n {include: '#pod-formatting'}\n ]\n },\n 'pod-formatting': {\n patterns: [\n {\n captures: {\n 1: {name: 'markup.italic.pod.perl'},\n 2: {name: 'markup.italic.pod.perl'}\n },\n match: 'I(?:<([^<>]+)>|<+(\\\\s+(?:(?|[^>])+\\\\s+)>+)',\n name: 'entity.name.type.instance.pod.perl'\n },\n {\n captures: {\n 1: {name: 'markup.bold.pod.perl'},\n 2: {name: 'markup.bold.pod.perl'}\n },\n match: 'B(?:<([^<>]+)>|<+(\\\\s+(?:(?|[^>])+\\\\s+)>+)',\n name: 'entity.name.type.instance.pod.perl'\n },\n {\n captures: {\n 1: {name: 'markup.raw.pod.perl'},\n 2: {name: 'markup.raw.pod.perl'}\n },\n match: 'C(?:<([^<>]+)>|<+(\\\\\\\\s+(?:(?|[^>])+\\\\\\\\s+)>+)',\n name: 'entity.name.type.instance.pod.perl'\n },\n {\n captures: {1: {name: 'markup.underline.link.hyperlink.pod.perl'}},\n match: 'L<([^>]+)>',\n name: 'entity.name.type.instance.pod.perl'\n },\n {match: '[EFSXZ]<[^>]*>', name: 'entity.name.type.instance.pod.perl'}\n ]\n },\n variable: {\n patterns: [\n {\n captures: {1: {name: 'punctuation.definition.variable.perl'}},\n match: '(\\\\$)&(?![A-Za-z0-9_])',\n name: 'variable.other.regexp.match.perl'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.perl'}},\n match: '(\\\\$)`(?![A-Za-z0-9_])',\n name: 'variable.other.regexp.pre-match.perl'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.perl'}},\n match: \"(\\\\$)'(?![A-Za-z0-9_])\",\n name: 'variable.other.regexp.post-match.perl'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.perl'}},\n match: '(\\\\$)\\\\+(?![A-Za-z0-9_])',\n name: 'variable.other.regexp.last-paren-match.perl'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.perl'}},\n match: '(\\\\$)\"(?![A-Za-z0-9_])',\n name: 'variable.other.readwrite.list-separator.perl'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.perl'}},\n match: '(\\\\$)0(?![A-Za-z0-9_])',\n name: 'variable.other.predefined.program-name.perl'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.perl'}},\n match:\n '(\\\\$)[_ab\\\\*\\\\.\\\\/\\\\|,\\\\\\\\;#%=\\\\-~^:?!\\\\$<>\\\\(\\\\)\\\\[\\\\]@](?![A-Za-z0-9_])',\n name: 'variable.other.predefined.perl'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.perl'}},\n match: '(\\\\$)[0-9]+(?![A-Za-z0-9_])',\n name: 'variable.other.subpattern.perl'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.perl'}},\n match:\n '([\\\\$\\\\@\\\\%](#)?)([a-zA-Zx7f-xff\\\\$]|::)([a-zA-Z0-9_x7f-xff\\\\$]|::)*\\\\b',\n name: 'variable.other.readwrite.global.perl'\n },\n {\n captures: {\n 1: {name: 'punctuation.definition.variable.perl'},\n 2: {name: 'punctuation.definition.variable.perl'}\n },\n match:\n '(\\\\$\\\\{)(?:[a-zA-Zx7f-xff\\\\$]|::)(?:[a-zA-Z0-9_x7f-xff\\\\$]|::)*(\\\\})',\n name: 'variable.other.readwrite.global.perl'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.perl'}},\n match: '([\\\\$\\\\@\\\\%](#)?)[0-9_]\\\\b',\n name: 'variable.other.readwrite.global.special.perl'\n }\n ]\n }\n },\n scopeName: 'source.perl'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [\n '.bzl',\n '.eb',\n '.gyp',\n '.gypi',\n '.lmi',\n '.py',\n '.py3',\n '.pyde',\n '.pyi',\n '.pyp',\n '.pyt',\n '.pyw',\n '.rpy',\n '.sage',\n '.sagews',\n '.smk',\n '.snakefile',\n '.spec',\n '.tac',\n '.wsgi',\n '.xpy',\n '.xsh'\n ],\n names: [\n 'bazel',\n 'bzl',\n 'easybuild',\n 'python',\n 'python3',\n 'rusthon',\n 'sage',\n 'snakefile',\n 'snakemake',\n 'starlark',\n 'xonsh'\n ],\n patterns: [{include: '#statement'}, {include: '#expression'}],\n repository: {\n 'annotated-parameter': {\n begin: '(?x)\\n \\\\b\\n ([[:alpha:]_]\\\\w*) \\\\s* (:)\\n',\n beginCaptures: {\n 1: {name: 'variable.parameter.function.language.python'},\n 2: {name: 'punctuation.separator.annotation.python'}\n },\n end: '(,)|(?=\\\\))',\n endCaptures: {1: {name: 'punctuation.separator.parameters.python'}},\n patterns: [\n {include: '#expression'},\n {match: '=(?!=)', name: 'keyword.operator.assignment.python'}\n ]\n },\n 'assignment-operator': {\n match:\n '(?x)\\n <<= | >>= | //= | \\\\*\\\\*=\\n | \\\\+= | -= | /= | @=\\n | \\\\*= | %= | ~= | \\\\^= | &= | \\\\|=\\n | =(?!=)\\n',\n name: 'keyword.operator.assignment.python'\n },\n backticks: {\n begin: '\\\\`',\n end: '(?:\\\\`|(?))',\n name: 'comment.typehint.punctuation.notation.python'\n },\n {\n match: '([[:alpha:]_]\\\\w*)',\n name: 'comment.typehint.variable.notation.python'\n }\n ]\n },\n {include: '#comments-base'}\n ]\n },\n 'comments-base': {\n begin: '(\\\\#)',\n beginCaptures: {1: {name: 'punctuation.definition.comment.python'}},\n end: '($)',\n name: 'comment.line.number-sign.python',\n patterns: [{include: '#codetags'}]\n },\n 'comments-string-double-three': {\n begin: '(\\\\#)',\n beginCaptures: {1: {name: 'punctuation.definition.comment.python'}},\n end: '($|(?=\"\"\"))',\n name: 'comment.line.number-sign.python',\n patterns: [{include: '#codetags'}]\n },\n 'comments-string-single-three': {\n begin: '(\\\\#)',\n beginCaptures: {1: {name: 'punctuation.definition.comment.python'}},\n end: \"($|(?='''))\",\n name: 'comment.line.number-sign.python',\n patterns: [{include: '#codetags'}]\n },\n 'curly-braces': {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.dict.begin.python'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.dict.end.python'}},\n patterns: [\n {match: ':', name: 'punctuation.separator.dict.python'},\n {include: '#expression'}\n ]\n },\n decorator: {\n begin: '(?x)\\n ^\\\\s*\\n ((@)) \\\\s* (?=[[:alpha:]_]\\\\w*)\\n',\n beginCaptures: {\n 1: {name: 'entity.name.function.decorator.python'},\n 2: {name: 'punctuation.definition.decorator.python'}\n },\n end: '(?x)\\n ( \\\\) )\\n # trailing whitespace and comments are legal\\n (?: (.*?) (?=\\\\s*(?:\\\\#|$)) )\\n | (?=\\\\n|\\\\#)\\n',\n endCaptures: {\n 1: {name: 'punctuation.definition.arguments.end.python'},\n 2: {name: 'invalid.illegal.decorator.python'}\n },\n name: 'meta.function.decorator.python',\n patterns: [{include: '#decorator-name'}, {include: '#function-arguments'}]\n },\n 'decorator-name': {\n patterns: [\n {include: '#builtin-callables'},\n {include: '#illegal-object-name'},\n {\n captures: {2: {name: 'punctuation.separator.period.python'}},\n match: '(?x)\\n ([[:alpha:]_]\\\\w*) | (\\\\.)\\n',\n name: 'entity.name.function.decorator.python'\n },\n {include: '#line-continuation'},\n {\n captures: {1: {name: 'invalid.illegal.decorator.python'}},\n match: '(?x)\\n \\\\s* ([^([:alpha:]\\\\s_\\\\.#\\\\\\\\] .*?) (?=\\\\#|$)\\n',\n name: 'invalid.illegal.decorator.python'\n }\n ]\n },\n docstring: {\n patterns: [\n {\n begin: '(\\\\\\'\\\\\\'\\\\\\'|\\\\\"\\\\\"\\\\\")',\n beginCaptures: {\n 1: {name: 'punctuation.definition.string.begin.python'}\n },\n end: '(\\\\1)',\n endCaptures: {1: {name: 'punctuation.definition.string.end.python'}},\n name: 'string.quoted.docstring.multi.python',\n patterns: [\n {include: '#docstring-prompt'},\n {include: '#codetags'},\n {include: '#docstring-guts-unicode'}\n ]\n },\n {\n begin: '([rR])(\\\\\\'\\\\\\'\\\\\\'|\\\\\"\\\\\"\\\\\")',\n beginCaptures: {\n 1: {name: 'storage.type.string.python'},\n 2: {name: 'punctuation.definition.string.begin.python'}\n },\n end: '(\\\\2)',\n endCaptures: {1: {name: 'punctuation.definition.string.end.python'}},\n name: 'string.quoted.docstring.raw.multi.python',\n patterns: [\n {include: '#string-consume-escape'},\n {include: '#docstring-prompt'},\n {include: '#codetags'}\n ]\n },\n {\n begin: '(\\\\\\'|\\\\\")',\n beginCaptures: {\n 1: {name: 'punctuation.definition.string.begin.python'}\n },\n end: '(\\\\1)|(\\\\n)',\n endCaptures: {\n 1: {name: 'punctuation.definition.string.end.python'},\n 2: {name: 'invalid.illegal.newline.python'}\n },\n name: 'string.quoted.docstring.single.python',\n patterns: [\n {include: '#codetags'},\n {include: '#docstring-guts-unicode'}\n ]\n },\n {\n begin: '([rR])(\\\\\\'|\\\\\")',\n beginCaptures: {\n 1: {name: 'storage.type.string.python'},\n 2: {name: 'punctuation.definition.string.begin.python'}\n },\n end: '(\\\\2)|(\\\\n)',\n endCaptures: {\n 1: {name: 'punctuation.definition.string.end.python'},\n 2: {name: 'invalid.illegal.newline.python'}\n },\n name: 'string.quoted.docstring.raw.single.python',\n patterns: [\n {include: '#string-consume-escape'},\n {include: '#codetags'}\n ]\n }\n ]\n },\n 'docstring-guts-unicode': {\n patterns: [\n {include: '#escape-sequence-unicode'},\n {include: '#escape-sequence'},\n {include: '#string-line-continuation'}\n ]\n },\n 'docstring-prompt': {\n captures: {1: {name: 'keyword.control.flow.python'}},\n match:\n \"(?x)\\n (?:\\n (?:^|\\\\G) \\\\s* (?# '\\\\G' is necessary for ST)\\n ((?:>>>|\\\\.\\\\.\\\\.) \\\\s) (?=\\\\s*\\\\S)\\n )\\n\"\n },\n 'docstring-statement': {\n begin: '^(?=\\\\s*[rR]?(\\\\\\'\\\\\\'\\\\\\'|\\\\\"\\\\\"\\\\\"|\\\\\\'|\\\\\"))',\n end: '((?<=\\\\1)|^)(?!\\\\s*[rR]?(\\\\\\'\\\\\\'\\\\\\'|\\\\\"\\\\\"\\\\\"|\\\\\\'|\\\\\"))',\n patterns: [{include: '#docstring'}]\n },\n 'double-one-regexp-character-set': {\n patterns: [\n {match: '(?x)\\n \\\\[ \\\\^? \\\\] (?! .*?\\\\])\\n'},\n {\n begin: '(\\\\[)(\\\\^)?(\\\\])?',\n beginCaptures: {\n 1: {\n name: 'punctuation.character.set.begin.regexp constant.other.set.regexp'\n },\n 2: {name: 'keyword.operator.negation.regexp'},\n 3: {name: 'constant.character.set.regexp'}\n },\n end: '(\\\\]|(?=\"))|((?=(?)\\n',\n beginCaptures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.named.begin.regexp'\n },\n 2: {name: 'entity.name.tag.named.group.regexp'}\n },\n end: '(\\\\)|(?=\"))|((?=(?)\\n',\n beginCaptures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.named.begin.regexp'\n },\n 2: {name: 'entity.name.tag.named.group.regexp'}\n },\n end: '(\\\\)|(?=\"\"\"))',\n endCaptures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.named.end.regexp'\n },\n 2: {name: 'invalid.illegal.newline.python'}\n },\n name: 'meta.named.regexp',\n patterns: [\n {include: '#double-three-regexp-expression'},\n {include: '#comments-string-double-three'}\n ]\n },\n 'double-three-regexp-parentheses': {\n begin: '\\\\(',\n beginCaptures: {\n 0: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.begin.regexp'\n }\n },\n end: '(\\\\)|(?=\"\"\"))',\n endCaptures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.end.regexp'\n },\n 2: {name: 'invalid.illegal.newline.python'}\n },\n patterns: [\n {include: '#double-three-regexp-expression'},\n {include: '#comments-string-double-three'}\n ]\n },\n 'double-three-regexp-parentheses-non-capturing': {\n begin: '\\\\(\\\\?:',\n beginCaptures: {\n 0: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.non-capturing.begin.regexp'\n }\n },\n end: '(\\\\)|(?=\"\"\"))',\n endCaptures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.non-capturing.end.regexp'\n },\n 2: {name: 'invalid.illegal.newline.python'}\n },\n patterns: [\n {include: '#double-three-regexp-expression'},\n {include: '#comments-string-double-three'}\n ]\n },\n ellipsis: {match: '\\\\.\\\\.\\\\.', name: 'constant.other.ellipsis.python'},\n 'escape-sequence': {\n match:\n '(?x)\\n \\\\\\\\ (\\n x[0-9A-Fa-f]{2}\\n | [0-7]{1,3}\\n | [\\\\\\\\\"\\'abfnrtv]\\n )\\n',\n name: 'constant.character.escape.python'\n },\n 'escape-sequence-unicode': {\n patterns: [\n {\n match:\n '(?x)\\n \\\\\\\\ (\\n u[0-9A-Fa-f]{4}\\n | U[0-9A-Fa-f]{8}\\n | N\\\\{[\\\\w\\\\s]+?\\\\}\\n )\\n',\n name: 'constant.character.escape.python'\n }\n ]\n },\n expression: {\n patterns: [\n {include: '#expression-base'},\n {include: '#member-access'},\n {match: '(?x) \\\\b ([[:alpha:]_]\\\\w*) \\\\b'}\n ]\n },\n 'expression-bare': {\n patterns: [\n {include: '#backticks'},\n {include: '#illegal-anno'},\n {include: '#literal'},\n {include: '#regexp'},\n {include: '#string'},\n {include: '#lambda'},\n {include: '#generator'},\n {include: '#illegal-operator'},\n {include: '#operator'},\n {include: '#curly-braces'},\n {include: '#item-access'},\n {include: '#list'},\n {include: '#odd-function-call'},\n {include: '#round-braces'},\n {include: '#function-call'},\n {include: '#builtin-functions'},\n {include: '#builtin-types'},\n {include: '#builtin-exceptions'},\n {include: '#magic-names'},\n {include: '#special-names'},\n {include: '#illegal-names'},\n {include: '#special-variables'},\n {include: '#ellipsis'},\n {include: '#punctuation'},\n {include: '#line-continuation'}\n ]\n },\n 'expression-base': {\n patterns: [\n {include: '#comments'},\n {include: '#expression-bare'},\n {include: '#line-continuation'}\n ]\n },\n 'f-expression': {\n patterns: [\n {include: '#expression-bare'},\n {include: '#member-access'},\n {match: '(?x) \\\\b ([[:alpha:]_]\\\\w*) \\\\b'}\n ]\n },\n 'fregexp-base-expression': {\n patterns: [\n {include: '#fregexp-quantifier'},\n {include: '#fstring-formatting-braces'},\n {match: '\\\\{.*?\\\\}'},\n {include: '#regexp-base-common'}\n ]\n },\n 'fregexp-quantifier': {\n match: '(?x)\\n \\\\{\\\\{(\\n \\\\d+ | \\\\d+,(\\\\d+)? | ,\\\\d+\\n )\\\\}\\\\}\\n',\n name: 'keyword.operator.quantifier.regexp'\n },\n 'fstring-fnorm-quoted-multi-line': {\n begin: '(\\\\b[fF])([bBuU])?(\\'\\'\\'|\"\"\")',\n beginCaptures: {\n 1: {\n name: 'string.interpolated.python string.quoted.multi.python storage.type.string.python'\n },\n 2: {name: 'invalid.illegal.prefix.python'},\n 3: {\n name: 'punctuation.definition.string.begin.python string.interpolated.python string.quoted.multi.python'\n }\n },\n end: '(\\\\3)',\n endCaptures: {\n 1: {\n name: 'punctuation.definition.string.end.python string.interpolated.python string.quoted.multi.python'\n },\n 2: {name: 'invalid.illegal.newline.python'}\n },\n name: 'meta.fstring.python',\n patterns: [\n {include: '#fstring-guts'},\n {include: '#fstring-illegal-multi-brace'},\n {include: '#fstring-multi-brace'},\n {include: '#fstring-multi-core'}\n ]\n },\n 'fstring-fnorm-quoted-single-line': {\n begin: '(\\\\b[fF])([bBuU])?(([\\'\"]))',\n beginCaptures: {\n 1: {\n name: 'string.interpolated.python string.quoted.single.python storage.type.string.python'\n },\n 2: {name: 'invalid.illegal.prefix.python'},\n 3: {\n name: 'punctuation.definition.string.begin.python string.interpolated.python string.quoted.single.python'\n }\n },\n end: '(\\\\3)|((?=^]? [-+ ]? \\\\#?\\n \\\\d* ,? (\\\\.\\\\d+)? [bcdeEfFgGnosxX%]? )(?=})\\n'\n },\n {include: '#fstring-terminator-multi-tail'}\n ]\n },\n 'fstring-terminator-multi-tail': {\n begin: '((?:=?)(?:![rsa])?)(:)(?=.*?{)',\n beginCaptures: {\n 1: {name: 'storage.type.format.python'},\n 2: {name: 'storage.type.format.python'}\n },\n end: '(?=})',\n patterns: [\n {include: '#fstring-illegal-multi-brace'},\n {include: '#fstring-multi-brace'},\n {match: '([bcdeEfFgGnosxX%])(?=})', name: 'storage.type.format.python'},\n {match: '(\\\\.\\\\d+)', name: 'storage.type.format.python'},\n {match: '(,)', name: 'storage.type.format.python'},\n {match: '(\\\\d+)', name: 'storage.type.format.python'},\n {match: '(\\\\#)', name: 'storage.type.format.python'},\n {match: '([-+ ])', name: 'storage.type.format.python'},\n {match: '([<>=^])', name: 'storage.type.format.python'},\n {match: '(\\\\w)', name: 'storage.type.format.python'}\n ]\n },\n 'fstring-terminator-single': {\n patterns: [\n {match: '(=(![rsa])?)(?=})', name: 'storage.type.format.python'},\n {match: '(=?![rsa])(?=})', name: 'storage.type.format.python'},\n {\n captures: {\n 1: {name: 'storage.type.format.python'},\n 2: {name: 'storage.type.format.python'}\n },\n match:\n '(?x)\\n ( (?: =?) (?: ![rsa])? )\\n ( : \\\\w? [<>=^]? [-+ ]? \\\\#?\\n \\\\d* ,? (\\\\.\\\\d+)? [bcdeEfFgGnosxX%]? )(?=})\\n'\n },\n {include: '#fstring-terminator-single-tail'}\n ]\n },\n 'fstring-terminator-single-tail': {\n begin: '((?:=?)(?:![rsa])?)(:)(?=.*?{)',\n beginCaptures: {\n 1: {name: 'storage.type.format.python'},\n 2: {name: 'storage.type.format.python'}\n },\n end: '(?=})|(?=\\\\n)',\n patterns: [\n {include: '#fstring-illegal-single-brace'},\n {include: '#fstring-single-brace'},\n {match: '([bcdeEfFgGnosxX%])(?=})', name: 'storage.type.format.python'},\n {match: '(\\\\.\\\\d+)', name: 'storage.type.format.python'},\n {match: '(,)', name: 'storage.type.format.python'},\n {match: '(\\\\d+)', name: 'storage.type.format.python'},\n {match: '(\\\\#)', name: 'storage.type.format.python'},\n {match: '([-+ ])', name: 'storage.type.format.python'},\n {match: '([<>=^])', name: 'storage.type.format.python'},\n {match: '(\\\\w)', name: 'storage.type.format.python'}\n ]\n },\n 'function-arguments': {\n begin: '(\\\\()',\n beginCaptures: {\n 1: {name: 'punctuation.definition.arguments.begin.python'}\n },\n contentName: 'meta.function-call.arguments.python',\n end: '(?=\\\\))(?!\\\\)\\\\s*\\\\()',\n patterns: [\n {match: '(,)', name: 'punctuation.separator.arguments.python'},\n {\n captures: {1: {name: 'keyword.operator.unpacking.arguments.python'}},\n match: '(?x)\\n (?:(?<=[,(])|^) \\\\s* (\\\\*{1,2})\\n'\n },\n {include: '#lambda-incomplete'},\n {include: '#illegal-names'},\n {\n captures: {\n 1: {name: 'variable.parameter.function-call.python'},\n 2: {name: 'keyword.operator.assignment.python'}\n },\n match: '\\\\b([[:alpha:]_]\\\\w*)\\\\s*(=)(?!=)'\n },\n {match: '=(?!=)', name: 'keyword.operator.assignment.python'},\n {include: '#expression'},\n {\n captures: {\n 1: {name: 'punctuation.definition.arguments.end.python'},\n 2: {name: 'punctuation.definition.arguments.begin.python'}\n },\n match: '\\\\s*(\\\\))\\\\s*(\\\\()'\n }\n ]\n },\n 'function-call': {\n begin: '(?x)\\n \\\\b(?=\\n ([[:alpha:]_]\\\\w*) \\\\s* (\\\\()\\n )\\n',\n end: '(\\\\))',\n endCaptures: {1: {name: 'punctuation.definition.arguments.end.python'}},\n name: 'meta.function-call.python',\n patterns: [\n {include: '#special-variables'},\n {include: '#function-name'},\n {include: '#function-arguments'}\n ]\n },\n 'function-declaration': {\n begin:\n '(?x)\\n \\\\s*\\n (?:\\\\b(async) \\\\s+)? \\\\b(def)\\\\s+\\n (?=\\n [[:alpha:]_][[:word:]]* \\\\s* \\\\(\\n )\\n',\n beginCaptures: {\n 1: {name: 'storage.type.function.async.python'},\n 2: {name: 'storage.type.function.python'}\n },\n end: '(:|(?=[#\\'\"\\\\n]))',\n endCaptures: {1: {name: 'punctuation.section.function.begin.python'}},\n name: 'meta.function.python',\n patterns: [\n {include: '#function-def-name'},\n {include: '#parameters'},\n {include: '#line-continuation'},\n {include: '#return-annotation'}\n ]\n },\n 'function-def-name': {\n patterns: [\n {include: '#illegal-object-name'},\n {include: '#builtin-possible-callables'},\n {\n match: '(?x)\\n \\\\b ([[:alpha:]_]\\\\w*) \\\\b\\n',\n name: 'entity.name.function.python'\n }\n ]\n },\n 'function-name': {\n patterns: [\n {include: '#builtin-possible-callables'},\n {\n match: '(?x)\\n \\\\b ([[:alpha:]_]\\\\w*) \\\\b\\n',\n name: 'meta.function-call.generic.python'\n }\n ]\n },\n generator: {\n begin: '\\\\bfor\\\\b',\n beginCaptures: {0: {name: 'keyword.control.flow.python'}},\n end: '\\\\bin\\\\b',\n endCaptures: {0: {name: 'keyword.control.flow.python'}},\n patterns: [{include: '#expression'}]\n },\n 'illegal-anno': {match: '->', name: 'invalid.illegal.annotation.python'},\n 'illegal-names': {\n captures: {\n 1: {name: 'keyword.control.flow.python'},\n 2: {name: 'keyword.control.import.python'}\n },\n match:\n '(?x)\\n \\\\b(?:\\n (\\n and | assert | async | await | break | class | continue | def\\n | del | elif | else | except | finally | for | from | global\\n | if | in | is | (?<=\\\\.)lambda | lambda(?=\\\\s*[\\\\.=])\\n | nonlocal | not | or | pass | raise | return | try | while | with\\n | yield\\n ) | (\\n as | import\\n )\\n )\\\\b\\n'\n },\n 'illegal-object-name': {\n match: '\\\\b(True|False|None)\\\\b',\n name: 'keyword.illegal.name.python'\n },\n 'illegal-operator': {\n patterns: [\n {match: '&&|\\\\|\\\\||--|\\\\+\\\\+', name: 'invalid.illegal.operator.python'},\n {match: '[?$]', name: 'invalid.illegal.operator.python'},\n {match: '!\\\\b', name: 'invalid.illegal.operator.python'}\n ]\n },\n import: {\n patterns: [\n {\n begin: '\\\\b(?> | & | \\\\| | \\\\^ | ~) (?# 3)\\n\\n | (\\\\*\\\\* | \\\\* | \\\\+ | - | % | // | / | @) (?# 4)\\n\\n | (!= | == | >= | <= | < | >) (?# 5)\\n\\n | (:=) (?# 6)\\n'\n },\n 'parameter-special': {\n captures: {\n 1: {name: 'variable.parameter.function.language.python'},\n 2: {name: 'variable.parameter.function.language.special.self.python'},\n 3: {name: 'variable.parameter.function.language.special.cls.python'},\n 4: {name: 'punctuation.separator.parameters.python'}\n },\n match: '(?x)\\n \\\\b ((self)|(cls)) \\\\b \\\\s*(?:(,)|(?=\\\\)))\\n'\n },\n parameters: {\n begin: '(\\\\()',\n beginCaptures: {\n 1: {name: 'punctuation.definition.parameters.begin.python'}\n },\n end: '(\\\\))',\n endCaptures: {1: {name: 'punctuation.definition.parameters.end.python'}},\n name: 'meta.function.parameters.python',\n patterns: [\n {match: '/', name: 'keyword.operator.positional.parameter.python'},\n {\n match: '(\\\\*\\\\*|\\\\*)',\n name: 'keyword.operator.unpacking.parameter.python'\n },\n {include: '#lambda-incomplete'},\n {include: '#illegal-names'},\n {include: '#illegal-object-name'},\n {include: '#parameter-special'},\n {\n captures: {\n 1: {name: 'variable.parameter.function.language.python'},\n 2: {name: 'punctuation.separator.parameters.python'}\n },\n match:\n '(?x)\\n ([[:alpha:]_]\\\\w*)\\n \\\\s* (?: (,) | (?=[)#\\\\n=]))\\n'\n },\n {include: '#comments'},\n {include: '#loose-default'},\n {include: '#annotated-parameter'}\n ]\n },\n punctuation: {\n patterns: [\n {match: ':', name: 'punctuation.separator.colon.python'},\n {match: ',', name: 'punctuation.separator.element.python'}\n ]\n },\n regexp: {\n patterns: [\n {include: '#regexp-single-three-line'},\n {include: '#regexp-double-three-line'},\n {include: '#regexp-single-one-line'},\n {include: '#regexp-double-one-line'}\n ]\n },\n 'regexp-backreference': {\n captures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.backreference.named.begin.regexp'\n },\n 2: {name: 'entity.name.tag.named.backreference.regexp'},\n 3: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.backreference.named.end.regexp'\n }\n },\n match: '(?x)\\n (\\\\() (\\\\?P= \\\\w+(?:\\\\s+[[:alnum:]]+)?) (\\\\))\\n',\n name: 'meta.backreference.named.regexp'\n },\n 'regexp-backreference-number': {\n captures: {1: {name: 'entity.name.tag.backreference.regexp'}},\n match: '(\\\\\\\\[1-9]\\\\d?)',\n name: 'meta.backreference.regexp'\n },\n 'regexp-base-common': {\n patterns: [\n {match: '\\\\.', name: 'support.other.match.any.regexp'},\n {match: '\\\\^', name: 'support.other.match.begin.regexp'},\n {match: '\\\\$', name: 'support.other.match.end.regexp'},\n {match: '[+*?]\\\\??', name: 'keyword.operator.quantifier.regexp'},\n {match: '\\\\|', name: 'keyword.operator.disjunction.regexp'},\n {include: '#regexp-escape-sequence'}\n ]\n },\n 'regexp-base-expression': {\n patterns: [\n {include: '#regexp-quantifier'},\n {include: '#regexp-base-common'}\n ]\n },\n 'regexp-charecter-set-escapes': {\n patterns: [\n {match: '\\\\\\\\[abfnrtv\\\\\\\\]', name: 'constant.character.escape.regexp'},\n {include: '#regexp-escape-special'},\n {match: '\\\\\\\\([0-7]{1,3})', name: 'constant.character.escape.regexp'},\n {include: '#regexp-escape-character'},\n {include: '#regexp-escape-unicode'},\n {include: '#regexp-escape-catchall'}\n ]\n },\n 'regexp-double-one-line': {\n begin: '\\\\b(([uU]r)|([bB]r)|(r[bB]?))(\")',\n beginCaptures: {\n 2: {name: 'invalid.deprecated.prefix.python'},\n 3: {name: 'storage.type.string.python'},\n 4: {name: 'storage.type.string.python'},\n 5: {name: 'punctuation.definition.string.begin.python'}\n },\n end: '(\")|(?)',\n beginCaptures: {\n 1: {name: 'punctuation.separator.annotation.result.python'}\n },\n end: '(?=:)',\n patterns: [{include: '#expression'}]\n },\n 'round-braces': {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.parenthesis.begin.python'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.parenthesis.end.python'}},\n patterns: [{include: '#expression'}]\n },\n semicolon: {\n patterns: [{match: '\\\\;$', name: 'invalid.deprecated.semicolon.python'}]\n },\n 'single-one-regexp-character-set': {\n patterns: [\n {match: '(?x)\\n \\\\[ \\\\^? \\\\] (?! .*?\\\\])\\n'},\n {\n begin: '(\\\\[)(\\\\^)?(\\\\])?',\n beginCaptures: {\n 1: {\n name: 'punctuation.character.set.begin.regexp constant.other.set.regexp'\n },\n 2: {name: 'keyword.operator.negation.regexp'},\n 3: {name: 'constant.character.set.regexp'}\n },\n end: \"(\\\\]|(?=\\\\'))|((?=(?)\\n',\n beginCaptures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.named.begin.regexp'\n },\n 2: {name: 'entity.name.tag.named.group.regexp'}\n },\n end: \"(\\\\)|(?=\\\\'))|((?=(?)\\n',\n beginCaptures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.named.begin.regexp'\n },\n 2: {name: 'entity.name.tag.named.group.regexp'}\n },\n end: \"(\\\\)|(?=\\\\'\\\\'\\\\'))\",\n endCaptures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.named.end.regexp'\n },\n 2: {name: 'invalid.illegal.newline.python'}\n },\n name: 'meta.named.regexp',\n patterns: [\n {include: '#single-three-regexp-expression'},\n {include: '#comments-string-single-three'}\n ]\n },\n 'single-three-regexp-parentheses': {\n begin: '\\\\(',\n beginCaptures: {\n 0: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.begin.regexp'\n }\n },\n end: \"(\\\\)|(?=\\\\'\\\\'\\\\'))\",\n endCaptures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.end.regexp'\n },\n 2: {name: 'invalid.illegal.newline.python'}\n },\n patterns: [\n {include: '#single-three-regexp-expression'},\n {include: '#comments-string-single-three'}\n ]\n },\n 'single-three-regexp-parentheses-non-capturing': {\n begin: '\\\\(\\\\?:',\n beginCaptures: {\n 0: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.non-capturing.begin.regexp'\n }\n },\n end: \"(\\\\)|(?=\\\\'\\\\'\\\\'))\",\n endCaptures: {\n 1: {\n name: 'support.other.parenthesis.regexp punctuation.parenthesis.non-capturing.end.regexp'\n },\n 2: {name: 'invalid.illegal.newline.python'}\n },\n patterns: [\n {include: '#single-three-regexp-expression'},\n {include: '#comments-string-single-three'}\n ]\n },\n 'special-names': {\n match:\n '(?x)\\n \\\\b\\n # we want to see \"enough\", meaning 2 or more upper-case\\n # letters in the beginning of the constant\\n #\\n # for more details refer to:\\n # https://github.com/MagicStack/MagicPython/issues/42\\n (\\n _* [[:upper:]] [_\\\\d]* [[:upper:]]\\n )\\n [[:upper:]\\\\d]* (_\\\\w*)?\\n \\\\b\\n',\n name: 'constant.other.caps.python'\n },\n 'special-variables': {\n captures: {\n 1: {name: 'variable.language.special.self.python'},\n 2: {name: 'variable.language.special.cls.python'}\n },\n match: '(?x)\\n \\\\b (?=^]? [-+ ]? \\\\#?\\n \\\\d* ,? (\\\\.\\\\d+)? [bcdeEfFgGnosxX%]? )?\\n })\\n )\\n',\n name: 'meta.format.brace.python'\n },\n {\n captures: {\n 1: {name: 'constant.character.format.placeholder.other.python'},\n 3: {name: 'storage.type.format.python'},\n 4: {name: 'storage.type.format.python'}\n },\n match:\n '(?x)\\n (\\n {\\n \\\\w* (\\\\.[[:alpha:]_]\\\\w* | \\\\[[^\\\\]\\'\"]+\\\\])*\\n (![rsa])?\\n (:)\\n [^\\'\"{}\\\\n]* (?:\\n \\\\{ [^\\'\"}\\\\n]*? \\\\} [^\\'\"{}\\\\n]*\\n )*\\n }\\n )\\n',\n name: 'meta.format.brace.python'\n }\n ]\n },\n 'string-consume-escape': {match: '\\\\\\\\[\\'\"\\\\n\\\\\\\\]'},\n 'string-entity': {\n patterns: [\n {include: '#escape-sequence'},\n {include: '#string-line-continuation'},\n {include: '#string-formatting'}\n ]\n },\n 'string-formatting': {\n captures: {\n 1: {name: 'constant.character.format.placeholder.other.python'}\n },\n match:\n '(?x)\\n (\\n % (\\\\([\\\\w\\\\s]*\\\\))?\\n [-+#0 ]*\\n (\\\\d+|\\\\*)? (\\\\.(\\\\d+|\\\\*))?\\n ([hlL])?\\n [diouxXeEfFgGcrsab%]\\n )\\n',\n name: 'meta.format.percent.python'\n },\n 'string-line-continuation': {\n match: '\\\\\\\\$',\n name: 'constant.language.python'\n },\n 'string-multi-bad-brace1-formatting-raw': {\n begin:\n '(?x)\\n (?= \\\\{%\\n ( .*? (?!\\'\\'\\'|\"\"\") )\\n %\\\\}\\n )\\n',\n end: '(?=\\'\\'\\'|\"\"\")',\n patterns: [{include: '#string-consume-escape'}]\n },\n 'string-multi-bad-brace1-formatting-unicode': {\n begin:\n '(?x)\\n (?= \\\\{%\\n ( .*? (?!\\'\\'\\'|\"\"\") )\\n %\\\\}\\n )\\n',\n end: '(?=\\'\\'\\'|\"\"\")',\n patterns: [\n {include: '#escape-sequence-unicode'},\n {include: '#escape-sequence'},\n {include: '#string-line-continuation'}\n ]\n },\n 'string-multi-bad-brace2-formatting-raw': {\n begin:\n '(?x)\\n (?!\\\\{\\\\{)\\n (?= \\\\{ (\\n \\\\w*? (?!\\'\\'\\'|\"\"\") [^!:\\\\.\\\\[}\\\\w]\\n )\\n .*?(?!\\'\\'\\'|\"\"\")\\n \\\\}\\n )\\n',\n end: '(?=\\'\\'\\'|\"\"\")',\n patterns: [\n {include: '#string-consume-escape'},\n {include: '#string-formatting'}\n ]\n },\n 'string-multi-bad-brace2-formatting-unicode': {\n begin:\n '(?x)\\n (?!\\\\{\\\\{)\\n (?= \\\\{ (\\n \\\\w*? (?!\\'\\'\\'|\"\"\") [^!:\\\\.\\\\[}\\\\w]\\n )\\n .*?(?!\\'\\'\\'|\"\"\")\\n \\\\}\\n )\\n',\n end: '(?=\\'\\'\\'|\"\"\")',\n patterns: [\n {include: '#escape-sequence-unicode'},\n {include: '#string-entity'}\n ]\n },\n 'string-quoted-multi-line': {\n begin: '(?:\\\\b([rR])(?=[uU]))?([uU])?(\\'\\'\\'|\"\"\")',\n beginCaptures: {\n 1: {name: 'invalid.illegal.prefix.python'},\n 2: {name: 'storage.type.string.python'},\n 3: {name: 'punctuation.definition.string.begin.python'}\n },\n end: '(\\\\3)',\n endCaptures: {\n 1: {name: 'punctuation.definition.string.end.python'},\n 2: {name: 'invalid.illegal.newline.python'}\n },\n name: 'string.quoted.multi.python',\n patterns: [\n {include: '#string-multi-bad-brace1-formatting-unicode'},\n {include: '#string-multi-bad-brace2-formatting-unicode'},\n {include: '#string-unicode-guts'}\n ]\n },\n 'string-quoted-single-line': {\n begin: '(?:\\\\b([rR])(?=[uU]))?([uU])?(([\\'\"]))',\n beginCaptures: {\n 1: {name: 'invalid.illegal.prefix.python'},\n 2: {name: 'storage.type.string.python'},\n 3: {name: 'punctuation.definition.string.begin.python'}\n },\n end: '(\\\\3)|((? for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.r', '.rd', '.rsx'],\n names: ['r', 'rscript', 'splus'],\n patterns: [\n {\n captures: {\n 1: {name: 'comment.line.pragma.r'},\n 2: {name: 'entity.name.pragma.name.r'}\n },\n match: '^(#pragma[ \\\\t]+mark)[ \\\\t](.*)',\n name: 'comment.line.pragma-mark.r'\n },\n {\n begin: '(^[ \\\\t]+)?(?=#)',\n beginCaptures: {1: {name: 'punctuation.whitespace.comment.leading.r'}},\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '#',\n beginCaptures: {0: {name: 'punctuation.definition.comment.r'}},\n end: '\\\\n',\n name: 'comment.line.number-sign.r'\n }\n ]\n },\n {\n match:\n '\\\\b(logical|numeric|character|complex|matrix|array|data\\\\.frame|list|factor)(?=\\\\s*\\\\()',\n name: 'storage.type.r'\n },\n {\n match:\n '\\\\b(function|if|break|next|repeat|else|for|return|switch|while|in|invisible)\\\\b',\n name: 'keyword.control.r'\n },\n {\n match:\n '\\\\b((0(x|X)[0-9a-fA-F]*)|(([0-9]+\\\\.?[0-9]*)|(\\\\.[0-9]+))((e|E)(\\\\+|-)?[0-9]+)?)(i|L|l|UL|ul|u|U|F|f|ll|LL|ull|ULL)?\\\\b',\n name: 'constant.numeric.r'\n },\n {\n match: '\\\\b(T|F|TRUE|FALSE|NULL|NA|Inf|NaN)\\\\b',\n name: 'constant.language.r'\n },\n {\n match: '\\\\b(pi|letters|LETTERS|month\\\\.abb|month\\\\.name)\\\\b',\n name: 'support.constant.misc.r'\n },\n {\n match: '(\\\\-|\\\\+|\\\\*|\\\\/|%\\\\/%|%%|%\\\\*%|%in%|%o%|%x%|\\\\^)',\n name: 'keyword.operator.arithmetic.r'\n },\n {match: '(=|<-|<<-|->|->>)', name: 'keyword.operator.assignment.r'},\n {match: '(==|!=|<>|<|>|<=|>=)', name: 'keyword.operator.comparison.r'},\n {match: '(!|&{1,2}|[|]{1,2})', name: 'keyword.operator.logical.r'},\n {match: '(\\\\.\\\\.\\\\.|\\\\$|@|:|\\\\~)', name: 'keyword.other.r'},\n {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.r'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.r'}},\n name: 'string.quoted.double.r',\n patterns: [{match: '\\\\\\\\.', name: 'constant.character.escape.r'}]\n },\n {\n begin: \"'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.r'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.r'}},\n name: 'string.quoted.single.r',\n patterns: [{match: '\\\\\\\\.', name: 'constant.character.escape.r'}]\n },\n {\n captures: {\n 1: {name: 'entity.name.function.r'},\n 2: {name: 'keyword.operator.assignment.r'},\n 3: {name: 'keyword.control.r'}\n },\n match:\n '((?:`[^`\\\\\\\\]*(?:\\\\\\\\.[^`\\\\\\\\]*)*`)|(?:[[:alpha:].][[:alnum:]._]*))\\\\s*(\n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [\n '.builder',\n '.druby',\n '.duby',\n '.eye',\n '.gemspec',\n '.god',\n '.jbuilder',\n '.mirah',\n '.mspec',\n '.pluginspec',\n '.podspec',\n '.prawn',\n '.rabl',\n '.rake',\n '.rb',\n '.rbi',\n '.rbuild',\n '.rbw',\n '.rbx',\n '.ru',\n '.ruby',\n '.thor',\n '.watchr'\n ],\n names: ['jruby', 'macruby', 'mirah', 'rake', 'rb', 'rbx', 'ruby'],\n patterns: [\n {\n begin: '\\\\bclass\\\\b',\n beginCaptures: {0: {name: 'keyword.control.class.ruby'}},\n end: '\\\\s*$|(?![\\\\s\\\\w.:<])',\n name: 'meta.class.ruby',\n patterns: [\n {match: '[A-Z]\\\\w*', name: 'entity.name.type.class.ruby'},\n {include: '#separators'},\n {\n begin: '(<<)\\\\s*',\n beginCaptures: {1: {name: 'punctuation.definition.variable.ruby'}},\n contentName: 'variable.other.object.ruby',\n end: '(?=$)|(?![\\\\s\\\\w.:])',\n patterns: [\n {match: '[A-Z]\\\\w*', name: 'entity.name.type.class.ruby'},\n {include: '#separators'}\n ]\n },\n {\n begin: '(<)\\\\s*',\n beginCaptures: {1: {name: 'punctuation.separator.inheritance.ruby'}},\n contentName: 'entity.other.inherited-class.ruby',\n end: '(?=$)|(?![\\\\s\\\\w.:])',\n patterns: [\n {match: '[A-Z]\\\\w*', name: 'entity.name.type.class.ruby'},\n {include: '#separators'}\n ]\n }\n ]\n },\n {\n begin: '\\\\bmodule\\\\b',\n beginCaptures: {0: {name: 'keyword.control.module.ruby'}},\n end: '\\\\s*$|(?![\\\\s\\\\w.:])',\n name: 'meta.module.ruby',\n patterns: [\n {\n match: '[A-Z]\\\\w*(?=::)',\n name: 'entity.other.inherited-class.module.ruby'\n },\n {match: '[A-Z]\\\\w*', name: 'entity.name.type.module.ruby'},\n {include: '#separators'}\n ]\n },\n {match: '(?[a-zA-Z_]\\\\w*(?>[?!])?)(:)(?!:)',\n name: 'constant.other.symbol.hashkey.ruby'\n },\n {\n captures: {1: {name: 'punctuation.definition.constant.ruby'}},\n match: '(?[a-zA-Z_]\\\\w*(?>[?!])?)(?=\\\\s*=>)',\n name: 'constant.other.symbol.hashkey.ruby'\n },\n {\n match:\n '(?|_|\\\\*|\\\\$|\\\\?|:|\"|-[0adFiIlpv])',\n name: 'variable.other.readwrite.global.pre-defined.ruby'\n },\n {\n begin: '\\\\b(ENV)\\\\[',\n beginCaptures: {1: {name: 'variable.other.constant.ruby'}},\n end: ']',\n name: 'meta.environment-variable.ruby',\n patterns: [{include: '$self'}]\n },\n {\n match: '\\\\b[A-Z]\\\\w*(?=((\\\\.|::)[A-Za-z]|\\\\[))',\n name: 'support.class.ruby'\n },\n {\n match:\n '\\\\b((abort|at_exit|autoload|binding|callcc|caller|caller_locations|chomp|chop|eval|exec|exit|fork|format|gets|global_variables|gsub|lambda|load|local_variables|open|p|print|printf|proc|putc|puts|rand|readline|readlines|select|set_trace_func|sleep|spawn|sprintf|srand|sub|syscall|system|test|trace_var|trap|untrace_var|warn)\\\\b(?![?!])|autoload\\\\?|exit!)',\n name: 'support.function.kernel.ruby'\n },\n {match: '\\\\b[_A-Z]\\\\w*\\\\b', name: 'variable.other.constant.ruby'},\n {\n begin:\n '(?x)\\n(?=def\\\\b) # optimization to help Oniguruma fail fast\\n(?<=^|\\\\s)(def)\\\\s+\\n(\\n (?:(self)(\\\\.|::))?\\n (?>[a-zA-Z_]\\\\w*(?>(\\\\.|::)))* # method prefix\\n (?> # method name\\n [a-zA-Z_]\\\\w*(?>[?!]|=(?!>))?\\n |\\n ===?|!=|>[>=]?|<=>|<[<=]?|[%&`/\\\\|]|\\\\*\\\\*?|=?~|[-+]@?|\\\\[]=?\\n )\\n)\\n\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'keyword.control.def.ruby'},\n 2: {name: 'entity.name.function.ruby'},\n 3: {name: 'variable.language.self.ruby'},\n 4: {name: 'punctuation.separator.method.ruby'},\n 5: {name: 'punctuation.separator.method.ruby'},\n 6: {name: 'punctuation.definition.parameters.ruby'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.parameters.ruby'}},\n name: 'meta.function.method.with-arguments.ruby',\n patterns: [\n {\n begin: '(?![\\\\s,)])',\n end: '(?=,|\\\\)\\\\s*$)',\n patterns: [\n {\n captures: {\n 1: {name: 'storage.type.variable.ruby'},\n 2: {\n name: 'constant.other.symbol.hashkey.parameter.function.ruby'\n },\n 3: {name: 'punctuation.definition.constant.hashkey.ruby'},\n 4: {name: 'variable.parameter.function.ruby'}\n },\n match: '\\\\G([&*]?)(?:([_a-zA-Z]\\\\w*(:))|([_a-zA-Z]\\\\w*))'\n },\n {include: '$self'}\n ]\n },\n {match: ',', name: 'punctuation.separator.delimiter.ruby'}\n ]\n },\n {\n begin:\n '(?x)\\n(?=def\\\\b) # optimization to help Oniguruma fail fast\\n(?<=^|\\\\s)(def)\\\\s+\\n(\\n (?:(self)(\\\\.|::))?\\n (?>[a-zA-Z_]\\\\w*(?>(\\\\.|::)))* # method prefix\\n (?> # method name\\n [a-zA-Z_]\\\\w*(?>[?!]|=(?!>))?\\n |\\n ===?|!=|>[>=]?|<=>|<[<=]?|[%&`/\\\\|]|\\\\*\\\\*?|=?~|[-+]@?|\\\\[]=?\\n )\\n)\\n[ \\\\t]\\n(?=[ \\\\t]*[^\\\\s#;]) # make sure the following is not comment',\n beginCaptures: {\n 1: {name: 'keyword.control.def.ruby'},\n 2: {name: 'entity.name.function.ruby'},\n 3: {name: 'variable.language.self.ruby'},\n 4: {name: 'punctuation.separator.method.ruby'},\n 5: {name: 'punctuation.separator.method.ruby'}\n },\n end: '$',\n name: 'meta.function.method.with-arguments.ruby',\n patterns: [\n {\n begin: '(?![\\\\s,])',\n end: '(?=,|$)',\n patterns: [\n {\n captures: {\n 1: {name: 'storage.type.variable.ruby'},\n 2: {\n name: 'constant.other.symbol.hashkey.parameter.function.ruby'\n },\n 3: {name: 'punctuation.definition.constant.hashkey.ruby'},\n 4: {name: 'variable.parameter.function.ruby'}\n },\n match: '\\\\G([&*]?)(?:([_a-zA-Z]\\\\w*(:))|([_a-zA-Z]\\\\w*))'\n },\n {include: '$self'}\n ]\n },\n {match: ',', name: 'punctuation.separator.delimiter.ruby'}\n ]\n },\n {\n captures: {\n 1: {name: 'keyword.control.def.ruby'},\n 3: {name: 'entity.name.function.ruby'},\n 4: {name: 'variable.language.self.ruby'},\n 5: {name: 'punctuation.separator.method.ruby'},\n 6: {name: 'punctuation.separator.method.ruby'}\n },\n match:\n '(?x)\\n(?=def\\\\b) # optimization to help Oniguruma fail fast\\n(?<=^|\\\\s)(def)\\\\b\\n(\\n \\\\s+\\n (\\n (?:(self)(\\\\.|::))?\\n (?>[a-zA-Z_]\\\\w*(?>(\\\\.|::)))* # method prefix\\n (?> # method name\\n [a-zA-Z_]\\\\w*(?>[?!]|=(?!>))?\\n |\\n ===?|!=|>[>=]?|<=>|<[<=]?|[%&`/\\\\|]|\\\\*\\\\*?|=?~|[-+]@?|\\\\[]=?\\n )\\n )\\n)?',\n name: 'meta.function.method.without-arguments.ruby'\n },\n {\n match:\n '(?x)\\n\\\\b\\n(\\n [\\\\d](?>_?\\\\d)* # 100_000\\n (\\\\.(?![^[:space:][:digit:]])(?>_?\\\\d)*)? # fractional part\\n ([eE][-+]?\\\\d(?>_?\\\\d)*)? # 1.23e-4\\n |\\n 0\\n (?:\\n [xX][[:xdigit:]](?>_?[[:xdigit:]])*|\\n [oO]?[0-7](?>_?[0-7])*|\\n [bB][01](?>_?[01])*|\\n [dD]\\\\d(?>_?\\\\d)*\\n ) # A base indicator can only be used with an integer\\n)\\\\b',\n name: 'constant.numeric.ruby'\n },\n {\n begin: \":'\",\n beginCaptures: {0: {name: 'punctuation.definition.symbol.begin.ruby'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.symbol.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [{match: \"\\\\\\\\['\\\\\\\\]\", name: 'constant.character.escape.ruby'}]\n },\n {\n begin: ':\"',\n beginCaptures: {0: {name: 'punctuation.section.symbol.begin.ruby'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.section.symbol.end.ruby'}},\n name: 'constant.other.symbol.interpolated.ruby',\n patterns: [{include: '#interpolated_ruby'}, {include: '#escaped_char'}]\n },\n {match: '(?|=>|==|=~|!~|!=|;|$|\\n if|else|elsif|then|do|end|unless|while|until|or|and\\n )\\n |\\n $\\n)',\n captures: {\n 1: {name: 'string.regexp.interpolated.ruby'},\n 2: {name: 'punctuation.section.regexp.ruby'}\n },\n contentName: 'string.regexp.interpolated.ruby',\n end: '((/[eimnosux]*))',\n patterns: [{include: '#regex_sub'}]\n },\n {\n begin: '%r{',\n beginCaptures: {0: {name: 'punctuation.section.regexp.begin.ruby'}},\n end: '}[eimnosux]*',\n endCaptures: {0: {name: 'punctuation.section.regexp.end.ruby'}},\n name: 'string.regexp.interpolated.ruby',\n patterns: [{include: '#regex_sub'}, {include: '#nest_curly_r'}]\n },\n {\n begin: '%r\\\\[',\n beginCaptures: {0: {name: 'punctuation.section.regexp.begin.ruby'}},\n end: '][eimnosux]*',\n endCaptures: {0: {name: 'punctuation.section.regexp.end.ruby'}},\n name: 'string.regexp.interpolated.ruby',\n patterns: [{include: '#regex_sub'}, {include: '#nest_brackets_r'}]\n },\n {\n begin: '%r\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.regexp.begin.ruby'}},\n end: '\\\\)[eimnosux]*',\n endCaptures: {0: {name: 'punctuation.section.regexp.end.ruby'}},\n name: 'string.regexp.interpolated.ruby',\n patterns: [{include: '#regex_sub'}, {include: '#nest_parens_r'}]\n },\n {\n begin: '%r<',\n beginCaptures: {0: {name: 'punctuation.section.regexp.begin.ruby'}},\n end: '>[eimnosux]*',\n endCaptures: {0: {name: 'punctuation.section.regexp.end.ruby'}},\n name: 'string.regexp.interpolated.ruby',\n patterns: [{include: '#regex_sub'}, {include: '#nest_ltgt_r'}]\n },\n {\n begin: '%r([^\\\\w])',\n beginCaptures: {0: {name: 'punctuation.section.regexp.begin.ruby'}},\n end: '\\\\1[eimnosux]*',\n endCaptures: {0: {name: 'punctuation.section.regexp.end.ruby'}},\n name: 'string.regexp.interpolated.ruby',\n patterns: [{include: '#regex_sub'}]\n },\n {\n begin: '%I\\\\[',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: ']',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'constant.other.symbol.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_brackets_i'}\n ]\n },\n {\n begin: '%I\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'constant.other.symbol.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_parens_i'}\n ]\n },\n {\n begin: '%I<',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '>',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'constant.other.symbol.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_ltgt_i'}\n ]\n },\n {\n begin: '%I{',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '}',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'constant.other.symbol.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_curly_i'}\n ]\n },\n {\n begin: '%I([^\\\\w])',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'constant.other.symbol.interpolated.ruby',\n patterns: [{include: '#interpolated_ruby'}, {include: '#escaped_char'}]\n },\n {\n begin: '%i\\\\[',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: ']',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [\n {match: '\\\\\\\\]|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_brackets'}\n ]\n },\n {\n begin: '%i\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [\n {match: '\\\\\\\\\\\\)|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_parens'}\n ]\n },\n {\n begin: '%i<',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '>',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [\n {match: '\\\\\\\\>|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_ltgt'}\n ]\n },\n {\n begin: '%i{',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '}',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [\n {match: '\\\\\\\\}|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_curly'}\n ]\n },\n {\n begin: '%i([^\\\\w])',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [{match: '\\\\\\\\.'}]\n },\n {\n begin: '%W\\\\[',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: ']',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_brackets_i'}\n ]\n },\n {\n begin: '%W\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_parens_i'}\n ]\n },\n {\n begin: '%W<',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '>',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_ltgt_i'}\n ]\n },\n {\n begin: '%W{',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '}',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_curly_i'}\n ]\n },\n {\n begin: '%W([^\\\\w])',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [{include: '#interpolated_ruby'}, {include: '#escaped_char'}]\n },\n {\n begin: '%w\\\\[',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: ']',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'string.quoted.other.ruby',\n patterns: [\n {match: '\\\\\\\\]|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_brackets'}\n ]\n },\n {\n begin: '%w\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'string.quoted.other.ruby',\n patterns: [\n {match: '\\\\\\\\\\\\)|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_parens'}\n ]\n },\n {\n begin: '%w<',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '>',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'string.quoted.other.ruby',\n patterns: [\n {match: '\\\\\\\\>|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_ltgt'}\n ]\n },\n {\n begin: '%w{',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '}',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'string.quoted.other.ruby',\n patterns: [\n {match: '\\\\\\\\}|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_curly'}\n ]\n },\n {\n begin: '%w([^\\\\w])',\n beginCaptures: {0: {name: 'punctuation.section.array.begin.ruby'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.section.array.end.ruby'}},\n name: 'string.quoted.other.ruby',\n patterns: [{match: '\\\\\\\\.'}]\n },\n {\n begin: '%[Qx]?\\\\(',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_parens_i'}\n ]\n },\n {\n begin: '%[Qx]?\\\\[',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: ']',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_brackets_i'}\n ]\n },\n {\n begin: '%[Qx]?{',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '}',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_curly_i'}\n ]\n },\n {\n begin: '%[Qx]?<',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '>',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_ltgt_i'}\n ]\n },\n {\n begin: '%[Qx]([^\\\\w])',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [{include: '#interpolated_ruby'}, {include: '#escaped_char'}]\n },\n {\n begin: '%([^\\\\w\\\\s=])',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.interpolated.ruby',\n patterns: [{include: '#interpolated_ruby'}, {include: '#escaped_char'}]\n },\n {\n begin: '%q\\\\(',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.ruby',\n patterns: [\n {match: '\\\\\\\\\\\\)|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_parens'}\n ]\n },\n {\n begin: '%q<',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '>',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.ruby',\n patterns: [\n {match: '\\\\\\\\>|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_ltgt'}\n ]\n },\n {\n begin: '%q\\\\[',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: ']',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.ruby',\n patterns: [\n {match: '\\\\\\\\]|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_brackets'}\n ]\n },\n {\n begin: '%q{',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '}',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.ruby',\n patterns: [\n {match: '\\\\\\\\}|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_curly'}\n ]\n },\n {\n begin: '%q([^\\\\w])',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.quoted.other.ruby',\n patterns: [{match: '\\\\\\\\.'}]\n },\n {\n begin: '%s\\\\(',\n beginCaptures: {0: {name: 'punctuation.definition.symbol.begin.ruby'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.symbol.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [\n {match: '\\\\\\\\\\\\)|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_parens'}\n ]\n },\n {\n begin: '%s<',\n beginCaptures: {0: {name: 'punctuation.definition.symbol.begin.ruby'}},\n end: '>',\n endCaptures: {0: {name: 'punctuation.definition.symbol.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [\n {match: '\\\\\\\\>|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_ltgt'}\n ]\n },\n {\n begin: '%s\\\\[',\n beginCaptures: {0: {name: 'punctuation.definition.symbol.begin.ruby'}},\n end: ']',\n endCaptures: {0: {name: 'punctuation.definition.symbol.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [\n {match: '\\\\\\\\]|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_brackets'}\n ]\n },\n {\n begin: '%s{',\n beginCaptures: {0: {name: 'punctuation.definition.symbol.begin.ruby'}},\n end: '}',\n endCaptures: {0: {name: 'punctuation.definition.symbol.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [\n {match: '\\\\\\\\}|\\\\\\\\\\\\\\\\', name: 'constant.character.escape.ruby'},\n {include: '#nest_curly'}\n ]\n },\n {\n begin: '%s([^\\\\w])',\n beginCaptures: {0: {name: 'punctuation.definition.symbol.begin.ruby'}},\n end: '\\\\1',\n endCaptures: {0: {name: 'punctuation.definition.symbol.end.ruby'}},\n name: 'constant.other.symbol.ruby',\n patterns: [{match: '\\\\\\\\.'}]\n },\n {\n captures: {1: {name: 'punctuation.definition.constant.ruby'}},\n match:\n '(?x)\\n(?\\n [$a-zA-Z_]\\\\w*(?>[?!]|=(?![>=]))?\\n |\\n ===?|<=>|>[>=]?|<[<=]?|[%&`/\\\\|]|\\\\*\\\\*?|=?~|[-+]@?|\\\\[]=?\\n |\\n @@?[a-zA-Z_]\\\\w*\\n)',\n name: 'constant.other.symbol.ruby'\n },\n {\n begin: '^=begin',\n captures: {0: {name: 'punctuation.definition.comment.ruby'}},\n end: '^=end',\n name: 'comment.block.documentation.ruby'\n },\n {include: '#yard'},\n {\n begin: '(^[ \\\\t]+)?(?=#)',\n beginCaptures: {1: {name: 'punctuation.whitespace.comment.leading.ruby'}},\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '#',\n beginCaptures: {0: {name: 'punctuation.definition.comment.ruby'}},\n end: '\\\\n',\n name: 'comment.line.number-sign.ruby'\n }\n ]\n },\n {\n match:\n '(?<<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)HTML)\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.html',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)HTML)\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'text.html',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'text.html.basic'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)XML)\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.xml',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)XML)\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'text.xml',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'text.xml'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)SQL)\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.sql',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)SQL)\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'source.sql',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'source.sql'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)GRAPHQL)\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.graphql',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)GRAPHQL)\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'source.graphql',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'source.graphql'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)CSS)\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.css',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)CSS)\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'source.css',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'source.css'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)CPP)\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.cpp',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)CPP)\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'source.cpp',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'source.c++'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)C)\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.c',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)C)\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'source.c',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'source.c'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)(?:JS|JAVASCRIPT))\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.js',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)(?:JS|JAVASCRIPT))\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'source.js',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'source.js'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)JQUERY)\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.js.jquery',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)JQUERY)\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'source.js.jquery',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)(?:SH|SHELL))\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.shell',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)(?:SH|SHELL))\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'source.shell',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'source.shell'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)LUA)\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.lua',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)LUA)\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'source.lua',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'source.lua'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?=(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)RUBY)\\\\b\\\\1))',\n end: '(?!\\\\G)',\n name: 'meta.embedded.block.ruby',\n patterns: [\n {\n begin: '(?><<[-~]([\"\\'`]?)((?:[_\\\\w]+_|)RUBY)\\\\b\\\\1)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.ruby'}\n },\n contentName: 'source.ruby',\n end: '^\\\\s*\\\\2$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: 'source.ruby'},\n {include: '#escaped_char'}\n ]\n }\n ]\n },\n {\n begin: '(?>=\\\\s*<<([\"\\'`]?)(\\\\w+)\\\\1)',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '^\\\\2$',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'}\n ]\n },\n {\n begin: '(?>((<<[-~]([\"\\'`]?)(\\\\w+)\\\\3,\\\\s?)*<<[-~]([\"\\'`]?)(\\\\w+)\\\\5))',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.ruby'}},\n end: '^\\\\s*\\\\6$',\n endCaptures: {0: {name: 'punctuation.definition.string.end.ruby'}},\n name: 'string.unquoted.heredoc.ruby',\n patterns: [\n {include: '#heredoc'},\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'}\n ]\n },\n {\n begin: '(?<={|{\\\\s|[^A-Za-z0-9_]do|^do|[^A-Za-z0-9_]do\\\\s|^do\\\\s)(\\\\|)',\n captures: {1: {name: 'punctuation.separator.variable.ruby'}},\n end: '(?', name: 'support.function.kernel.arrow.ruby'},\n {\n match: '<<=|%=|&{1,2}=|\\\\*=|\\\\*\\\\*=|\\\\+=|-=|\\\\^=|\\\\|{1,2}=|<<',\n name: 'keyword.operator.assignment.augmented.ruby'\n },\n {\n match: '<=>|<(?!<|=)|>(?!<|=|>)|<=|>=|===|==|=~|!=|!~|(?<=[ \\\\t])\\\\?',\n name: 'keyword.operator.comparison.ruby'\n },\n {\n match: '(?>', name: 'keyword.operator.other.ruby'},\n {match: '{', name: 'punctuation.section.scope.begin.ruby'},\n {match: '}', name: 'punctuation.section.scope.end.ruby'},\n {match: '\\\\[', name: 'punctuation.section.array.begin.ruby'},\n {match: ']', name: 'punctuation.section.array.end.ruby'},\n {match: '\\\\(|\\\\)', name: 'punctuation.section.function.ruby'}\n ],\n repository: {\n escaped_char: {\n match: '\\\\\\\\(?:[0-7]{1,3}|x[\\\\da-fA-F]{1,2}|.)',\n name: 'constant.character.escape.ruby'\n },\n heredoc: {begin: '^<<[-~]?\\\\w+', end: '$', patterns: [{include: '$self'}]},\n interpolated_ruby: {\n patterns: [\n {\n begin: '#{',\n beginCaptures: {0: {name: 'punctuation.section.embedded.begin.ruby'}},\n contentName: 'source.ruby',\n end: '}',\n endCaptures: {0: {name: 'punctuation.section.embedded.end.ruby'}},\n name: 'meta.embedded.line.ruby',\n patterns: [{include: '#nest_curly_and_self'}, {include: '$self'}]\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.ruby'}},\n match: '(#@)[a-zA-Z_]\\\\w*',\n name: 'variable.other.readwrite.instance.ruby'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.ruby'}},\n match: '(#@@)[a-zA-Z_]\\\\w*',\n name: 'variable.other.readwrite.class.ruby'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.ruby'}},\n match: '(#\\\\$)[a-zA-Z_]\\\\w*',\n name: 'variable.other.readwrite.global.ruby'\n }\n ]\n },\n nest_brackets: {\n begin: '\\\\[',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: ']',\n patterns: [{include: '#nest_brackets'}]\n },\n nest_brackets_i: {\n begin: '\\\\[',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: ']',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_brackets_i'}\n ]\n },\n nest_brackets_r: {\n begin: '\\\\[',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: ']',\n patterns: [{include: '#regex_sub'}, {include: '#nest_brackets_r'}]\n },\n nest_curly: {\n begin: '{',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: '}',\n patterns: [{include: '#nest_curly'}]\n },\n nest_curly_and_self: {\n patterns: [\n {\n begin: '{',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: '}',\n patterns: [{include: '#nest_curly_and_self'}]\n },\n {include: '$self'}\n ]\n },\n nest_curly_i: {\n begin: '{',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: '}',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_curly_i'}\n ]\n },\n nest_curly_r: {\n begin: '{',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: '}',\n patterns: [{include: '#regex_sub'}, {include: '#nest_curly_r'}]\n },\n nest_ltgt: {\n begin: '<',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: '>',\n patterns: [{include: '#nest_ltgt'}]\n },\n nest_ltgt_i: {\n begin: '<',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: '>',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_ltgt_i'}\n ]\n },\n nest_ltgt_r: {\n begin: '<',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: '>',\n patterns: [{include: '#regex_sub'}, {include: '#nest_ltgt_r'}]\n },\n nest_parens: {\n begin: '\\\\(',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: '\\\\)',\n patterns: [{include: '#nest_parens'}]\n },\n nest_parens_i: {\n begin: '\\\\(',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: '\\\\)',\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {include: '#nest_parens_i'}\n ]\n },\n nest_parens_r: {\n begin: '\\\\(',\n captures: {0: {name: 'punctuation.section.scope.ruby'}},\n end: '\\\\)',\n patterns: [{include: '#regex_sub'}, {include: '#nest_parens_r'}]\n },\n regex_sub: {\n patterns: [\n {include: '#interpolated_ruby'},\n {include: '#escaped_char'},\n {\n captures: {\n 1: {name: 'punctuation.definition.arbitrary-repetition.ruby'},\n 3: {name: 'punctuation.definition.arbitrary-repetition.ruby'}\n },\n match: '({)\\\\d+(,\\\\d+)?(})',\n name: 'string.regexp.arbitrary-repetition.ruby'\n },\n {\n begin: '\\\\[(?:\\\\^?])?',\n captures: {0: {name: 'punctuation.definition.character-class.ruby'}},\n end: ']',\n name: 'string.regexp.character-class.ruby',\n patterns: [{include: '#escaped_char'}]\n },\n {\n begin: '\\\\(\\\\?#',\n beginCaptures: {\n 0: {name: 'punctuation.definition.comment.begin.ruby'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.comment.end.ruby'}},\n name: 'comment.line.number-sign.ruby',\n patterns: [{include: '#escaped_char'}]\n },\n {\n begin: '\\\\(',\n captures: {0: {name: 'punctuation.definition.group.ruby'}},\n end: '\\\\)',\n name: 'string.regexp.group.ruby',\n patterns: [{include: '#regex_sub'}]\n },\n {\n begin:\n '(?<=^|\\\\s)(#)\\\\s(?=[[a-zA-Z0-9,. \\\\t?!-][^\\\\x{00}-\\\\x{7F}]]*$)',\n beginCaptures: {1: {name: 'punctuation.definition.comment.ruby'}},\n end: '$\\\\n?',\n endCaptures: {0: {name: 'punctuation.definition.comment.ruby'}},\n name: 'comment.line.number-sign.ruby'\n }\n ]\n },\n separators: {\n patterns: [\n {match: '=>', name: 'punctuation.separator.key-value.ruby'},\n {match: ';', name: 'punctuation.terminator.statement.ruby'},\n {match: ',', name: 'punctuation.separator.delimiter.ruby'},\n {\n captures: {1: {name: 'punctuation.separator.namespace.ruby'}},\n match: '(::)(?=\\\\s*[A-Z])'\n },\n {match: '&?\\\\.|::', name: 'punctuation.separator.method.ruby'},\n {match: ':', name: 'punctuation.separator.other.ruby'}\n ]\n },\n yard: {\n patterns: [\n {include: '#yard_comment'},\n {include: '#yard_name_types'},\n {include: '#yard_tag'},\n {include: '#yard_types'},\n {include: '#yard_directive'}\n ]\n },\n yard_comment: {\n begin:\n '^(\\\\s*)(#)(\\\\s*)(@)(abstract|api|author|deprecated|example|macro|note|overload|since|todo|version)(?=\\\\s|$)',\n beginCaptures: {\n 2: {name: 'punctuation.definition.comment.ruby'},\n 4: {name: 'comment.line.keyword.punctuation.yard.ruby'},\n 5: {name: 'comment.line.keyword.yard.ruby'}\n },\n contentName: 'comment.line.string.yard.ruby',\n end: '^(?!\\\\s*#\\\\3\\\\s{2,})',\n name: 'comment.line.number-sign.ruby',\n patterns: [{include: '#yard'}, {include: '#yard_continuation'}]\n },\n yard_continuation: {\n match: '^\\\\s*#',\n name: 'punctuation.definition.comment.ruby'\n },\n yard_directive: {\n begin:\n '^(\\\\s*)(#)(\\\\s*)(@!)(attribute|endgroup|group|macro|method|parse|scope|visibility)(\\\\s+((\\\\[).+(])))?(?=\\\\s)',\n beginCaptures: {\n 2: {name: 'punctuation.definition.comment.ruby'},\n 4: {name: 'comment.line.keyword.punctuation.yard.ruby'},\n 5: {name: 'comment.line.keyword.yard.ruby'},\n 6: {name: 'comment.line.yard.ruby'},\n 7: {name: 'comment.line.type.yard.ruby'},\n 8: {name: 'comment.line.punctuation.yard.ruby'},\n 9: {name: 'comment.line.punctuation.yard.ruby'}\n },\n contentName: 'comment.line.string.yard.ruby',\n end: '^(?!\\\\s*#\\\\3\\\\s{2,})',\n name: 'comment.line.number-sign.ruby',\n patterns: [{include: '#yard'}, {include: '#yard_continuation'}]\n },\n yard_name_types: {\n begin:\n '^(\\\\s*)(#)(\\\\s*)(@)(attr|attr_reader|attr_writer|option|param|see|yieldparam)(?=\\\\s)(\\\\s+([a-z_][a-zA-Z_]*))?(\\\\s+((\\\\[).+(])))?',\n beginCaptures: {\n 10: {name: 'comment.line.punctuation.yard.ruby'},\n 11: {name: 'comment.line.punctuation.yard.ruby'},\n 2: {name: 'punctuation.definition.comment.ruby'},\n 4: {name: 'comment.line.keyword.punctuation.yard.ruby'},\n 5: {name: 'comment.line.keyword.yard.ruby'},\n 6: {name: 'comment.line.yard.ruby'},\n 7: {name: 'comment.line.parameter.yard.ruby'},\n 8: {name: 'comment.line.yard.ruby'},\n 9: {name: 'comment.line.type.yard.ruby'}\n },\n contentName: 'comment.line.string.yard.ruby',\n end: '^(?!\\\\s*#\\\\3\\\\s{2,})',\n name: 'comment.line.number-sign.ruby',\n patterns: [{include: '#yard'}, {include: '#yard_continuation'}]\n },\n yard_tag: {\n captures: {\n 2: {name: 'punctuation.definition.comment.ruby'},\n 4: {name: 'comment.line.keyword.punctuation.yard.ruby'},\n 5: {name: 'comment.line.keyword.yard.ruby'}\n },\n match: '^(\\\\s*)(#)(\\\\s*)(@)(private)$',\n name: 'comment.line.number-sign.ruby'\n },\n yard_types: {\n begin:\n '^(\\\\s*)(#)(\\\\s*)(@)(raise|return|yield(?:return)?)(?=\\\\s)(\\\\s+((\\\\[).+(])))?',\n beginCaptures: {\n 2: {name: 'punctuation.definition.comment.ruby'},\n 4: {name: 'comment.line.keyword.punctuation.yard.ruby'},\n 5: {name: 'comment.line.keyword.yard.ruby'},\n 6: {name: 'comment.line.yard.ruby'},\n 7: {name: 'comment.line.type.yard.ruby'},\n 8: {name: 'comment.line.punctuation.yard.ruby'},\n 9: {name: 'comment.line.punctuation.yard.ruby'}\n },\n contentName: 'comment.line.string.yard.ruby',\n end: '^(?!\\\\s*#\\\\3\\\\s{2,})',\n name: 'comment.line.number-sign.ruby',\n patterns: [{include: '#yard'}, {include: '#yard_continuation'}]\n }\n },\n scopeName: 'source.ruby'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.rs', '.rs.in'],\n names: ['rust', 'rs'],\n patterns: [\n {\n begin: '(<)(\\\\[)',\n beginCaptures: {\n 1: {name: 'punctuation.brackets.angle.rust'},\n 2: {name: 'punctuation.brackets.square.rust'}\n },\n end: '>',\n endCaptures: {0: {name: 'punctuation.brackets.angle.rust'}},\n patterns: [\n {include: '#block-comments'},\n {include: '#comments'},\n {include: '#gtypes'},\n {include: '#lvariables'},\n {include: '#lifetimes'},\n {include: '#punctuation'},\n {include: '#types'}\n ]\n },\n {\n captures: {\n 1: {name: 'keyword.operator.macro.dollar.rust'},\n 3: {name: 'keyword.other.crate.rust'},\n 4: {name: 'entity.name.type.metavariable.rust'},\n 6: {name: 'keyword.operator.key-value.rust'},\n 7: {name: 'variable.other.metavariable.specifier.rust'}\n },\n match:\n '(\\\\$)((crate)|([A-Z][A-Za-z0-9_]*))((:)(block|expr|ident|item|lifetime|literal|meta|path?|stmt|tt|ty|vis))?',\n name: 'meta.macro.metavariable.type.rust',\n patterns: [{include: '#keywords'}]\n },\n {\n captures: {\n 1: {name: 'keyword.operator.macro.dollar.rust'},\n 2: {name: 'variable.other.metavariable.name.rust'},\n 4: {name: 'keyword.operator.key-value.rust'},\n 5: {name: 'variable.other.metavariable.specifier.rust'}\n },\n match:\n '(\\\\$)([a-z][A-Za-z0-9_]*)((:)(block|expr|ident|item|lifetime|literal|meta|path?|stmt|tt|ty|vis))?',\n name: 'meta.macro.metavariable.rust',\n patterns: [{include: '#keywords'}]\n },\n {\n captures: {\n 1: {name: 'entity.name.function.macro.rules.rust'},\n 3: {name: 'entity.name.function.macro.rust'},\n 4: {name: 'entity.name.type.macro.rust'},\n 5: {name: 'punctuation.brackets.curly.rust'}\n },\n match: '\\\\b(macro_rules!)\\\\s+(([a-z0-9_]+)|([A-Z][a-z0-9_]*))\\\\s+(\\\\{)',\n name: 'meta.macro.rules.rust'\n },\n {\n captures: {\n 1: {name: 'storage.type.rust'},\n 2: {name: 'entity.name.module.rust'}\n },\n match: '(mod)\\\\s+((?:r#(?!crate|[Ss]elf|super))?[a-z][A-Za-z0-9_]*)'\n },\n {\n begin: '\\\\b(extern)\\\\s+(crate)',\n beginCaptures: {\n 1: {name: 'storage.type.rust'},\n 2: {name: 'keyword.other.crate.rust'}\n },\n end: ';',\n endCaptures: {0: {name: 'punctuation.semi.rust'}},\n name: 'meta.import.rust',\n patterns: [\n {include: '#block-comments'},\n {include: '#comments'},\n {include: '#keywords'},\n {include: '#punctuation'}\n ]\n },\n {\n begin: '\\\\b(use)\\\\s',\n beginCaptures: {1: {name: 'keyword.other.rust'}},\n end: ';',\n endCaptures: {0: {name: 'punctuation.semi.rust'}},\n name: 'meta.use.rust',\n patterns: [\n {include: '#block-comments'},\n {include: '#comments'},\n {include: '#keywords'},\n {include: '#namespaces'},\n {include: '#punctuation'},\n {include: '#types'},\n {include: '#lvariables'}\n ]\n },\n {include: '#block-comments'},\n {include: '#comments'},\n {include: '#attributes'},\n {include: '#lvariables'},\n {include: '#constants'},\n {include: '#gtypes'},\n {include: '#functions'},\n {include: '#types'},\n {include: '#keywords'},\n {include: '#lifetimes'},\n {include: '#macros'},\n {include: '#namespaces'},\n {include: '#punctuation'},\n {include: '#strings'},\n {include: '#variables'}\n ],\n repository: {\n attributes: {\n begin: '(#)(\\\\!?)(\\\\[)',\n beginCaptures: {\n 1: {name: 'punctuation.definition.attribute.rust'},\n 3: {name: 'punctuation.brackets.attribute.rust'}\n },\n end: '\\\\]',\n endCaptures: {0: {name: 'punctuation.brackets.attribute.rust'}},\n name: 'meta.attribute.rust',\n patterns: [\n {include: '#block-comments'},\n {include: '#comments'},\n {include: '#keywords'},\n {include: '#lifetimes'},\n {include: '#punctuation'},\n {include: '#strings'},\n {include: '#gtypes'},\n {include: '#types'}\n ]\n },\n 'block-comments': {\n patterns: [\n {match: '/\\\\*\\\\*/', name: 'comment.block.rust'},\n {\n begin: '/\\\\*\\\\*',\n end: '\\\\*/',\n name: 'comment.block.documentation.rust',\n patterns: [{include: '#block-comments'}]\n },\n {\n begin: '/\\\\*(?!\\\\*)',\n end: '\\\\*/',\n name: 'comment.block.rust',\n patterns: [{include: '#block-comments'}]\n }\n ]\n },\n comments: {\n patterns: [\n {\n captures: {1: {name: 'punctuation.definition.comment.rust'}},\n match: '(///).*$',\n name: 'comment.line.documentation.rust'\n },\n {\n captures: {1: {name: 'punctuation.definition.comment.rust'}},\n match: '(//).*$',\n name: 'comment.line.double-slash.rust'\n }\n ]\n },\n constants: {\n patterns: [\n {match: '\\\\b[A-Z]{2}[A-Z0-9_]*\\\\b', name: 'constant.other.caps.rust'},\n {\n captures: {\n 1: {name: 'storage.type.rust'},\n 2: {name: 'constant.other.caps.rust'}\n },\n match: '\\\\b(const)\\\\s+([A-Z][A-Za-z0-9_]*)\\\\b'\n },\n {\n captures: {\n 1: {name: 'punctuation.separator.dot.decimal.rust'},\n 2: {name: 'keyword.operator.exponent.rust'},\n 3: {name: 'keyword.operator.exponent.sign.rust'},\n 4: {name: 'constant.numeric.decimal.exponent.mantissa.rust'},\n 5: {name: 'entity.name.type.numeric.rust'}\n },\n match:\n '\\\\b\\\\d[\\\\d_]*(\\\\.?)[\\\\d_]*(?:(E|e)([+-]?)([\\\\d_]+))?(f32|f64|i128|i16|i32|i64|i8|isize|u128|u16|u32|u64|u8|usize)?\\\\b',\n name: 'constant.numeric.decimal.rust'\n },\n {\n captures: {1: {name: 'entity.name.type.numeric.rust'}},\n match:\n '\\\\b0x[\\\\da-fA-F_]+(i128|i16|i32|i64|i8|isize|u128|u16|u32|u64|u8|usize)?\\\\b',\n name: 'constant.numeric.hex.rust'\n },\n {\n captures: {1: {name: 'entity.name.type.numeric.rust'}},\n match:\n '\\\\b0o[0-7_]+(i128|i16|i32|i64|i8|isize|u128|u16|u32|u64|u8|usize)?\\\\b',\n name: 'constant.numeric.oct.rust'\n },\n {\n captures: {1: {name: 'entity.name.type.numeric.rust'}},\n match:\n '\\\\b0b[01_]+(i128|i16|i32|i64|i8|isize|u128|u16|u32|u64|u8|usize)?\\\\b',\n name: 'constant.numeric.bin.rust'\n },\n {match: '\\\\b(true|false)\\\\b', name: 'constant.language.bool.rust'}\n ]\n },\n escapes: {\n captures: {\n 1: {name: 'constant.character.escape.backslash.rust'},\n 2: {name: 'constant.character.escape.bit.rust'},\n 3: {name: 'constant.character.escape.unicode.rust'},\n 4: {name: 'constant.character.escape.unicode.punctuation.rust'},\n 5: {name: 'constant.character.escape.unicode.punctuation.rust'}\n },\n match:\n '(\\\\\\\\)(?:(?:(x[0-7][\\\\da-fA-F])|(u(\\\\{)[\\\\da-fA-F]{4,6}(\\\\}))|.))',\n name: 'constant.character.escape.rust'\n },\n functions: {\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.other.rust'},\n 2: {name: 'punctuation.brackets.round.rust'}\n },\n match: '\\\\b(pub)(\\\\()'\n },\n {\n begin:\n '\\\\b(fn)\\\\s+((?:r#(?!crate|[Ss]elf|super))?[A-Za-z0-9_]+)((\\\\()|(<))',\n beginCaptures: {\n 1: {name: 'keyword.other.fn.rust'},\n 2: {name: 'entity.name.function.rust'},\n 4: {name: 'punctuation.brackets.round.rust'},\n 5: {name: 'punctuation.brackets.angle.rust'}\n },\n end: '(\\\\{)|(;)',\n endCaptures: {\n 1: {name: 'punctuation.brackets.curly.rust'},\n 2: {name: 'punctuation.semi.rust'}\n },\n name: 'meta.function.definition.rust',\n patterns: [\n {include: '#block-comments'},\n {include: '#comments'},\n {include: '#keywords'},\n {include: '#lvariables'},\n {include: '#constants'},\n {include: '#gtypes'},\n {include: '#functions'},\n {include: '#lifetimes'},\n {include: '#macros'},\n {include: '#namespaces'},\n {include: '#punctuation'},\n {include: '#strings'},\n {include: '#types'},\n {include: '#variables'}\n ]\n },\n {\n begin: '((?:r#(?!crate|[Ss]elf|super))?[A-Za-z0-9_]+)(\\\\()',\n beginCaptures: {\n 1: {name: 'entity.name.function.rust'},\n 2: {name: 'punctuation.brackets.round.rust'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.brackets.round.rust'}},\n name: 'meta.function.call.rust',\n patterns: [\n {include: '#block-comments'},\n {include: '#comments'},\n {include: '#attributes'},\n {include: '#keywords'},\n {include: '#lvariables'},\n {include: '#constants'},\n {include: '#gtypes'},\n {include: '#functions'},\n {include: '#lifetimes'},\n {include: '#macros'},\n {include: '#namespaces'},\n {include: '#punctuation'},\n {include: '#strings'},\n {include: '#types'},\n {include: '#variables'}\n ]\n },\n {\n begin: '((?:r#(?!crate|[Ss]elf|super))?[A-Za-z0-9_]+)(?=::<.*>\\\\()',\n beginCaptures: {1: {name: 'entity.name.function.rust'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.brackets.round.rust'}},\n name: 'meta.function.call.rust',\n patterns: [\n {include: '#block-comments'},\n {include: '#comments'},\n {include: '#attributes'},\n {include: '#keywords'},\n {include: '#lvariables'},\n {include: '#constants'},\n {include: '#gtypes'},\n {include: '#functions'},\n {include: '#lifetimes'},\n {include: '#macros'},\n {include: '#namespaces'},\n {include: '#punctuation'},\n {include: '#strings'},\n {include: '#types'},\n {include: '#variables'}\n ]\n }\n ]\n },\n gtypes: {\n patterns: [\n {match: '\\\\b(Some|None)\\\\b', name: 'entity.name.type.option.rust'},\n {match: '\\\\b(Ok|Err)\\\\b', name: 'entity.name.type.result.rust'}\n ]\n },\n interpolations: {\n captures: {\n 1: {name: 'punctuation.definition.interpolation.rust'},\n 2: {name: 'punctuation.definition.interpolation.rust'}\n },\n match: '({)[^\"{}]*(})',\n name: 'meta.interpolation.rust'\n },\n keywords: {\n patterns: [\n {\n match:\n '\\\\b(await|break|continue|do|else|for|if|loop|match|return|try|while|yield)\\\\b',\n name: 'keyword.control.rust'\n },\n {\n match: '\\\\b(extern|let|macro|mod)\\\\b',\n name: 'keyword.other.rust storage.type.rust'\n },\n {match: '\\\\b(const)\\\\b', name: 'storage.modifier.rust'},\n {\n match: '\\\\b(type)\\\\b',\n name: 'keyword.declaration.type.rust storage.type.rust'\n },\n {\n match: '\\\\b(enum)\\\\b',\n name: 'keyword.declaration.enum.rust storage.type.rust'\n },\n {\n match: '\\\\b(trait)\\\\b',\n name: 'keyword.declaration.trait.rust storage.type.rust'\n },\n {\n match: '\\\\b(struct)\\\\b',\n name: 'keyword.declaration.struct.rust storage.type.rust'\n },\n {match: '\\\\b(abstract|static)\\\\b', name: 'storage.modifier.rust'},\n {\n match:\n '\\\\b(as|async|become|box|dyn|move|final|gen|impl|in|override|priv|pub|ref|typeof|union|unsafe|unsized|use|virtual|where)\\\\b',\n name: 'keyword.other.rust'\n },\n {match: '\\\\bfn\\\\b', name: 'keyword.other.fn.rust'},\n {match: '\\\\bcrate\\\\b', name: 'keyword.other.crate.rust'},\n {match: '\\\\bmut\\\\b', name: 'storage.modifier.mut.rust'},\n {\n match: '(\\\\^|\\\\||\\\\|\\\\||&&|<<|>>|!)(?!=)',\n name: 'keyword.operator.logical.rust'\n },\n {match: '&(?![&=])', name: 'keyword.operator.borrow.and.rust'},\n {\n match: '(\\\\+=|-=|\\\\*=|/=|%=|\\\\^=|&=|\\\\|=|<<=|>>=)',\n name: 'keyword.operator.assignment.rust'\n },\n {\n match: '(?])=(?!=|>)',\n name: 'keyword.operator.assignment.equal.rust'\n },\n {\n match: '(=(=)?(?!>)|!=|<=|(?=)',\n name: 'keyword.operator.comparison.rust'\n },\n {\n match: '(([+%]|(\\\\*(?!\\\\w)))(?!=))|(-(?!>))|(/(?!/))',\n name: 'keyword.operator.math.rust'\n },\n {\n captures: {\n 1: {name: 'punctuation.brackets.round.rust'},\n 2: {name: 'punctuation.brackets.square.rust'},\n 3: {name: 'punctuation.brackets.curly.rust'},\n 4: {name: 'keyword.operator.comparison.rust'},\n 5: {name: 'punctuation.brackets.round.rust'},\n 6: {name: 'punctuation.brackets.square.rust'},\n 7: {name: 'punctuation.brackets.curly.rust'}\n },\n match:\n '(?:\\\\b|(?:(\\\\))|(\\\\])|(\\\\})))[ \\\\t]+([<>])[ \\\\t]+(?:\\\\b|(?:(\\\\()|(\\\\[)|(\\\\{)))'\n },\n {match: '::', name: 'keyword.operator.namespace.rust'},\n {\n captures: {1: {name: 'keyword.operator.dereference.rust'}},\n match: '(\\\\*)(?=\\\\w+)'\n },\n {match: '@', name: 'keyword.operator.subpattern.rust'},\n {match: '\\\\.(?!\\\\.)', name: 'keyword.operator.access.dot.rust'},\n {match: '\\\\.{2}(=|\\\\.)?', name: 'keyword.operator.range.rust'},\n {match: ':(?!:)', name: 'keyword.operator.key-value.rust'},\n {match: '->|<-', name: 'keyword.operator.arrow.skinny.rust'},\n {match: '=>', name: 'keyword.operator.arrow.fat.rust'},\n {match: '\\\\$', name: 'keyword.operator.macro.dollar.rust'},\n {match: '\\\\?', name: 'keyword.operator.question.rust'}\n ]\n },\n lifetimes: {\n patterns: [\n {\n captures: {\n 1: {name: 'punctuation.definition.lifetime.rust'},\n 2: {name: 'entity.name.type.lifetime.rust'}\n },\n match: \"(['])([a-zA-Z_][0-9a-zA-Z_]*)(?!['])\\\\b\"\n },\n {\n captures: {\n 1: {name: 'keyword.operator.borrow.rust'},\n 2: {name: 'punctuation.definition.lifetime.rust'},\n 3: {name: 'entity.name.type.lifetime.rust'}\n },\n match: \"(\\\\&)(['])([a-zA-Z_][0-9a-zA-Z_]*)(?!['])\\\\b\"\n }\n ]\n },\n lvariables: {\n patterns: [\n {match: '\\\\b[Ss]elf\\\\b', name: 'variable.language.self.rust'},\n {match: '\\\\bsuper\\\\b', name: 'variable.language.super.rust'}\n ]\n },\n macros: {\n patterns: [\n {\n captures: {\n 2: {name: 'entity.name.function.macro.rust'},\n 3: {name: 'entity.name.type.macro.rust'}\n },\n match: '(([a-z_][A-Za-z0-9_]*!)|([A-Z_][A-Za-z0-9_]*!))',\n name: 'meta.macro.rust'\n }\n ]\n },\n namespaces: {\n patterns: [\n {\n captures: {\n 1: {name: 'entity.name.namespace.rust'},\n 2: {name: 'keyword.operator.namespace.rust'}\n },\n match: '(?]', name: 'punctuation.brackets.angle.rust'}\n ]\n },\n strings: {\n patterns: [\n {\n begin: '(b?)(\")',\n beginCaptures: {\n 1: {name: 'string.quoted.byte.raw.rust'},\n 2: {name: 'punctuation.definition.string.rust'}\n },\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.rust'}},\n name: 'string.quoted.double.rust',\n patterns: [{include: '#escapes'}, {include: '#interpolations'}]\n },\n {\n begin: '(b?r)(#*)(\")',\n beginCaptures: {\n 1: {name: 'string.quoted.byte.raw.rust'},\n 2: {name: 'punctuation.definition.string.raw.rust'},\n 3: {name: 'punctuation.definition.string.rust'}\n },\n end: '(\")(\\\\2)',\n endCaptures: {\n 1: {name: 'punctuation.definition.string.rust'},\n 2: {name: 'punctuation.definition.string.raw.rust'}\n },\n name: 'string.quoted.double.rust'\n },\n {\n begin: \"(b)?(')\",\n beginCaptures: {\n 1: {name: 'string.quoted.byte.raw.rust'},\n 2: {name: 'punctuation.definition.char.rust'}\n },\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.char.rust'}},\n name: 'string.quoted.single.char.rust',\n patterns: [{include: '#escapes'}]\n }\n ]\n },\n types: {\n patterns: [\n {\n captures: {1: {name: 'entity.name.type.numeric.rust'}},\n match:\n '(?',\n endCaptures: {0: {name: 'punctuation.brackets.angle.rust'}},\n patterns: [\n {include: '#block-comments'},\n {include: '#comments'},\n {include: '#keywords'},\n {include: '#lvariables'},\n {include: '#lifetimes'},\n {include: '#punctuation'},\n {include: '#types'},\n {include: '#variables'}\n ]\n },\n {\n match: '\\\\b(bool|char|str)\\\\b',\n name: 'entity.name.type.primitive.rust'\n },\n {\n captures: {\n 1: {name: 'keyword.declaration.trait.rust storage.type.rust'},\n 2: {name: 'entity.name.type.trait.rust'}\n },\n match: '\\\\b(trait)\\\\s+(_?[A-Z][A-Za-z0-9_]*)\\\\b'\n },\n {\n captures: {\n 1: {name: 'keyword.declaration.struct.rust storage.type.rust'},\n 2: {name: 'entity.name.type.struct.rust'}\n },\n match: '\\\\b(struct)\\\\s+(_?[A-Z][A-Za-z0-9_]*)\\\\b'\n },\n {\n captures: {\n 1: {name: 'keyword.declaration.enum.rust storage.type.rust'},\n 2: {name: 'entity.name.type.enum.rust'}\n },\n match: '\\\\b(enum)\\\\s+(_?[A-Z][A-Za-z0-9_]*)\\\\b'\n },\n {\n captures: {\n 1: {name: 'keyword.declaration.type.rust storage.type.rust'},\n 2: {name: 'entity.name.type.declaration.rust'}\n },\n match: '\\\\b(type)\\\\s+(_?[A-Z][A-Za-z0-9_]*)\\\\b'\n },\n {\n match: '\\\\b_?[A-Z][A-Za-z0-9_]*\\\\b(?!!)',\n name: 'entity.name.type.rust'\n }\n ]\n },\n variables: {\n patterns: [\n {\n match:\n '\\\\b(?\n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [\n '.bash',\n '.bats',\n '.command',\n '.csh',\n '.ebuild',\n '.eclass',\n '.ksh',\n '.sh',\n '.sh.in',\n '.tcsh',\n '.tmux',\n '.tool',\n '.zsh',\n '.zsh-theme'\n ],\n names: [\n 'abuild',\n 'alpine-abuild',\n 'apkbuild',\n 'bash',\n 'envrc',\n 'gentoo-ebuild',\n 'gentoo-eclass',\n 'openrc',\n 'openrc-runscript',\n 'sh',\n 'shell',\n 'shell-script',\n 'tcsh',\n 'zsh'\n ],\n patterns: [\n {include: '#comment'},\n {include: '#pipeline'},\n {include: '#list'},\n {include: '#compound-command'},\n {include: '#loop'},\n {include: '#string'},\n {include: '#function-definition'},\n {include: '#variable'},\n {include: '#interpolation'},\n {include: '#heredoc'},\n {include: '#herestring'},\n {include: '#redirection'},\n {include: '#pathname'},\n {include: '#keyword'},\n {include: '#support'}\n ],\n repository: {\n 'case-clause': {\n patterns: [\n {\n begin: '(?=\\\\S)',\n end: ';;',\n endCaptures: {0: {name: 'punctuation.terminator.case-clause.shell'}},\n name: 'meta.scope.case-clause.shell',\n patterns: [\n {\n begin: '\\\\(|(?=\\\\S)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.case-pattern.shell'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.case-pattern.shell'}\n },\n name: 'meta.scope.case-pattern.shell',\n patterns: [\n {match: '\\\\|', name: 'punctuation.separator.pipe-sign.shell'},\n {include: '#string'},\n {include: '#variable'},\n {include: '#interpolation'},\n {include: '#pathname'}\n ]\n },\n {\n begin: '(?<=\\\\))',\n end: '(?=;;)',\n name: 'meta.scope.case-clause-body.shell',\n patterns: [{include: '$self'}]\n }\n ]\n }\n ]\n },\n comment: {\n begin: '(^\\\\s+)?(?<=^|\\\\W)(?|&&|\\\\|\\\\|',\n name: 'keyword.operator.logical.shell'\n },\n {\n match: '(?[>=]?|==|!=|^|\\\\|{1,2}|&{1,2}|\\\\?|\\\\:|,|=|[*/%+\\\\-&^|]=|<<=|>>=',\n name: 'keyword.operator.arithmetic.shell'\n },\n {match: '0[xX][0-9A-Fa-f]+', name: 'constant.numeric.hex.shell'},\n {match: '0\\\\d+', name: 'constant.numeric.octal.shell'},\n {\n match: '\\\\d{1,2}#[0-9a-zA-Z@_]+',\n name: 'constant.numeric.other.shell'\n },\n {match: '\\\\d+', name: 'constant.numeric.integer.shell'}\n ]\n },\n pathname: {\n patterns: [\n {match: '(?<=\\\\s|:|=|^)~', name: 'keyword.operator.tilde.shell'},\n {match: '\\\\*|\\\\?', name: 'keyword.operator.glob.shell'},\n {\n begin: '([?*+@!])(\\\\()',\n beginCaptures: {\n 1: {name: 'keyword.operator.extglob.shell'},\n 2: {name: 'punctuation.definition.extglob.shell'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.extglob.shell'}},\n name: 'meta.structure.extglob.shell',\n patterns: [{include: '$self'}]\n }\n ]\n },\n pipeline: {\n patterns: [\n {\n match: '(?<=^|;|&|\\\\s)(time)(?=\\\\s|;|&|$)',\n name: 'keyword.other.shell'\n },\n {match: '[|!]', name: 'keyword.operator.pipe.shell'}\n ]\n },\n redirection: {\n patterns: [\n {\n begin: '[><]\\\\(',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.shell'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.string.end.shell'}},\n name: 'string.interpolated.process-substitution.shell',\n patterns: [{include: '$self'}]\n },\n {\n match: '(?])(&>|\\\\d*>&\\\\d*|\\\\d*(>>|>|<)|\\\\d*<&|\\\\d*<>)(?![<>])',\n name: 'keyword.operator.redirect.shell'\n }\n ]\n },\n string: {\n patterns: [\n {match: '\\\\\\\\.', name: 'constant.character.escape.shell'},\n {\n begin: \"'\",\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.shell'}\n },\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.shell'}},\n name: 'string.quoted.single.shell'\n },\n {\n begin: '\\\\$?\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.shell'}\n },\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.shell'}},\n name: 'string.quoted.double.shell',\n patterns: [\n {\n match: '\\\\\\\\[\\\\$`\"\\\\\\\\\\\\n]',\n name: 'constant.character.escape.shell'\n },\n {include: '#variable'},\n {include: '#interpolation'}\n ]\n },\n {\n begin: \"\\\\$'\",\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.shell'}\n },\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.shell'}},\n name: 'string.quoted.single.dollar.shell',\n patterns: [\n {\n match: \"\\\\\\\\(a|b|e|f|n|r|t|v|\\\\\\\\|')\",\n name: 'constant.character.escape.ansi-c.shell'\n },\n {\n match: '\\\\\\\\[0-9]{3}',\n name: 'constant.character.escape.octal.shell'\n },\n {\n match: '\\\\\\\\x[0-9a-fA-F]{2}',\n name: 'constant.character.escape.hex.shell'\n },\n {\n match: '\\\\\\\\c.',\n name: 'constant.character.escape.control-char.shell'\n }\n ]\n }\n ]\n },\n support: {\n patterns: [\n {\n match: '(?<=^|;|&|\\\\s)(?::|\\\\.)(?=\\\\s|;|&|$)',\n name: 'support.function.builtin.shell'\n },\n {\n match:\n '(?<=^|;|&|\\\\s)(?:alias|bg|bind|break|builtin|caller|cd|command|compgen|complete|dirs|disown|echo|enable|eval|exec|exit|false|fc|fg|getopts|hash|help|history|jobs|kill|let|logout|popd|printf|pushd|pwd|read|readonly|set|shift|shopt|source|suspend|test|times|trap|true|type|ulimit|umask|unalias|unset|wait)(?=\\\\s|;|&|$)',\n name: 'support.function.builtin.shell'\n }\n ]\n },\n variable: {\n patterns: [\n {\n captures: {1: {name: 'punctuation.definition.variable.shell'}},\n match: '(\\\\$)[a-zA-Z_][a-zA-Z0-9_]*',\n name: 'variable.other.normal.shell'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.shell'}},\n match: '(\\\\$)[-*@#?$!0_]',\n name: 'variable.other.special.shell'\n },\n {\n captures: {1: {name: 'punctuation.definition.variable.shell'}},\n match: '(\\\\$)[1-9]',\n name: 'variable.other.positional.shell'\n },\n {\n begin: '\\\\${',\n beginCaptures: {0: {name: 'punctuation.definition.variable.shell'}},\n end: '}',\n endCaptures: {0: {name: 'punctuation.definition.variable.shell'}},\n name: 'variable.other.bracket.shell',\n patterns: [\n {\n match: '!|:[-=?]?|\\\\*|@|#{1,2}|%{1,2}|/',\n name: 'keyword.operator.expansion.shell'\n },\n {\n captures: {\n 1: {name: 'punctuation.section.array.shell'},\n 3: {name: 'punctuation.section.array.shell'}\n },\n match: '(\\\\[)([^\\\\]]+)(\\\\])'\n },\n {include: '#variable'},\n {include: '#string'}\n ]\n }\n ]\n }\n },\n scopeName: 'source.shell'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is licensed permissive.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [\n '.cql',\n '.db2',\n '.ddl',\n '.mysql',\n '.pgsql',\n '.prc',\n '.sql',\n '.sql',\n '.sql',\n '.tab',\n '.udf',\n '.viw'\n ],\n names: ['plpgsql', 'sql', 'sqlpl'],\n patterns: [\n {include: '#comments'},\n {\n captures: {\n 1: {name: 'keyword.other.create.sql'},\n 2: {name: 'keyword.other.sql'},\n 5: {name: 'entity.name.function.sql'}\n },\n match:\n '(?i:^\\\\s*(create(?:\\\\s+or\\\\s+replace)?)\\\\s+(aggregate|conversion|database|domain|function|group|(unique\\\\s+)?index|language|operator class|operator|rule|schema|sequence|table|tablespace|trigger|type|user|view)\\\\s+)([\\'\"`]?)(\\\\w+)\\\\4',\n name: 'meta.create.sql'\n },\n {\n captures: {\n 1: {name: 'keyword.other.create.sql'},\n 2: {name: 'keyword.other.sql'}\n },\n match:\n '(?i:^\\\\s*(drop)\\\\s+(aggregate|conversion|database|domain|function|group|index|language|operator class|operator|rule|schema|sequence|table|tablespace|trigger|type|user|view))',\n name: 'meta.drop.sql'\n },\n {\n captures: {\n 1: {name: 'keyword.other.create.sql'},\n 2: {name: 'keyword.other.table.sql'},\n 3: {name: 'entity.name.function.sql'},\n 4: {name: 'keyword.other.cascade.sql'}\n },\n match: '(?i:\\\\s*(drop)\\\\s+(table)\\\\s+(\\\\w+)(\\\\s+cascade)?\\\\b)',\n name: 'meta.drop.sql'\n },\n {\n captures: {\n 1: {name: 'keyword.other.create.sql'},\n 2: {name: 'keyword.other.table.sql'}\n },\n match:\n '(?i:^\\\\s*(alter)\\\\s+(aggregate|conversion|database|domain|function|group|index|language|operator class|operator|rule|schema|sequence|table|tablespace|trigger|type|user|view)\\\\s+)',\n name: 'meta.alter.sql'\n },\n {\n captures: {\n 1: {name: 'storage.type.sql'},\n 10: {name: 'constant.numeric.sql'},\n 11: {name: 'storage.type.sql'},\n 12: {name: 'storage.type.sql'},\n 13: {name: 'storage.type.sql'},\n 14: {name: 'constant.numeric.sql'},\n 15: {name: 'storage.type.sql'},\n 2: {name: 'storage.type.sql'},\n 3: {name: 'constant.numeric.sql'},\n 4: {name: 'storage.type.sql'},\n 5: {name: 'constant.numeric.sql'},\n 6: {name: 'storage.type.sql'},\n 7: {name: 'constant.numeric.sql'},\n 8: {name: 'constant.numeric.sql'},\n 9: {name: 'storage.type.sql'}\n },\n match:\n '(?xi)\\n\\n\\t\\t\\t\\t# normal stuff, capture 1\\n\\t\\t\\t\\t \\\\b(bigint|bigserial|bit|boolean|box|bytea|cidr|circle|date|double\\\\sprecision|inet|int|integer|line|lseg|macaddr|money|oid|path|point|polygon|real|serial|smallint|sysdate|text)\\\\b\\n\\n\\t\\t\\t\\t# numeric suffix, capture 2 + 3i\\n\\t\\t\\t\\t|\\\\b(bit\\\\svarying|character\\\\s(?:varying)?|tinyint|var\\\\schar|float|interval)\\\\((\\\\d+)\\\\)\\n\\n\\t\\t\\t\\t# optional numeric suffix, capture 4 + 5i\\n\\t\\t\\t\\t|\\\\b(char|number|varchar\\\\d?)\\\\b(?:\\\\((\\\\d+)\\\\))?\\n\\n\\t\\t\\t\\t# special case, capture 6 + 7i + 8i\\n\\t\\t\\t\\t|\\\\b(numeric|decimal)\\\\b(?:\\\\((\\\\d+),(\\\\d+)\\\\))?\\n\\n\\t\\t\\t\\t# special case, captures 9, 10i, 11\\n\\t\\t\\t\\t|\\\\b(times?)\\\\b(?:\\\\((\\\\d+)\\\\))?(\\\\swith(?:out)?\\\\stime\\\\szone\\\\b)?\\n\\n\\t\\t\\t\\t# special case, captures 12, 13, 14i, 15\\n\\t\\t\\t\\t|\\\\b(timestamp)(?:(s|tz))?\\\\b(?:\\\\((\\\\d+)\\\\))?(\\\\s(with|without)\\\\stime\\\\szone\\\\b)?\\n\\n\\t\\t\\t'\n },\n {\n match:\n '(?i:\\\\b((?:primary|foreign)\\\\s+key|references|on\\\\sdelete(\\\\s+cascade)?|check|constraint)\\\\b)',\n name: 'storage.modifier.sql'\n },\n {match: '\\\\b\\\\d+\\\\b', name: 'constant.numeric.sql'},\n {\n match:\n '(?i:\\\\b(select(\\\\s+distinct)?|insert\\\\s+(ignore\\\\s+)?into|update|delete|from|set|where|group\\\\sby|or|like|and|union(\\\\s+all)?|having|order\\\\sby|limit|(inner|cross)\\\\s+join|join|straight_join|(left|right)(\\\\s+outer)?\\\\s+join|natural(\\\\s+(left|right)(\\\\s+outer)?)?\\\\s+join)\\\\b)',\n name: 'keyword.other.DML.sql'\n },\n {\n match: '(?i:\\\\b(on|((is\\\\s+)?not\\\\s+)?null)\\\\b)',\n name: 'keyword.other.DDL.create.II.sql'\n },\n {match: '(?i:\\\\bvalues\\\\b)', name: 'keyword.other.DML.II.sql'},\n {\n match:\n '(?i:\\\\b(begin(\\\\s+work)?|start\\\\s+transaction|commit(\\\\s+work)?|rollback(\\\\s+work)?)\\\\b)',\n name: 'keyword.other.LUW.sql'\n },\n {\n match: '(?i:\\\\b(grant(\\\\swith\\\\sgrant\\\\soption)?|revoke)\\\\b)',\n name: 'keyword.other.authorization.sql'\n },\n {match: '(?i:\\\\bin\\\\b)', name: 'keyword.other.data-integrity.sql'},\n {\n match:\n '(?i:^\\\\s*(comment\\\\s+on\\\\s+(table|column|aggregate|constraint|database|domain|function|index|operator|rule|schema|sequence|trigger|type|view))\\\\s+.*?\\\\s+(is)\\\\s+)',\n name: 'keyword.other.object-comments.sql'\n },\n {match: '(?i)\\\\bAS\\\\b', name: 'keyword.other.alias.sql'},\n {match: '(?i)\\\\b(DESC|ASC)\\\\b', name: 'keyword.other.order.sql'},\n {match: '\\\\*', name: 'keyword.operator.star.sql'},\n {match: '[!<>]?=|<>|<|>', name: 'keyword.operator.comparison.sql'},\n {match: '-|\\\\+|/', name: 'keyword.operator.math.sql'},\n {match: '\\\\|\\\\|', name: 'keyword.operator.concatenator.sql'},\n {\n match:\n '(?i)\\\\b(CURRENT_(DATE|TIME(STAMP)?|USER)|(SESSION|SYSTEM)_USER)\\\\b',\n name: 'support.function.scalar.sql'\n },\n {\n match: '(?i)\\\\b(AVG|COUNT|MIN|MAX|SUM)(?=\\\\s*\\\\()',\n name: 'support.function.aggregate.sql'\n },\n {\n match:\n '(?i)\\\\b(CONCATENATE|CONVERT|LOWER|SUBSTRING|TRANSLATE|TRIM|UPPER)\\\\b',\n name: 'support.function.string.sql'\n },\n {\n captures: {\n 1: {name: 'constant.other.database-name.sql'},\n 2: {name: 'constant.other.table-name.sql'}\n },\n match: '(\\\\w+?)\\\\.(\\\\w+)'\n },\n {include: '#strings'},\n {include: '#regexps'},\n {\n captures: {\n 1: {name: 'punctuation.section.scope.begin.sql'},\n 2: {name: 'punctuation.section.scope.end.sql'}\n },\n match: '(\\\\()(\\\\))',\n name: 'meta.block.sql'\n }\n ],\n repository: {\n comments: {\n patterns: [\n {\n begin: '(^[ \\\\t]+)?(?=--)',\n beginCaptures: {\n 1: {name: 'punctuation.whitespace.comment.leading.sql'}\n },\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '--',\n beginCaptures: {0: {name: 'punctuation.definition.comment.sql'}},\n end: '\\\\n',\n name: 'comment.line.double-dash.sql'\n }\n ]\n },\n {\n begin: '(^[ \\\\t]+)?(?=#)',\n beginCaptures: {\n 1: {name: 'punctuation.whitespace.comment.leading.sql'}\n },\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '#',\n beginCaptures: {0: {name: 'punctuation.definition.comment.sql'}},\n end: '\\\\n',\n name: 'comment.line.number-sign.sql'\n }\n ]\n },\n {\n begin: '/\\\\*',\n captures: {0: {name: 'punctuation.definition.comment.sql'}},\n end: '\\\\*/',\n name: 'comment.block.c'\n }\n ]\n },\n regexps: {\n patterns: [\n {\n begin: '/(?=\\\\S.*/)',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.sql'}},\n end: '/',\n endCaptures: {0: {name: 'punctuation.definition.string.end.sql'}},\n name: 'string.regexp.sql',\n patterns: [\n {include: '#string_interpolation'},\n {match: '\\\\\\\\/', name: 'constant.character.escape.slash.sql'}\n ]\n },\n {\n begin: '%r\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.sql'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.string.end.sql'}},\n name: 'string.regexp.modr.sql',\n patterns: [{include: '#string_interpolation'}]\n }\n ]\n },\n string_escape: {match: '\\\\\\\\.', name: 'constant.character.escape.sql'},\n string_interpolation: {\n captures: {\n 1: {name: 'punctuation.definition.string.begin.sql'},\n 3: {name: 'punctuation.definition.string.end.sql'}\n },\n match: '(#\\\\{)([^\\\\}]*)(\\\\})',\n name: 'string.interpolated.sql'\n },\n strings: {\n patterns: [\n {\n captures: {\n 1: {name: 'punctuation.definition.string.begin.sql'},\n 2: {name: 'punctuation.definition.string.end.sql'}\n },\n match: \"(')[^'\\\\\\\\]*(')\",\n name: 'string.quoted.single.sql'\n },\n {\n begin: \"'\",\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.sql'}},\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.sql'}},\n name: 'string.quoted.single.sql',\n patterns: [{include: '#string_escape'}]\n },\n {\n captures: {\n 1: {name: 'punctuation.definition.string.begin.sql'},\n 2: {name: 'punctuation.definition.string.end.sql'}\n },\n match: '(`)[^`\\\\\\\\]*(`)',\n name: 'string.quoted.other.backtick.sql'\n },\n {\n begin: '`',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.sql'}},\n end: '`',\n endCaptures: {0: {name: 'punctuation.definition.string.end.sql'}},\n name: 'string.quoted.other.backtick.sql',\n patterns: [{include: '#string_escape'}]\n },\n {\n captures: {\n 1: {name: 'punctuation.definition.string.begin.sql'},\n 2: {name: 'punctuation.definition.string.end.sql'}\n },\n match: '(\")[^\"#]*(\")',\n name: 'string.quoted.double.sql'\n },\n {\n begin: '\"',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.sql'}},\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.sql'}},\n name: 'string.quoted.double.sql',\n patterns: [{include: '#string_interpolation'}]\n },\n {\n begin: '%\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.string.begin.sql'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.string.end.sql'}},\n name: 'string.other.quoted.brackets.sql',\n patterns: [{include: '#string_interpolation'}]\n }\n ]\n }\n },\n scopeName: 'source.sql'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.swift'],\n names: ['swift'],\n patterns: [{include: '#root'}],\n repository: {\n 'async-throws': {\n captures: {\n 1: {name: 'invalid.illegal.await-must-precede-throws.swift'},\n 2: {name: 'storage.modifier.exception.swift'},\n 3: {name: 'storage.modifier.async.swift'}\n },\n match:\n '\\\\b(?:(throws\\\\s+async|rethrows\\\\s+async)|(throws|rethrows)|(async))\\\\b'\n },\n attributes: {\n patterns: [\n {\n begin: '((@)available)(\\\\()',\n beginCaptures: {\n 1: {name: 'storage.modifier.attribute.swift'},\n 2: {name: 'punctuation.definition.attribute.swift'},\n 3: {name: 'punctuation.definition.arguments.begin.swift'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.arguments.end.swift'}\n },\n name: 'meta.attribute.available.swift',\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.other.platform.os.swift'},\n 2: {name: 'constant.numeric.swift'}\n },\n match:\n '\\\\b(swift|(?:iOS|macOS|OSX|watchOS|tvOS|visionOS|UIKitForMac)(?:ApplicationExtension)?)\\\\b(?:\\\\s+([0-9]+(?:\\\\.[0-9]+)*\\\\b))?'\n },\n {\n begin: '\\\\b(introduced|deprecated|obsoleted)\\\\s*(:)\\\\s*',\n beginCaptures: {\n 1: {name: 'keyword.other.swift'},\n 2: {name: 'punctuation.separator.key-value.swift'}\n },\n end: '(?!\\\\G)',\n patterns: [\n {\n match: '\\\\b[0-9]+(?:\\\\.[0-9]+)*\\\\b',\n name: 'constant.numeric.swift'\n }\n ]\n },\n {\n begin: '\\\\b(message|renamed)\\\\s*(:)\\\\s*(?=\")',\n beginCaptures: {\n 1: {name: 'keyword.other.swift'},\n 2: {name: 'punctuation.separator.key-value.swift'}\n },\n end: '(?!\\\\G)',\n patterns: [{include: '#literals'}]\n },\n {\n captures: {\n 1: {name: 'keyword.other.platform.all.swift'},\n 2: {name: 'keyword.other.swift'},\n 3: {name: 'invalid.illegal.character-not-allowed-here.swift'}\n },\n match:\n '(?:(\\\\*)|\\\\b(deprecated|unavailable|noasync)\\\\b)\\\\s*(.*?)(?=[,)])'\n }\n ]\n },\n {\n begin: '((@)objc)(\\\\()',\n beginCaptures: {\n 1: {name: 'storage.modifier.attribute.swift'},\n 2: {name: 'punctuation.definition.attribute.swift'},\n 3: {name: 'punctuation.definition.arguments.begin.swift'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.arguments.end.swift'}\n },\n name: 'meta.attribute.objc.swift',\n patterns: [\n {\n captures: {\n 1: {\n name: 'invalid.illegal.missing-colon-after-selector-piece.swift'\n }\n },\n match: '\\\\w*(?::(?:\\\\w*:)*(\\\\w*))?',\n name: 'entity.name.function.swift'\n }\n ]\n },\n {\n begin: '(@)(?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k)',\n beginCaptures: {\n 0: {name: 'storage.modifier.attribute.swift'},\n 1: {name: 'punctuation.definition.attribute.swift'},\n 2: {name: 'punctuation.definition.identifier.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '(?!\\\\G\\\\()',\n name: 'meta.attribute.swift',\n patterns: [\n {\n begin: '\\\\(',\n beginCaptures: {\n 0: {name: 'punctuation.definition.arguments.begin.swift'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.arguments.end.swift'}\n },\n name: 'meta.arguments.attribute.swift',\n patterns: [{include: '#expressions'}]\n }\n ]\n }\n ]\n },\n 'builtin-functions': {\n patterns: [\n {\n match:\n '(?<=\\\\.)(?:s(?:ort(?:ed)?|plit)|contains|index|partition|f(?:i(?:lter|rst)|orEach|latMap)|with(?:MutableCharacters|CString|U(?:nsafe(?:Mutable(?:BufferPointer|Pointer(?:s|To(?:Header|Elements)))|BufferPointer)|TF8Buffer))|m(?:in|a(?:p|x)))(?=\\\\s*[({])\\\\b',\n name: 'support.function.swift'\n },\n {\n match:\n '(?<=\\\\.)(?:s(?:ymmetricDifference|t(?:oreBytes|arts|ride)|ortInPlace|u(?:ccessor|ffix|btract(?:ing|InPlace|WithOverflow)?)|quareRoot|amePosition)|h(?:oldsUnique(?:Reference|OrPinnedReference)|as(?:Suffix|Prefix))|ne(?:gate(?:d)?|xt)|c(?:o(?:untByEnumerating|py(?:Bytes)?)|lamp(?:ed)?|reate)|t(?:o(?:IntMax|Opaque|UIntMax)|ake(?:RetainedValue|UnretainedValue)|r(?:uncatingRemainder|a(?:nscodedLength|ilSurrogate)))|i(?:s(?:MutableAndUniquelyReferenced(?:OrPinned)?|S(?:trictSu(?:perset(?:Of)?|bset(?:Of)?)|u(?:perset(?:Of)?|bset(?:Of)?))|Continuation|T(?:otallyOrdered|railSurrogate)|Disjoint(?:With)?|Unique(?:Reference|lyReferenced(?:OrPinned)?)|Equal|Le(?:ss(?:ThanOrEqualTo)?|adSurrogate))|n(?:sert(?:ContentsOf)?|tersect(?:ion|InPlace)?|itialize(?:Memory|From)?|dex(?:Of|ForKey)))|o(?:verlaps|bjectAt)|d(?:i(?:stance(?:To)?|vide(?:d|WithOverflow)?)|e(?:s(?:cendant|troy)|code(?:CString)?|initialize|alloc(?:ate(?:Capacity)?)?)|rop(?:First|Last))|u(?:n(?:ion(?:InPlace)?|derestimateCount|wrappedOrError)|p(?:date(?:Value)?|percased))|join(?:ed|WithSeparator)|p(?:op(?:First|Last)|ass(?:Retained|Unretained)|re(?:decessor|fix))|e(?:scape(?:d)?|n(?:code|umerate(?:d)?)|lementsEqual|xclusiveOr(?:InPlace)?)|f(?:orm(?:Remainder|S(?:ymmetricDifference|quareRoot)|TruncatingRemainder|In(?:tersection|dex)|Union)|latten|rom(?:CString(?:RepairingIllFormedUTF8)?|Opaque))|w(?:i(?:thMemoryRebound|dth)|rite(?:To)?)|l(?:o(?:wercased|ad)|e(?:adSurrogate|xicographical(?:Compare|lyPrecedes)))|a(?:ss(?:ign(?:BackwardFrom|From)?|umingMemoryBound)|d(?:d(?:ing(?:Product)?|Product|WithOverflow)?|vanced(?:By)?)|utorelease|ppend(?:ContentsOf)?|lloc(?:ate)?|bs)|r(?:ound(?:ed)?|e(?:serveCapacity|tain|duce|place(?:Range|Subrange)?|verse(?:d)?|quest(?:NativeBuffer|UniqueMutableBackingBuffer)|lease|m(?:ove(?:Range|Subrange|Value(?:ForKey)?|First|Last|A(?:tIndex|ll))?|ainder(?:WithOverflow)?)))|ge(?:nerate|t(?:Objects|Element))|m(?:in(?:imum(?:Magnitude)?|Element)|ove(?:Initialize(?:Memory|BackwardFrom|From)?|Assign(?:From)?)?|ultipl(?:y(?:WithOverflow)?|ied)|easure|a(?:ke(?:Iterator|Description)|x(?:imum(?:Magnitude)?|Element)))|bindMemory)(?=\\\\s*\\\\()',\n name: 'support.function.swift'\n },\n {\n match:\n '(?<=\\\\.)(?:s(?:uperclassMirror|amePositionIn|tartsWith)|nextObject|c(?:haracterAtIndex|o(?:untByEnumeratingWithState|pyWithZone)|ustom(?:Mirror|PlaygroundQuickLook))|is(?:EmptyInput|ASCII)|object(?:Enumerator|ForKey|AtIndex)|join|put|keyEnumerator|withUnsafeMutablePointerToValue|length|getMirror|m(?:oveInitializeAssignFrom|ember))(?=\\\\s*\\\\()',\n name: 'support.function.swift'\n }\n ]\n },\n 'builtin-global-functions': {\n patterns: [\n {\n begin: '\\\\b(type)(\\\\()\\\\s*(of)(:)',\n beginCaptures: {\n 1: {name: 'support.function.dynamic-type.swift'},\n 2: {name: 'punctuation.definition.arguments.begin.swift'},\n 3: {name: 'support.variable.parameter.swift'},\n 4: {name: 'punctuation.separator.argument-label.begin.swift'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.arguments.end.swift'}\n },\n patterns: [{include: '#expressions'}]\n },\n {\n match: '\\\\b(?:anyGenerator|autoreleasepool)(?=\\\\s*[({])\\\\b',\n name: 'support.function.swift'\n },\n {\n match:\n '\\\\b(?:s(?:tride(?:of(?:Value)?)?|izeof(?:Value)?|equence|wap)|numericCast|transcode|is(?:UniquelyReferenced(?:NonObjC)?|KnownUniquelyReferenced)|zip|d(?:ump|ebugPrint)|unsafe(?:BitCast|Downcast|Unwrap|Address(?:Of)?)|pr(?:int|econdition(?:Failure)?)|fatalError|with(?:Unsafe(?:MutablePointer|Pointer)|ExtendedLifetime|VaList)|a(?:ssert(?:ionFailure)?|lignof(?:Value)?|bs)|re(?:peatElement|adLine)|getVaList|m(?:in|ax))(?=\\\\s*\\\\()',\n name: 'support.function.swift'\n },\n {\n match:\n '\\\\b(?:s(?:ort|uffix|pli(?:ce|t))|insert|overlaps|d(?:istance|rop(?:First|Last))|join|prefix|extend|withUnsafe(?:MutablePointers|Pointers)|lazy|advance|re(?:flect|move(?:Range|Last|A(?:tIndex|ll))))(?=\\\\s*\\\\()',\n name: 'support.function.swift'\n }\n ]\n },\n 'builtin-properties': {\n patterns: [\n {\n match:\n '(?<=^Process\\\\.|\\\\WProcess\\\\.|^CommandLine\\\\.|\\\\WCommandLine\\\\.)(arguments|argc|unsafeArgv)',\n name: 'support.variable.swift'\n },\n {\n match:\n '(?<=\\\\.)(?:s(?:t(?:artIndex|ri(?:ngValue|de))|i(?:ze|gn(?:BitIndex|ificand(?:Bit(?:Count|Pattern)|Width)?|alingNaN)?)|u(?:perclassMirror|mmary|bscriptBaseAddress))|h(?:eader|as(?:hValue|PointerRepresentation))|n(?:ulTerminatedUTF8|ext(?:Down|Up)|a(?:n|tiveOwner))|c(?:haracters|ount(?:TrailingZeros)?|ustom(?:Mirror|PlaygroundQuickLook)|apacity)|i(?:s(?:S(?:ign(?:Minus|aling(?:NaN)?)|ubnormal)|N(?:ormal|aN)|Canonical|Infinite|Zero|Empty|Finite|ASCII)|n(?:dices|finity)|dentity)|owner|de(?:scription|bugDescription)|u(?:n(?:safelyUnwrapped|icodeScalar(?:s)?|derestimatedCount)|tf(?:16|8(?:Start|C(?:String|odeUnitCount))?)|intValue|ppercaseString|lp(?:OfOne)?)|p(?:i|ointee)|e(?:ndIndex|lements|xponent(?:Bit(?:Count|Pattern))?)|value(?:s)?|keys|quietNaN|f(?:irst(?:ElementAddress(?:IfContiguous)?)?|loatingPointClass)|l(?:ittleEndian|owercaseString|eastNo(?:nzeroMagnitude|rmalMagnitude)|a(?:st|zy))|a(?:l(?:ignment|l(?:ocatedElementCount|Zeros))|rray(?:PropertyIsNativeTypeChecked)?)|ra(?:dix|wValue)|greatestFiniteMagnitude|m(?:in|emory|ax)|b(?:yteS(?:ize|wapped)|i(?:nade|tPattern|gEndian)|uffer|ase(?:Address)?))\\\\b',\n name: 'support.variable.swift'\n },\n {\n match:\n '(?<=\\\\.)(?:boolValue|disposition|end|objectIdentifier|quickLookObject|start|valueType)\\\\b',\n name: 'support.variable.swift'\n },\n {\n match:\n '(?<=\\\\.)(?:s(?:calarValue|i(?:ze|gnalingNaN)|o(?:und|me)|uppressed|prite|et)|n(?:one|egative(?:Subnormal|Normal|Infinity|Zero))|c(?:ol(?:or|lection)|ustomized)|t(?:o(?:NearestOr(?:Even|AwayFromZero)|wardZero)|uple|ext)|i(?:nt|mage)|optional|d(?:ictionary|o(?:uble|wn))|u(?:Int|p|rl)|p(?:o(?:sitive(?:Subnormal|Normal|Infinity|Zero)|int)|lus)|e(?:rror|mptyInput)|view|quietNaN|float|a(?:ttributedString|wayFromZero)|r(?:ectangle|ange)|generated|minus|b(?:ool|ezierPath))\\\\b',\n name: 'support.variable.swift'\n }\n ]\n },\n 'builtin-types': {\n patterns: [\n {include: '#builtin-types-builtin-class-type'},\n {include: '#builtin-types-builtin-enum-type'},\n {include: '#builtin-types-builtin-protocol-type'},\n {include: '#builtin-types-builtin-struct-type'},\n {include: '#builtin-types-builtin-typealias'},\n {match: '\\\\bAny\\\\b', name: 'support.type.any.swift'}\n ]\n },\n 'builtin-types-builtin-class-type': {\n match:\n '\\\\b(Managed(Buffer|ProtoBuffer)|NonObjectiveCBase|AnyGenerator)\\\\b',\n name: 'support.class.swift'\n },\n 'builtin-types-builtin-enum-type': {\n patterns: [\n {\n match: '\\\\b(?:CommandLine|Process(?=\\\\.))\\\\b',\n name: 'support.constant.swift'\n },\n {match: '\\\\bNever\\\\b', name: 'support.constant.never.swift'},\n {\n match:\n '\\\\b(?:ImplicitlyUnwrappedOptional|Representation|MemoryLayout|FloatingPointClassification|SetIndexRepresentation|SetIteratorRepresentation|FloatingPointRoundingRule|UnicodeDecodingResult|Optional|DictionaryIndexRepresentation|AncestorRepresentation|DisplayStyle|PlaygroundQuickLook|Never|FloatingPointSign|Bit|DictionaryIteratorRepresentation)\\\\b',\n name: 'support.type.swift'\n },\n {\n match: '\\\\b(?:MirrorDisposition|QuickLookObject)\\\\b',\n name: 'support.type.swift'\n }\n ]\n },\n 'builtin-types-builtin-protocol-type': {\n patterns: [\n {\n match:\n '\\\\b(?:Ra(?:n(?:domAccess(?:Collection|Indexable)|geReplaceable(?:Collection|Indexable))|wRepresentable)|M(?:irrorPath|utable(?:Collection|Indexable))|Bi(?:naryFloatingPoint|twiseOperations|directional(?:Collection|Indexable))|S(?:tr(?:ideable|eamable)|igned(?:Number|Integer)|e(?:tAlgebra|quence))|Hashable|C(?:o(?:llection|mparable)|ustom(?:Reflectable|StringConvertible|DebugStringConvertible|PlaygroundQuickLookable|LeafReflectable)|VarArg)|TextOutputStream|I(?:n(?:teger(?:Arithmetic)?|dexable(?:Base)?)|teratorProtocol)|OptionSet|Un(?:signedInteger|icodeCodec)|E(?:quatable|rror|xpressibleBy(?:BooleanLiteral|String(?:Interpolation|Literal)|NilLiteral|IntegerLiteral|DictionaryLiteral|UnicodeScalarLiteral|ExtendedGraphemeClusterLiteral|FloatLiteral|ArrayLiteral))|FloatingPoint|L(?:osslessStringConvertible|azy(?:SequenceProtocol|CollectionProtocol))|A(?:nyObject|bsoluteValuable))\\\\b',\n name: 'support.type.swift'\n },\n {\n match:\n '\\\\b(?:Ran(?:domAccessIndexType|geReplaceableCollectionType)|GeneratorType|M(?:irror(?:Type|PathType)|utable(?:Sliceable|CollectionType))|B(?:i(?:twiseOperationsType|directionalIndexType)|oolean(?:Type|LiteralConvertible))|S(?:tring(?:InterpolationConvertible|LiteralConvertible)|i(?:nkType|gned(?:NumberType|IntegerType))|e(?:tAlgebraType|quenceType)|liceable)|NilLiteralConvertible|C(?:ollectionType|VarArgType)|Inte(?:rvalType|ger(?:Type|LiteralConvertible|ArithmeticType))|O(?:utputStreamType|ptionSetType)|DictionaryLiteralConvertible|Un(?:signedIntegerType|icode(?:ScalarLiteralConvertible|CodecType))|E(?:rrorType|xten(?:sibleCollectionType|dedGraphemeClusterLiteralConvertible))|F(?:orwardIndexType|loat(?:ingPointType|LiteralConvertible))|A(?:nyCollectionType|rrayLiteralConvertible))\\\\b',\n name: 'support.type.swift'\n }\n ]\n },\n 'builtin-types-builtin-struct-type': {\n patterns: [\n {\n match:\n '\\\\b(?:R(?:e(?:peat(?:ed)?|versed(?:RandomAccess(?:Collection|Index)|Collection|Index))|an(?:domAccessSlice|ge(?:Replaceable(?:RandomAccessSlice|BidirectionalSlice|Slice)|Generator)?))|Generator(?:Sequence|OfOne)|M(?:irror|utable(?:Ran(?:domAccessSlice|geReplaceable(?:RandomAccessSlice|BidirectionalSlice|Slice))|BidirectionalSlice|Slice)|anagedBufferPointer)|B(?:idirectionalSlice|ool)|S(?:t(?:aticString|ri(?:ng|deT(?:hrough(?:Generator|Iterator)?|o(?:Generator|Iterator)?)))|et(?:I(?:ndex|terator))?|lice)|HalfOpenInterval|C(?:haracter(?:View)?|o(?:ntiguousArray|untable(?:Range|ClosedRange)|llectionOfOne)|OpaquePointer|losed(?:Range(?:I(?:ndex|terator))?|Interval)|VaListPointer)|I(?:n(?:t(?:16|8|32|64)?|d(?:ices|ex(?:ing(?:Generator|Iterator))?))|terator(?:Sequence|OverOne)?)|Zip2(?:Sequence|Iterator)|O(?:paquePointer|bjectIdentifier)|D(?:ictionary(?:I(?:ndex|terator)|Literal)?|ouble|efault(?:RandomAccessIndices|BidirectionalIndices|Indices))|U(?:n(?:safe(?:RawPointer|Mutable(?:RawPointer|BufferPointer|Pointer)|BufferPointer(?:Generator|Iterator)?|Pointer)|icodeScalar(?:View)?|foldSequence|managed)|TF(?:16(?:View)?|8(?:View)?|32)|Int(?:16|8|32|64)?)|Join(?:Generator|ed(?:Sequence|Iterator))|PermutationGenerator|E(?:numerate(?:Generator|Sequence|d(?:Sequence|Iterator))|mpty(?:Generator|Collection|Iterator))|Fl(?:oat(?:80)?|atten(?:Generator|BidirectionalCollection(?:Index)?|Sequence|Collection(?:Index)?|Iterator))|L(?:egacyChildren|azy(?:RandomAccessCollection|Map(?:RandomAccessCollection|Generator|BidirectionalCollection|Sequence|Collection|Iterator)|BidirectionalCollection|Sequence|Collection|Filter(?:Generator|BidirectionalCollection|Sequence|Collection|I(?:ndex|terator))))|A(?:ny(?:RandomAccessCollection|Generator|BidirectionalCollection|Sequence|Hashable|Collection|I(?:ndex|terator))|utoreleasingUnsafeMutablePointer|rray(?:Slice)?))\\\\b',\n name: 'support.type.swift'\n },\n {\n match:\n '\\\\b(?:R(?:everse(?:RandomAccess(?:Collection|Index)|Collection|Index)|awByte)|Map(?:Generator|Sequence|Collection)|S(?:inkOf|etGenerator)|Zip2Generator|DictionaryGenerator|Filter(?:Generator|Sequence|Collection(?:Index)?)|LazyForwardCollection|Any(?:RandomAccessIndex|BidirectionalIndex|Forward(?:Collection|Index)))\\\\b',\n name: 'support.type.swift'\n }\n ]\n },\n 'builtin-types-builtin-typealias': {\n patterns: [\n {\n match:\n '\\\\b(?:Raw(?:Significand|Exponent|Value)|B(?:ooleanLiteralType|uffer|ase)|S(?:t(?:orage|r(?:i(?:ngLiteralType|de)|eam(?:1|2)))|ubSequence)|NativeBuffer|C(?:hild(?:ren)?|Bool|S(?:hort|ignedChar)|odeUnit|Char(?:16|32)?|Int|Double|Unsigned(?:Short|Char|Int|Long(?:Long)?)|Float|WideChar|Long(?:Long)?)|I(?:n(?:t(?:Max|egerLiteralType)|d(?:ices|ex(?:Distance)?))|terator)|Distance|U(?:n(?:icodeScalar(?:Type|Index|View|LiteralType)|foldFirstSequence)|TF(?:16(?:Index|View)|8Index)|IntMax)|E(?:lement(?:s)?|x(?:tendedGraphemeCluster(?:Type|LiteralType)|ponent))|V(?:oid|alue)|Key|Float(?:32|LiteralType|64)|AnyClass)\\\\b',\n name: 'support.type.swift'\n },\n {\n match: '\\\\b(?:Generator|PlaygroundQuickLook|UWord|Word)\\\\b',\n name: 'support.type.swift'\n }\n ]\n },\n 'code-block': {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.section.scope.begin.swift'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.section.scope.end.swift'}},\n patterns: [{include: '$self'}]\n },\n comments: {\n patterns: [\n {\n captures: {1: {name: 'punctuation.definition.comment.swift'}},\n match: '\\\\A^(#!).*$\\\\n?',\n name: 'comment.line.number-sign.swift'\n },\n {\n begin: '/\\\\*\\\\*(?!/)',\n beginCaptures: {\n 0: {name: 'punctuation.definition.comment.begin.swift'}\n },\n end: '\\\\*/',\n endCaptures: {0: {name: 'punctuation.definition.comment.end.swift'}},\n name: 'comment.block.documentation.swift',\n patterns: [{include: '#comments-nested'}]\n },\n {\n begin: '/\\\\*:',\n beginCaptures: {\n 0: {name: 'punctuation.definition.comment.begin.swift'}\n },\n end: '\\\\*/',\n endCaptures: {0: {name: 'punctuation.definition.comment.end.swift'}},\n name: 'comment.block.documentation.playground.swift',\n patterns: [{include: '#comments-nested'}]\n },\n {\n begin: '/\\\\*',\n beginCaptures: {\n 0: {name: 'punctuation.definition.comment.begin.swift'}\n },\n end: '\\\\*/',\n endCaptures: {0: {name: 'punctuation.definition.comment.end.swift'}},\n name: 'comment.block.swift',\n patterns: [{include: '#comments-nested'}]\n },\n {\n match: '\\\\*/',\n name: 'invalid.illegal.unexpected-end-of-block-comment.swift'\n },\n {\n begin: '(^[ \\\\t]+)?(?=//)',\n beginCaptures: {\n 1: {name: 'punctuation.whitespace.comment.leading.swift'}\n },\n end: '(?!\\\\G)',\n patterns: [\n {\n begin: '///',\n beginCaptures: {\n 0: {name: 'punctuation.definition.comment.swift'}\n },\n end: '$',\n name: 'comment.line.triple-slash.documentation.swift'\n },\n {\n begin: '//:',\n beginCaptures: {\n 0: {name: 'punctuation.definition.comment.swift'}\n },\n end: '$',\n name: 'comment.line.double-slash.documentation.swift'\n },\n {\n begin: '//',\n beginCaptures: {\n 0: {name: 'punctuation.definition.comment.swift'}\n },\n end: '$',\n name: 'comment.line.double-slash.swift'\n }\n ]\n }\n ]\n },\n 'comments-nested': {\n begin: '/\\\\*',\n end: '\\\\*/',\n patterns: [{include: '#comments-nested'}]\n },\n 'compiler-control': {\n patterns: [\n {\n begin: '^\\\\s*(#)(if|elseif)\\\\s+(false)\\\\b.*?(?=$|//|/\\\\*)',\n beginCaptures: {\n 0: {name: 'meta.preprocessor.conditional.swift'},\n 1: {name: 'punctuation.definition.preprocessor.swift'},\n 2: {name: 'keyword.control.import.preprocessor.conditional.swift'},\n 3: {name: 'constant.language.boolean.swift'}\n },\n contentName: 'comment.block.preprocessor.swift',\n end: '(?=^\\\\s*(#(elseif|else|endif)\\\\b))'\n },\n {\n begin: '^\\\\s*(#)(if|elseif)\\\\s+',\n captures: {\n 1: {name: 'punctuation.definition.preprocessor.swift'},\n 2: {name: 'keyword.control.import.preprocessor.conditional.swift'}\n },\n end: '(?=\\\\s*(?://|/\\\\*))|$',\n name: 'meta.preprocessor.conditional.swift',\n patterns: [\n {match: '(&&|\\\\|\\\\|)', name: 'keyword.operator.logical.swift'},\n {\n match: '\\\\b(true|false)\\\\b',\n name: 'constant.language.boolean.swift'\n },\n {\n captures: {\n 1: {name: 'keyword.other.condition.swift'},\n 2: {name: 'punctuation.definition.parameters.begin.swift'},\n 3: {name: 'support.constant.platform.architecture.swift'},\n 4: {name: 'punctuation.definition.parameters.end.swift'}\n },\n match:\n '\\\\b(arch)\\\\s*(\\\\()\\\\s*(?:(arm|arm64|powerpc64|powerpc64le|i386|x86_64|s390x)|\\\\w+)\\\\s*(\\\\))'\n },\n {\n captures: {\n 1: {name: 'keyword.other.condition.swift'},\n 2: {name: 'punctuation.definition.parameters.begin.swift'},\n 3: {name: 'support.constant.platform.os.swift'},\n 4: {name: 'punctuation.definition.parameters.end.swift'}\n },\n match:\n '\\\\b(os)\\\\s*(\\\\()\\\\s*(?:(macOS|OSX|iOS|tvOS|watchOS|visionOS|Android|Linux|FreeBSD|Windows|PS4)|\\\\w+)\\\\s*(\\\\))'\n },\n {\n captures: {\n 1: {name: 'keyword.other.condition.swift'},\n 2: {name: 'punctuation.definition.parameters.begin.swift'},\n 3: {name: 'entity.name.type.module.swift'},\n 4: {name: 'punctuation.definition.parameters.end.swift'}\n },\n match:\n '\\\\b(canImport)\\\\s*(\\\\()([\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*)(\\\\))'\n },\n {\n begin: '\\\\b(targetEnvironment)\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'keyword.other.condition.swift'},\n 2: {name: 'punctuation.definition.parameters.begin.swift'}\n },\n end: '(\\\\))|$',\n endCaptures: {\n 1: {name: 'punctuation.definition.parameters.end.swift'}\n },\n patterns: [\n {\n match: '\\\\b(simulator|UIKitForMac)\\\\b',\n name: 'support.constant.platform.environment.swift'\n }\n ]\n },\n {\n begin: '\\\\b(swift|compiler)\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'keyword.other.condition.swift'},\n 2: {name: 'punctuation.definition.parameters.begin.swift'}\n },\n end: '(\\\\))|$',\n endCaptures: {\n 1: {name: 'punctuation.definition.parameters.end.swift'}\n },\n patterns: [\n {match: '>=|<', name: 'keyword.operator.comparison.swift'},\n {\n match: '\\\\b[0-9]+(?:\\\\.[0-9]+)*\\\\b',\n name: 'constant.numeric.swift'\n }\n ]\n }\n ]\n },\n {\n captures: {\n 1: {name: 'punctuation.definition.preprocessor.swift'},\n 2: {name: 'keyword.control.import.preprocessor.conditional.swift'},\n 3: {\n patterns: [\n {\n match: '\\\\S+',\n name: 'invalid.illegal.character-not-allowed-here.swift'\n }\n ]\n }\n },\n match: '^\\\\s*(#)(else|endif)(.*?)(?=$|//|/\\\\*)',\n name: 'meta.preprocessor.conditional.swift'\n },\n {\n captures: {\n 1: {name: 'punctuation.definition.preprocessor.swift'},\n 2: {\n name: 'keyword.control.import.preprocessor.sourcelocation.swift'\n },\n 4: {name: 'punctuation.definition.parameters.begin.swift'},\n 5: {\n patterns: [\n {\n begin: '(file)\\\\s*(:)\\\\s*(?=\")',\n beginCaptures: {\n 1: {name: 'support.variable.parameter.swift'},\n 2: {name: 'punctuation.separator.key-value.swift'}\n },\n end: '(?!\\\\G)',\n patterns: [{include: '#literals'}]\n },\n {\n captures: {\n 1: {name: 'support.variable.parameter.swift'},\n 2: {name: 'punctuation.separator.key-value.swift'},\n 3: {name: 'constant.numeric.integer.swift'}\n },\n match: '(line)\\\\s*(:)\\\\s*([0-9]+)'\n },\n {match: ',', name: 'punctuation.separator.parameters.swift'},\n {\n match: '\\\\S+',\n name: 'invalid.illegal.character-not-allowed-here.swift'\n }\n ]\n },\n 6: {name: 'punctuation.definition.parameters.begin.swift'},\n 7: {\n patterns: [\n {\n match: '\\\\S+',\n name: 'invalid.illegal.character-not-allowed-here.swift'\n }\n ]\n }\n },\n match:\n '^\\\\s*(#)(sourceLocation)((\\\\()([^)]*)(\\\\)))(.*?)(?=$|//|/\\\\*)',\n name: 'meta.preprocessor.sourcelocation.swift'\n }\n ]\n },\n conditionals: {\n patterns: [\n {\n begin: '(?&|\\\\^~.])(->)(?![/=\\\\-+!*%<>&|\\\\^~.])'\n },\n {\n captures: {1: {name: 'keyword.operator.type.composition.swift'}},\n match: '(?&|\\\\^~.])(&)(?![/=\\\\-+!*%<>&|\\\\^~.])'\n },\n {match: '[?!]', name: 'keyword.operator.type.optional.swift'},\n {\n match: '\\\\.\\\\.\\\\.',\n name: 'keyword.operator.function.variadic-parameter.swift'\n },\n {match: '\\\\bprotocol\\\\b', name: 'keyword.other.type.composition.swift'},\n {\n match: '(?<=\\\\.)(?:Protocol|Type)\\\\b',\n name: 'keyword.other.type.metatype.swift'\n },\n {include: '#declarations-available-types-tuple-type'},\n {include: '#declarations-available-types-collection-type'},\n {include: '#declarations-generic-argument-clause'}\n ]\n },\n 'declarations-available-types-collection-type': {\n begin: '\\\\[',\n beginCaptures: {\n 0: {name: 'punctuation.section.collection-type.begin.swift'}\n },\n end: '\\\\]|(?=[>){}])',\n endCaptures: {0: {name: 'punctuation.section.collection-type.end.swift'}},\n patterns: [\n {include: '#declarations-available-types'},\n {\n begin: ':',\n beginCaptures: {0: {name: 'punctuation.separator.key-value.swift'}},\n end: '(?=\\\\]|[>){}])',\n patterns: [\n {\n match: ':',\n name: 'invalid.illegal.extra-colon-in-dictionary-type.swift'\n },\n {include: '#declarations-available-types'}\n ]\n }\n ]\n },\n 'declarations-available-types-tuple-type': {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.tuple-type.begin.swift'}},\n end: '\\\\)|(?=[>\\\\]{}])',\n endCaptures: {0: {name: 'punctuation.section.tuple-type.end.swift'}},\n patterns: [{include: '#declarations-available-types'}]\n },\n 'declarations-extension': {\n begin:\n '\\\\b(extension)\\\\s+((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))',\n beginCaptures: {\n 1: {name: 'storage.type.$1.swift'},\n 2: {\n name: 'entity.name.type.swift',\n patterns: [{include: '#declarations-available-types'}]\n },\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '(?<=\\\\})',\n name: 'meta.definition.type.$1.swift',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-generic-where-clause'},\n {include: '#declarations-inheritance-clause'},\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.type.begin.swift'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.type.end.swift'}},\n name: 'meta.definition.type.body.swift',\n patterns: [{include: '$self'}]\n }\n ]\n },\n 'declarations-function': {\n begin:\n '(?x)\\n\\\\b\\n(func)\\n\\\\s+\\n(\\n (?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k)\\n | (?:\\n (\\n (? # operator-head\\n [/=\\\\-+!*%<>&|^~?]\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n )\\n (\\n \\\\g\\n | (? # operator-character\\n [\\\\x{0300}-\\\\x{036F}]\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n )*\\n )\\n | ( \\\\. ( \\\\g | \\\\g | \\\\. )+ ) # Dot operators\\n )\\n)\\n\\\\s*\\n(?=\\\\(|<)',\n beginCaptures: {\n 1: {name: 'storage.type.function.swift'},\n 2: {name: 'entity.name.function.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '(?<=\\\\})|$(?# functions in protocol declarations or generated interfaces have no body)',\n name: 'meta.definition.function.swift',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-generic-parameter-clause'},\n {include: '#declarations-parameter-clause'},\n {include: '#declarations-function-result'},\n {include: '#async-throws'},\n {include: '#declarations-generic-where-clause'},\n {\n begin: '(\\\\{)',\n beginCaptures: {\n 1: {name: 'punctuation.section.function.begin.swift'}\n },\n end: '(\\\\})',\n endCaptures: {1: {name: 'punctuation.section.function.end.swift'}},\n name: 'meta.definition.function.body.swift',\n patterns: [{include: '$self'}]\n }\n ]\n },\n 'declarations-function-initializer': {\n begin:\n '(?&|\\\\^~.])(->)(?![/=\\\\-+!*%<>&|\\\\^~.])\\\\s*',\n beginCaptures: {1: {name: 'keyword.operator.function-result.swift'}},\n end: '(?!\\\\G)(?=\\\\{|\\\\bwhere\\\\b|;|=)|$',\n name: 'meta.function-result.swift',\n patterns: [{include: '#declarations-available-types'}]\n },\n 'declarations-function-subscript': {\n begin: '(?|(?=[)\\\\]{}])',\n endCaptures: {\n 0: {name: 'punctuation.separator.generic-argument-clause.end.swift'}\n },\n name: 'meta.generic-argument-clause.swift',\n patterns: [{include: '#declarations-available-types'}]\n },\n 'declarations-generic-parameter-clause': {\n begin: '<',\n beginCaptures: {\n 0: {name: 'punctuation.separator.generic-parameter-clause.begin.swift'}\n },\n end: \">|(?=[^\\\\w\\\\d:<>\\\\s,=&`])(?# characters besides these are never valid in a generic param list -- even if it's not really a valid clause, we should stop trying to parse it if we see one of them.)\",\n endCaptures: {\n 0: {name: 'punctuation.separator.generic-parameter-clause.end.swift'}\n },\n name: 'meta.generic-parameter-clause.swift',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-generic-where-clause'},\n {match: '\\\\beach\\\\b', name: 'keyword.control.loop.swift'},\n {\n captures: {1: {name: 'variable.language.generic-parameter.swift'}},\n match: '\\\\b((?!\\\\d)\\\\w[\\\\w\\\\d]*)\\\\b'\n },\n {match: ',', name: 'punctuation.separator.generic-parameters.swift'},\n {\n begin: '(:)\\\\s*',\n beginCaptures: {\n 1: {\n name: 'punctuation.separator.generic-parameter-constraint.swift'\n }\n },\n end: '(?=[,>]|(?!\\\\G)\\\\bwhere\\\\b)',\n name: 'meta.generic-parameter-constraint.swift',\n patterns: [\n {\n begin: '\\\\G',\n end: '(?=[,>]|(?!\\\\G)\\\\bwhere\\\\b)',\n name: 'entity.other.inherited-class.swift',\n patterns: [\n {include: '#declarations-type-identifier'},\n {include: '#declarations-type-operators'}\n ]\n }\n ]\n }\n ]\n },\n 'declarations-generic-where-clause': {\n begin: '\\\\b(where)\\\\b\\\\s*',\n beginCaptures: {\n 1: {name: 'keyword.other.generic-constraint-introducer.swift'}\n },\n end: '(?!\\\\G)$|(?=[>{};\\\\n]|//|/\\\\*)',\n name: 'meta.generic-where-clause.swift',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-generic-where-clause-requirement-list'}\n ]\n },\n 'declarations-generic-where-clause-requirement-list': {\n begin: '\\\\G|,\\\\s*',\n end: '(?=[,>{};\\\\n]|//|/\\\\*)',\n patterns: [\n {include: '#comments'},\n {include: '#constraint'},\n {include: '#declarations-available-types'},\n {\n begin: '(?&|\\\\^~.])(==)(?![/=\\\\-+!*%<>&|\\\\^~.])',\n beginCaptures: {\n 1: {name: 'keyword.operator.generic-constraint.same-type.swift'}\n },\n end: '(?=\\\\s*[,>{};\\\\n]|//|/\\\\*)',\n name: 'meta.generic-where-clause.same-type-requirement.swift',\n patterns: [{include: '#declarations-available-types'}]\n },\n {\n begin: '(?&|\\\\^~.])(:)(?![/=\\\\-+!*%<>&|\\\\^~.])',\n beginCaptures: {\n 1: {name: 'keyword.operator.generic-constraint.conforms-to.swift'}\n },\n end: '(?=\\\\s*[,>{};\\\\n]|//|/\\\\*)',\n name: 'meta.generic-where-clause.conformance-requirement.swift',\n patterns: [\n {\n begin: '\\\\G\\\\s*',\n contentName: 'entity.other.inherited-class.swift',\n end: '(?=\\\\s*[,>{};\\\\n]|//|/\\\\*)',\n patterns: [{include: '#declarations-available-types'}]\n }\n ]\n }\n ]\n },\n 'declarations-import': {\n begin: '(?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k)',\n name: 'entity.name.type.swift'\n },\n {\n match: '(?x)\\n(?<=\\\\G|\\\\.)\\n\\\\$[0-9]+',\n name: 'entity.name.type.swift'\n },\n {\n captures: {\n 1: {\n patterns: [\n {\n match: '\\\\.',\n name: 'invalid.illegal.dot-not-allowed-here.swift'\n }\n ]\n }\n },\n match:\n '(?x)\\n(?<=\\\\G|\\\\.)\\n(?:\\n (\\n (? # operator-head\\n [/=\\\\-+!*%<>&|^~?]\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n )\\n (\\n \\\\g\\n | (? # operator-character\\n [\\\\x{0300}-\\\\x{036F}]\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n )*\\n )\\n | ( \\\\. ( \\\\g | \\\\g | \\\\. )+ ) # Dot operators\\n)\\n(?=\\\\.|;|$|//|/\\\\*|\\\\s)',\n name: 'entity.name.type.swift'\n },\n {match: '\\\\.', name: 'punctuation.separator.import.swift'},\n {\n begin: '(?!\\\\s*(;|$|//|/\\\\*))',\n end: '(?=\\\\s*(;|$|//|/\\\\*))',\n name: 'invalid.illegal.character-not-allowed-here.swift'\n }\n ]\n }\n ]\n },\n 'declarations-inheritance-clause': {\n begin: '(:)(?=\\\\s*\\\\{)|(:)\\\\s*',\n beginCaptures: {\n 1: {name: 'invalid.illegal.empty-inheritance-clause.swift'},\n 2: {name: 'punctuation.separator.inheritance-clause.swift'}\n },\n end: '(?!\\\\G)$|(?=[={}]|(?!\\\\G)\\\\bwhere\\\\b)',\n name: 'meta.inheritance-clause.swift',\n patterns: [\n {\n begin: '\\\\bclass\\\\b',\n beginCaptures: {0: {name: 'storage.type.class.swift'}},\n end: '(?=[={}]|(?!\\\\G)\\\\bwhere\\\\b)',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-inheritance-clause-more-types'}\n ]\n },\n {\n begin: '\\\\G',\n end: '(?!\\\\G)$|(?=[={}]|(?!\\\\G)\\\\bwhere\\\\b)',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-inheritance-clause-inherited-type'},\n {include: '#declarations-inheritance-clause-more-types'},\n {include: '#declarations-type-operators'}\n ]\n }\n ]\n },\n 'declarations-inheritance-clause-inherited-type': {\n begin: '(?=[`\\\\p{L}_])',\n end: '(?!\\\\G)',\n name: 'entity.other.inherited-class.swift',\n patterns: [{include: '#declarations-type-identifier'}]\n },\n 'declarations-inheritance-clause-more-types': {\n begin: ',\\\\s*',\n end: '(?!\\\\G)(?!//|/\\\\*)|(?=[,={}]|(?!\\\\G)\\\\bwhere\\\\b)',\n name: 'meta.inheritance-list.more-types',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-inheritance-clause-inherited-type'},\n {include: '#declarations-inheritance-clause-more-types'},\n {include: '#declarations-type-operators'}\n ]\n },\n 'declarations-macro': {\n begin:\n '(?x)\\n\\\\b\\n(macro)\\n\\\\s+\\n((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))\\n\\\\s*\\n(?=\\\\(|<|=)',\n beginCaptures: {\n 1: {name: 'storage.type.function.swift'},\n 2: {name: 'entity.name.function.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '$|(?=;|//|/\\\\*|\\\\}|=)',\n name: 'meta.definition.macro.swift',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-generic-parameter-clause'},\n {include: '#declarations-parameter-clause'},\n {include: '#declarations-function-result'},\n {include: '#async-throws'},\n {include: '#declarations-generic-where-clause'}\n ]\n },\n 'declarations-operator': {\n begin:\n '(?x)\\n(?:\\n \\\\b(prefix|infix|postfix)\\n \\\\s+\\n)?\\n\\\\b\\n(operator)\\n\\\\s+\\n(\\n (\\n (? # operator-head\\n [/=\\\\-+!*%<>&|^~?]\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n )\\n (\\n \\\\g\\n | \\\\. # Invalid dot\\n | (? # operator-character\\n [\\\\x{0300}-\\\\x{036F}]\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n )*+\\n )\\n | ( \\\\. ( \\\\g | \\\\g | \\\\. )++ ) # Dot operators\\n)\\n\\\\s*',\n beginCaptures: {\n 1: {name: 'storage.modifier.swift'},\n 2: {name: 'storage.type.function.operator.swift'},\n 3: {name: 'entity.name.function.operator.swift'},\n 4: {\n name: 'entity.name.function.operator.swift',\n patterns: [\n {match: '\\\\.', name: 'invalid.illegal.dot-not-allowed-here.swift'}\n ]\n }\n },\n end: '(;)|$\\\\n?|(?=//|/\\\\*)',\n endCaptures: {1: {name: 'punctuation.terminator.statement.swift'}},\n name: 'meta.definition.operator.swift',\n patterns: [\n {include: '#declarations-operator-swift2'},\n {include: '#declarations-operator-swift3'},\n {\n match: '((?!$|;|//|/\\\\*)\\\\S)+',\n name: 'invalid.illegal.character-not-allowed-here.swift'\n }\n ]\n },\n 'declarations-operator-swift2': {\n begin: '\\\\G(\\\\{)',\n beginCaptures: {1: {name: 'punctuation.definition.operator.begin.swift'}},\n end: '(\\\\})',\n endCaptures: {1: {name: 'punctuation.definition.operator.end.swift'}},\n patterns: [\n {include: '#comments'},\n {\n captures: {\n 1: {name: 'storage.modifier.swift'},\n 2: {name: 'keyword.other.operator.associativity.swift'}\n },\n match: '\\\\b(associativity)\\\\s+(left|right)\\\\b'\n },\n {\n captures: {\n 1: {name: 'storage.modifier.swift'},\n 2: {name: 'constant.numeric.integer.swift'}\n },\n match: '\\\\b(precedence)\\\\s+([0-9]+)\\\\b'\n },\n {\n captures: {1: {name: 'storage.modifier.swift'}},\n match: '\\\\b(assignment)\\\\b'\n }\n ]\n },\n 'declarations-operator-swift3': {\n captures: {\n 2: {\n name: 'entity.other.inherited-class.swift',\n patterns: [{include: '#declarations-types-precedencegroup'}]\n },\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n match: '\\\\G(:)\\\\s*((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))'\n },\n 'declarations-parameter-clause': {\n begin: '(\\\\()',\n beginCaptures: {\n 1: {name: 'punctuation.definition.parameters.begin.swift'}\n },\n end: '(\\\\))(?:\\\\s*(async)\\\\b)?',\n endCaptures: {\n 1: {name: 'punctuation.definition.parameters.end.swift'},\n 2: {name: 'storage.modifier.async.swift'}\n },\n name: 'meta.parameter-clause.swift',\n patterns: [{include: '#declarations-parameter-list'}]\n },\n 'declarations-parameter-list': {\n patterns: [\n {\n captures: {\n 1: {name: 'entity.name.function.swift'},\n 2: {name: 'punctuation.definition.identifier.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'variable.parameter.function.swift'},\n 5: {name: 'punctuation.definition.identifier.swift'},\n 6: {name: 'punctuation.definition.identifier.swift'}\n },\n match:\n '((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))\\\\s+((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))(?=\\\\s*:)'\n },\n {\n captures: {\n 1: {name: 'variable.parameter.function.swift'},\n 2: {name: 'entity.name.function.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n match: '(((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k)))(?=\\\\s*:)'\n },\n {\n begin: ':\\\\s*(?!\\\\s)',\n end: '(?=[,)])',\n patterns: [\n {include: '#declarations-available-types'},\n {\n match: ':',\n name: 'invalid.illegal.extra-colon-in-parameter-list.swift'\n },\n {\n begin: '=',\n beginCaptures: {0: {name: 'keyword.operator.assignment.swift'}},\n end: '(?=[,)])',\n patterns: [{include: '#expressions'}]\n }\n ]\n }\n ]\n },\n 'declarations-precedencegroup': {\n begin:\n '\\\\b(precedencegroup)\\\\s+((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))\\\\s*(?=\\\\{)',\n beginCaptures: {\n 1: {name: 'storage.type.precedencegroup.swift'},\n 2: {name: 'entity.name.type.precedencegroup.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '(?!\\\\G)',\n name: 'meta.definition.precedencegroup.swift',\n patterns: [\n {\n begin: '\\\\{',\n beginCaptures: {\n 0: {name: 'punctuation.definition.precedencegroup.begin.swift'}\n },\n end: '\\\\}',\n endCaptures: {\n 0: {name: 'punctuation.definition.precedencegroup.end.swift'}\n },\n patterns: [\n {include: '#comments'},\n {\n captures: {\n 1: {name: 'storage.modifier.swift'},\n 2: {\n name: 'entity.other.inherited-class.swift',\n patterns: [{include: '#declarations-types-precedencegroup'}]\n },\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n match:\n '\\\\b(higherThan|lowerThan)\\\\s*:\\\\s*((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))'\n },\n {\n captures: {\n 1: {name: 'storage.modifier.swift'},\n 2: {name: 'keyword.other.operator.associativity.swift'}\n },\n match: '\\\\b(associativity)\\\\b(?:\\\\s*:\\\\s*(right|left|none)\\\\b)?'\n },\n {\n captures: {\n 1: {name: 'storage.modifier.swift'},\n 2: {name: 'constant.language.boolean.swift'}\n },\n match: '\\\\b(assignment)\\\\b(?:\\\\s*:\\\\s*(true|false)\\\\b)?'\n }\n ]\n }\n ]\n },\n 'declarations-protocol': {\n begin:\n '\\\\b(protocol)\\\\s+((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))',\n beginCaptures: {\n 1: {name: 'storage.type.$1.swift'},\n 2: {name: 'entity.name.type.$1.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '(?<=\\\\})',\n name: 'meta.definition.type.protocol.swift',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-inheritance-clause'},\n {include: '#declarations-generic-where-clause'},\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.type.begin.swift'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.type.end.swift'}},\n name: 'meta.definition.type.body.swift',\n patterns: [\n {include: '#declarations-protocol-protocol-method'},\n {include: '#declarations-protocol-protocol-initializer'},\n {include: '#declarations-protocol-associated-type'},\n {include: '$self'}\n ]\n }\n ]\n },\n 'declarations-protocol-associated-type': {\n begin:\n '\\\\b(associatedtype)\\\\s+((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))\\\\s*',\n beginCaptures: {\n 1: {name: 'keyword.other.declaration-specifier.swift'},\n 2: {name: 'variable.language.associatedtype.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '(?!\\\\G)$|(?=[;}]|$)',\n name: 'meta.definition.associatedtype.swift',\n patterns: [\n {include: '#declarations-inheritance-clause'},\n {include: '#declarations-generic-where-clause'},\n {include: '#declarations-typealias-assignment'}\n ]\n },\n 'declarations-protocol-protocol-initializer': {\n begin:\n '(?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k)\\n | (?:\\n (\\n (? # operator-head\\n [/=\\\\-+!*%<>&|^~?]\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n )\\n (\\n \\\\g\\n | (? # operator-character\\n [\\\\x{0300}-\\\\x{036F}]\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n )*\\n )\\n | ( \\\\. ( \\\\g | \\\\g | \\\\. )+ ) # Dot operators\\n )\\n )\\n\\\\s*\\n(?=\\\\(|<)',\n beginCaptures: {\n 1: {name: 'storage.type.function.swift'},\n 2: {name: 'entity.name.function.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '$|(?=;|//|/\\\\*|\\\\})',\n name: 'meta.definition.function.swift',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-generic-parameter-clause'},\n {include: '#declarations-parameter-clause'},\n {include: '#declarations-function-result'},\n {include: '#async-throws'},\n {include: '#declarations-generic-where-clause'},\n {\n begin: '\\\\{',\n beginCaptures: {\n 0: {name: 'punctuation.section.function.begin.swift'}\n },\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.section.function.end.swift'}},\n name: 'invalid.illegal.function-body-not-allowed-in-protocol.swift',\n patterns: [{include: '$self'}]\n }\n ]\n },\n 'declarations-type': {\n patterns: [\n {\n begin:\n '\\\\b(class(?!\\\\s+(?:func|var|let)\\\\b)|struct|actor)\\\\b\\\\s*((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))',\n beginCaptures: {\n 1: {name: 'storage.type.$1.swift'},\n 2: {name: 'entity.name.type.$1.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '(?<=\\\\})',\n name: 'meta.definition.type.$1.swift',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-generic-parameter-clause'},\n {include: '#declarations-generic-where-clause'},\n {include: '#declarations-inheritance-clause'},\n {\n begin: '\\\\{',\n beginCaptures: {\n 0: {name: 'punctuation.definition.type.begin.swift'}\n },\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.type.end.swift'}},\n name: 'meta.definition.type.body.swift',\n patterns: [{include: '$self'}]\n }\n ]\n },\n {include: '#declarations-type-enum'}\n ]\n },\n 'declarations-type-enum': {\n begin: '\\\\b(enum)\\\\s+((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))',\n beginCaptures: {\n 1: {name: 'storage.type.$1.swift'},\n 2: {name: 'entity.name.type.$1.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '(?<=\\\\})',\n name: 'meta.definition.type.$1.swift',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-generic-parameter-clause'},\n {include: '#declarations-generic-where-clause'},\n {include: '#declarations-inheritance-clause'},\n {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.type.begin.swift'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.type.end.swift'}},\n name: 'meta.definition.type.body.swift',\n patterns: [\n {include: '#declarations-type-enum-enum-case-clause'},\n {include: '$self'}\n ]\n }\n ]\n },\n 'declarations-type-enum-associated-values': {\n begin: '\\\\G\\\\(',\n beginCaptures: {\n 0: {name: 'punctuation.definition.parameters.begin.swift'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.parameters.end.swift'}},\n patterns: [\n {include: '#comments'},\n {\n begin:\n '(?x)\\n(?:(_)|((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*\\\\k))\\n\\\\s+\\n(((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*\\\\k))\\n\\\\s*(:)',\n beginCaptures: {\n 1: {name: 'entity.name.function.swift'},\n 2: {name: 'invalid.illegal.distinct-labels-not-allowed.swift'},\n 5: {name: 'variable.parameter.function.swift'},\n 7: {name: 'punctuation.separator.argument-label.swift'}\n },\n end: '(?=[,)\\\\]])',\n patterns: [{include: '#declarations-available-types'}]\n },\n {\n begin: '(((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*\\\\k))\\\\s*(:)',\n beginCaptures: {\n 1: {name: 'entity.name.function.swift'},\n 2: {name: 'variable.parameter.function.swift'},\n 4: {name: 'punctuation.separator.argument-label.swift'}\n },\n end: '(?=[,)\\\\]])',\n patterns: [{include: '#declarations-available-types'}]\n },\n {\n begin: '(?![,)\\\\]])(?=\\\\S)',\n end: '(?=[,)\\\\]])',\n patterns: [\n {include: '#declarations-available-types'},\n {\n match: ':',\n name: 'invalid.illegal.extra-colon-in-parameter-list.swift'\n }\n ]\n }\n ]\n },\n 'declarations-type-enum-enum-case': {\n begin: '(?x)((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))\\\\s*',\n beginCaptures: {1: {name: 'variable.other.enummember.swift'}},\n end: '(?<=\\\\))|(?![=(])',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-type-enum-associated-values'},\n {include: '#declarations-type-enum-raw-value-assignment'}\n ]\n },\n 'declarations-type-enum-enum-case-clause': {\n begin: '\\\\b(case)\\\\b\\\\s*',\n beginCaptures: {1: {name: 'storage.type.enum.case.swift'}},\n end: '(?=[;}])|(?!\\\\G)(?!//|/\\\\*)(?=[^\\\\s,])',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-type-enum-enum-case'},\n {include: '#declarations-type-enum-more-cases'}\n ]\n },\n 'declarations-type-enum-more-cases': {\n begin: ',\\\\s*',\n end: '(?!\\\\G)(?!//|/\\\\*)(?=[;}]|[^\\\\s,])',\n name: 'meta.enum-case.more-cases',\n patterns: [\n {include: '#comments'},\n {include: '#declarations-type-enum-enum-case'},\n {include: '#declarations-type-enum-more-cases'}\n ]\n },\n 'declarations-type-enum-raw-value-assignment': {\n begin: '(=)\\\\s*',\n beginCaptures: {1: {name: 'keyword.operator.assignment.swift'}},\n end: '(?!\\\\G)',\n patterns: [{include: '#comments'}, {include: '#literals'}]\n },\n 'declarations-type-identifier': {\n begin: '((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))\\\\s*',\n beginCaptures: {\n 1: {\n name: 'meta.type-name.swift',\n patterns: [{include: '#builtin-types'}]\n },\n 2: {name: 'punctuation.definition.identifier.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '(?!<)',\n patterns: [\n {\n begin: '(?=<)',\n end: '(?!\\\\G)',\n patterns: [{include: '#declarations-generic-argument-clause'}]\n }\n ]\n },\n 'declarations-type-operators': {\n patterns: [\n {\n captures: {1: {name: 'keyword.operator.type.composition.swift'}},\n match: '(?&|\\\\^~.])(&)(?![/=\\\\-+!*%<>&|\\\\^~.])'\n },\n {\n captures: {\n 1: {name: 'keyword.operator.type.requirement-suppression.swift'}\n },\n match: '(?&|\\\\^~.])(~)(?![/=\\\\-+!*%<>&|\\\\^~.])'\n }\n ]\n },\n 'declarations-typealias': {\n begin:\n '\\\\b(typealias)\\\\s+((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))\\\\s*',\n beginCaptures: {\n 1: {name: 'keyword.other.declaration-specifier.swift'},\n 2: {name: 'entity.name.type.typealias.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.identifier.swift'}\n },\n end: '(?!\\\\G)$|(?=;|//|/\\\\*|$)',\n name: 'meta.definition.typealias.swift',\n patterns: [\n {\n begin: '\\\\G(?=<)',\n end: '(?!\\\\G)',\n patterns: [{include: '#declarations-generic-parameter-clause'}]\n },\n {include: '#declarations-typealias-assignment'}\n ]\n },\n 'declarations-typealias-assignment': {\n begin: '(=)\\\\s*',\n beginCaptures: {1: {name: 'keyword.operator.assignment.swift'}},\n end: '(?!\\\\G)$|(?=;|//|/\\\\*|$)',\n patterns: [{include: '#declarations-available-types'}]\n },\n 'declarations-typed-variable-declaration': {\n begin:\n '(?x)\\n\\\\b(?:(async)\\\\s+)?(let|var)\\\\b\\\\s+\\n(?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k)\\\\s*\\n:',\n beginCaptures: {\n 1: {name: 'storage.modifier.async.swift'},\n 2: {name: 'keyword.other.declaration-specifier.swift'}\n },\n end: '(?=$|[={])',\n patterns: [{include: '#declarations-available-types'}]\n },\n 'declarations-types-precedencegroup': {\n patterns: [\n {\n match:\n '\\\\b(?:BitwiseShift|Assignment|RangeFormation|Casting|Addition|NilCoalescing|Comparison|LogicalConjunction|LogicalDisjunction|Default|Ternary|Multiplication|FunctionArrow)Precedence\\\\b',\n name: 'support.type.swift'\n }\n ]\n },\n expressions: {\n patterns: [\n {\n include: '#expressions-without-trailing-closures-or-member-references'\n },\n {include: '#expressions-trailing-closure'},\n {include: '#member-reference'}\n ]\n },\n 'expressions-trailing-closure': {\n patterns: [\n {\n captures: {\n 1: {name: 'support.function.any-method.swift'},\n 2: {name: 'punctuation.definition.identifier.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'}\n },\n match:\n '(#?(?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))(?=\\\\s*\\\\{)',\n name: 'meta.function-call.trailing-closure-only.swift'\n },\n {\n captures: {\n 1: {\n name: 'support.function.any-method.trailing-closure-label.swift'\n },\n 2: {name: 'punctuation.definition.identifier.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.separator.argument-label.swift'}\n },\n match:\n '((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))\\\\s*(:)(?=\\\\s*\\\\{)'\n }\n ]\n },\n 'expressions-without-trailing-closures': {\n patterns: [\n {\n include: '#expressions-without-trailing-closures-or-member-references'\n },\n {include: '#member-references'}\n ]\n },\n 'expressions-without-trailing-closures-or-member-references': {\n patterns: [\n {include: '#comments'},\n {include: '#code-block'},\n {include: '#attributes'},\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-closure-parameter'\n },\n {include: '#literals'},\n {include: '#operators'},\n {include: '#builtin-types'},\n {include: '#builtin-functions'},\n {include: '#builtin-global-functions'},\n {include: '#builtin-properties'},\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-compound-name'\n },\n {include: '#conditionals'},\n {include: '#keywords'},\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-availability-condition'\n },\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-function-or-macro-call-expression'\n },\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-macro-expansion'\n },\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-subscript-expression'\n },\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-parenthesized-expression'\n },\n {match: '\\\\b_\\\\b', name: 'support.variable.discard-value.swift'}\n ]\n },\n 'expressions-without-trailing-closures-or-member-references-availability-condition':\n {\n begin: '\\\\B(#(?:un)?available)(\\\\()',\n beginCaptures: {\n 1: {name: 'support.function.availability-condition.swift'},\n 2: {name: 'punctuation.definition.arguments.begin.swift'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.arguments.end.swift'}},\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.other.platform.os.swift'},\n 2: {name: 'constant.numeric.swift'}\n },\n match:\n '\\\\s*\\\\b((?:iOS|macOS|OSX|watchOS|tvOS|visionOS|UIKitForMac)(?:ApplicationExtension)?)\\\\b(?:\\\\s+([0-9]+(?:\\\\.[0-9]+)*\\\\b))'\n },\n {\n captures: {\n 1: {name: 'keyword.other.platform.all.swift'},\n 2: {name: 'invalid.illegal.character-not-allowed-here.swift'}\n },\n match: '(\\\\*)\\\\s*(.*?)(?=[,)])'\n },\n {\n match: '[^\\\\s,)]+',\n name: 'invalid.illegal.character-not-allowed-here.swift'\n }\n ]\n },\n 'expressions-without-trailing-closures-or-member-references-closure-parameter':\n {match: '\\\\$[0-9]+', name: 'variable.language.closure-parameter.swift'},\n 'expressions-without-trailing-closures-or-member-references-compound-name':\n {\n captures: {\n 1: {name: 'entity.name.function.compound-name.swift'},\n 2: {name: 'punctuation.definition.entity.swift'},\n 3: {name: 'punctuation.definition.entity.swift'},\n 4: {\n patterns: [\n {\n captures: {\n 1: {name: 'punctuation.definition.entity.swift'},\n 2: {name: 'punctuation.definition.entity.swift'}\n },\n match: '(?`?)(?!_:)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k):',\n name: 'entity.name.function.compound-name.swift'\n }\n ]\n }\n },\n match:\n '(?x)\\n((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k)) # function name\\n\\\\(\\n (\\n (\\n ((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k)) # argument label\\n : # colon\\n )+\\n )\\n\\\\)'\n },\n 'expressions-without-trailing-closures-or-member-references-expression-element-list':\n {\n patterns: [\n {include: '#comments'},\n {\n begin: '((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))\\\\s*(:)',\n beginCaptures: {\n 1: {name: 'support.function.any-method.swift'},\n 2: {name: 'punctuation.definition.identifier.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.separator.argument-label.swift'}\n },\n end: '(?=[,)\\\\]])',\n patterns: [{include: '#expressions'}]\n },\n {\n begin: '(?![,)\\\\]])(?=\\\\S)',\n end: '(?=[,)\\\\]])',\n patterns: [{include: '#expressions'}]\n }\n ]\n },\n 'expressions-without-trailing-closures-or-member-references-function-or-macro-call-expression':\n {\n patterns: [\n {\n begin:\n '(#?(?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'support.function.any-method.swift'},\n 2: {name: 'punctuation.definition.identifier.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'},\n 4: {name: 'punctuation.definition.arguments.begin.swift'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.arguments.end.swift'}\n },\n name: 'meta.function-call.swift',\n patterns: [\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-expression-element-list'\n }\n ]\n },\n {\n begin: '(?<=[`\\\\])}>\\\\p{L}_\\\\p{N}\\\\p{M}])\\\\s*(\\\\()',\n beginCaptures: {\n 1: {name: 'punctuation.definition.arguments.begin.swift'}\n },\n end: '\\\\)',\n endCaptures: {\n 0: {name: 'punctuation.definition.arguments.end.swift'}\n },\n name: 'meta.function-call.swift',\n patterns: [\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-expression-element-list'\n }\n ]\n }\n ]\n },\n 'expressions-without-trailing-closures-or-member-references-macro-expansion':\n {\n match: '(#(?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))',\n name: 'support.function.any-method.swift'\n },\n 'expressions-without-trailing-closures-or-member-references-parenthesized-expression':\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'punctuation.section.tuple.begin.swift'}},\n end: '(\\\\))\\\\s*((?:\\\\b(?:async|throws|rethrows)\\\\s)*)',\n endCaptures: {\n 1: {name: 'punctuation.section.tuple.end.swift'},\n 2: {\n patterns: [\n {\n match: '\\\\brethrows\\\\b',\n name: 'invalid.illegal.rethrows-only-allowed-on-function-declarations.swift'\n },\n {include: '#async-throws'}\n ]\n }\n },\n patterns: [\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-expression-element-list'\n }\n ]\n },\n 'expressions-without-trailing-closures-or-member-references-subscript-expression':\n {\n begin: '(?<=[`\\\\p{L}_\\\\p{N}\\\\p{M}])\\\\s*(\\\\[)',\n beginCaptures: {\n 1: {name: 'punctuation.definition.arguments.begin.swift'}\n },\n end: '\\\\]',\n endCaptures: {0: {name: 'punctuation.definition.arguments.end.swift'}},\n name: 'meta.subscript-expression.swift',\n patterns: [\n {\n include:\n '#expressions-without-trailing-closures-or-member-references-expression-element-list'\n }\n ]\n },\n keywords: {\n patterns: [\n {\n match:\n '(?\\n (?> # no backtracking, avoids issues with negative lookbehind at end\\n (?:\\n \\\\\\\\Q\\n (?:(?!\\\\\\\\E)(?!/\\\\2).)*+\\n (?:\\\\\\\\E\\n # A quoted sequence may not have a closing E, in which case it extends to the end of the regex\\n | (?(3)|(?(\\\\{(?:\\\\g<-1>|(?!{).*?)\\\\}))\\n (?:\\\\[(?!\\\\d)\\\\w+\\\\])?\\n [X<>]?\\n \\\\)\\n | (?\\\\[ (?:\\\\\\\\. | [^\\\\[\\\\]] | \\\\g)+ \\\\])\\n | \\\\(\\\\g?+\\\\)\\n | (?:(?!/\\\\2)[^()\\\\[\\\\\\\\])+ # any character (until end)\\n )+\\n )\\n)?+\\n# may end with a space only if it is an extended literal or contains only a single escaped space\\n(?(3)|(?(5)(?)'\n },\n {\n captures: {\n 1: {name: 'constant.character.escape.backslash.regexp'},\n 2: {name: 'variable.other.group-name.regexp'},\n 3: {name: 'keyword.operator.recursion-level.regexp'},\n 4: {name: 'constant.numeric.integer.decimal.regexp'},\n 5: {name: 'constant.numeric.integer.decimal.regexp'},\n 6: {name: 'keyword.operator.recursion-level.regexp'},\n 7: {name: 'constant.numeric.integer.decimal.regexp'},\n 8: {name: 'constant.character.escape.backslash.regexp'}\n },\n match:\n \"(?x)(\\\\\\\\[gk]') (?: ((?!\\\\d)\\\\w+) (?:([+-])(\\\\d+))? | ([+-]?\\\\d+) (?:([+-])(\\\\d+))? ) (')\"\n },\n {\n captures: {\n 1: {name: 'constant.character.escape.backslash.regexp'},\n 2: {name: 'variable.other.group-name.regexp'},\n 3: {name: 'keyword.operator.recursion-level.regexp'},\n 4: {name: 'constant.numeric.integer.decimal.regexp'},\n 5: {name: 'constant.character.escape.backslash.regexp'}\n },\n match: '(?x)(\\\\\\\\k\\\\{) ((?!\\\\d)\\\\w+) (?:([+-])(\\\\d+))? (\\\\})'\n },\n {match: '\\\\\\\\[1-9][0-9]+', name: 'keyword.other.back-reference.regexp'},\n {\n captures: {\n 1: {name: 'keyword.other.back-reference.regexp'},\n 2: {name: 'variable.other.group-name.regexp'},\n 3: {name: 'keyword.operator.recursion-level.regexp'},\n 4: {name: 'constant.numeric.integer.decimal.regexp'},\n 5: {name: 'keyword.other.back-reference.regexp'}\n },\n match: '(?x)(\\\\(\\\\?(?:P[=>]|&)) ((?!\\\\d)\\\\w+) (?:([+-])(\\\\d+))? (\\\\))'\n },\n {match: '\\\\(\\\\?R\\\\)', name: 'keyword.other.back-reference.regexp'},\n {\n captures: {\n 1: {name: 'keyword.other.back-reference.regexp'},\n 2: {name: 'constant.numeric.integer.decimal.regexp'},\n 3: {name: 'keyword.operator.recursion-level.regexp'},\n 4: {name: 'constant.numeric.integer.decimal.regexp'},\n 5: {name: 'keyword.other.back-reference.regexp'}\n },\n match: '(?x)(\\\\(\\\\?) ([+-]?\\\\d+) (?:([+-])(\\\\d+))? (\\\\))'\n }\n ]\n },\n 'literals-regular-expression-literal-backtracking-directive-or-global-matching-option':\n {\n captures: {\n 1: {name: 'keyword.control.directive.regexp'},\n 2: {name: 'keyword.control.directive.regexp'},\n 3: {name: 'keyword.control.directive.regexp'},\n 4: {name: 'variable.language.tag.regexp'},\n 5: {name: 'keyword.control.directive.regexp'},\n 6: {name: 'keyword.operator.assignment.regexp'},\n 7: {name: 'constant.numeric.integer.decimal.regexp'},\n 8: {name: 'keyword.control.directive.regexp'},\n 9: {name: 'keyword.control.directive.regexp'}\n },\n match:\n '(?x)\\n(\\\\(\\\\*)\\n(?:\\n (ACCEPT|FAIL|F|MARK(?=:)|(?=:)|COMMIT|PRUNE|SKIP|THEN)\\n (?:(:)([^)]+))?\\n | (?:(LIMIT_(?:DEPTH|HEAP|MATCH))(=)(\\\\d+))\\n | (\\n CRLF | CR | ANYCRLF | ANY | LF | NUL\\n | BSR_ANYCRLF | BSR_UNICODE\\n | NOTEMPTY_ATSTART | NOTEMPTY\\n | NO_AUTO_POSSESS | NO_DOTSTAR_ANCHOR\\n | NO_JIT | NO_START_OPT | UTF | UCP\\n )\\n)\\n(\\\\))'\n },\n 'literals-regular-expression-literal-callout': {\n captures: {\n 1: {name: 'punctuation.definition.group.regexp'},\n 10: {name: 'entity.name.function.callout.regexp'},\n 11: {name: 'entity.name.function.callout.regexp'},\n 12: {name: 'punctuation.definition.group.regexp'},\n 13: {name: 'punctuation.definition.group.regexp'},\n 14: {name: 'keyword.control.callout.regexp'},\n 15: {name: 'entity.name.function.callout.regexp'},\n 16: {name: 'variable.language.tag-name.regexp'},\n 17: {name: 'punctuation.definition.group.regexp'},\n 18: {name: 'punctuation.definition.group.regexp'},\n 19: {name: 'keyword.control.callout.regexp'},\n 2: {name: 'keyword.control.callout.regexp'},\n 21: {name: 'variable.language.tag-name.regexp'},\n 22: {name: 'keyword.control.callout.regexp'},\n 23: {name: 'punctuation.definition.group.regexp'},\n 3: {name: 'constant.numeric.integer.decimal.regexp'},\n 4: {name: 'entity.name.function.callout.regexp'},\n 5: {name: 'entity.name.function.callout.regexp'},\n 6: {name: 'entity.name.function.callout.regexp'},\n 7: {name: 'entity.name.function.callout.regexp'},\n 8: {name: 'entity.name.function.callout.regexp'},\n 9: {name: 'entity.name.function.callout.regexp'}\n },\n match:\n '(?x)\\n# PCRECallout\\n(\\\\()(?\\\\?C)\\n (?:\\n (?\\\\d+)\\n | `(?(?:[^`]|``)*)`\\n | \\'(?(?:[^\\']|\\'\\')*)\\'\\n | \"(?(?:[^\"]|\"\")*)\"\\n | \\\\^(?(?:[^\\\\^]|\\\\^\\\\^)*)\\\\^\\n | %(?(?:[^%]|%%)*)%\\n | \\\\#(?(?:[^#]|\\\\#\\\\#)*)\\\\#\\n | \\\\$(?(?:[^$]|\\\\$\\\\$)*)\\\\$\\n | \\\\{(?(?:[^}]|\\\\}\\\\})*)\\\\}\\n )?\\n(\\\\))\\n# NamedCallout\\n| (\\\\()(?\\\\*)\\n (?(?!\\\\d)\\\\w+)\\n (?:\\\\[(?(?!\\\\d)\\\\w+)\\\\])?\\n (?:\\\\{ [^,}]+ (?:,[^,}]+)* \\\\})?\\n (\\\\))\\n# InterpolatedCallout\\n| (\\\\()(?\\\\?)\\n (?>(\\\\{(?:\\\\g<-1>|(?!{).*?)\\\\}))\\n (?:\\\\[(?(?!\\\\d)\\\\w+)\\\\])?\\n (?[X<>]?)\\n (\\\\))',\n name: 'meta.callout.regexp'\n },\n 'literals-regular-expression-literal-character-properties': {\n captures: {\n 1: {name: 'support.variable.character-property.regexp'},\n 2: {name: 'punctuation.definition.character-class.regexp'},\n 3: {name: 'support.variable.character-property.regexp'},\n 4: {name: 'punctuation.definition.character-class.regexp'}\n },\n match:\n '(?x)\\n\\\\\\\\[pP]\\\\{ ([\\\\s\\\\w-]+(?:=[\\\\s\\\\w-]+)?) \\\\}\\n| (\\\\[:) ([\\\\s\\\\w-]+(?:=[\\\\s\\\\w-]+)?) (:\\\\])',\n name: 'constant.other.character-class.set.regexp'\n },\n 'literals-regular-expression-literal-custom-char-class': {\n patterns: [\n {\n begin: '(\\\\[)(\\\\^)?',\n beginCaptures: {\n 1: {name: 'punctuation.definition.character-class.regexp'},\n 2: {name: 'keyword.operator.negation.regexp'}\n },\n end: '\\\\]',\n endCaptures: {\n 0: {name: 'punctuation.definition.character-class.regexp'}\n },\n name: 'constant.other.character-class.set.regexp',\n patterns: [\n {\n include:\n '#literals-regular-expression-literal-custom-char-class-members'\n }\n ]\n }\n ]\n },\n 'literals-regular-expression-literal-custom-char-class-members': {\n patterns: [\n {match: '\\\\\\\\b', name: 'constant.character.escape.backslash.regexp'},\n {include: '#literals-regular-expression-literal-custom-char-class'},\n {include: '#literals-regular-expression-literal-quote'},\n {include: '#literals-regular-expression-literal-set-operators'},\n {include: '#literals-regular-expression-literal-unicode-scalars'},\n {include: '#literals-regular-expression-literal-character-properties'}\n ]\n },\n 'literals-regular-expression-literal-group-option-toggle': {\n match:\n '(?x)\\n\\\\(\\\\?\\n(?:\\n \\\\^(?:[iJmnsUxwDPSW]|xx|y\\\\{[gw]\\\\})*\\n | (?:[iJmnsUxwDPSW]|xx|y\\\\{[gw]\\\\})+\\n | (?:[iJmnsUxwDPSW]|xx|y\\\\{[gw]\\\\})* - (?:[iJmnsUxwDPSW]|xx|y\\\\{[gw]\\\\})*\\n)\\n\\\\)',\n name: 'keyword.other.option-toggle.regexp'\n },\n 'literals-regular-expression-literal-group-or-conditional': {\n patterns: [\n {\n begin: '(\\\\()(\\\\?~)',\n beginCaptures: {\n 1: {name: 'punctuation.definition.group.regexp'},\n 2: {name: 'keyword.control.conditional.absent.regexp'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.group.regexp'}},\n name: 'meta.group.absent.regexp',\n patterns: [\n {include: '#literals-regular-expression-literal-regex-guts'}\n ]\n },\n {\n begin:\n \"(?x)\\n# KnownConditionalStart\\n(\\\\() (?\\\\?\\\\()\\n (?:\\n (? (?[+-]?\\\\d+)(?:(?[+-])(?\\\\d+))? )\\n | (?R) \\\\g?\\n | (?R&) (? (?(?!\\\\d)\\\\w+) (?:(?[+-])(?\\\\d+))? )\\n | (?<) (?:\\\\g|\\\\g) (?>)\\n | (?') (?:\\\\g|\\\\g) (?')\\n | (?DEFINE)\\n | (?VERSION)(?>?=)(?\\\\d+\\\\.\\\\d+)\\n )\\n(?\\\\))\\n| (\\\\()(?\\\\?)(?=\\\\()\",\n beginCaptures: {\n 1: {name: 'punctuation.definition.group.regexp'},\n 10: {name: 'variable.other.group-name.regexp'},\n 11: {name: 'keyword.operator.recursion-level.regexp'},\n 12: {name: 'constant.numeric.integer.decimal.regexp'},\n 13: {name: 'keyword.control.conditional.regexp'},\n 14: {name: 'keyword.control.conditional.regexp'},\n 15: {name: 'keyword.control.conditional.regexp'},\n 16: {name: 'keyword.control.conditional.regexp'},\n 17: {name: 'keyword.control.conditional.regexp'},\n 18: {name: 'keyword.control.conditional.regexp'},\n 19: {name: 'keyword.operator.comparison.regexp'},\n 2: {name: 'keyword.control.conditional.regexp'},\n 20: {name: 'constant.numeric.integer.decimal.regexp'},\n 21: {name: 'keyword.control.conditional.regexp'},\n 22: {name: 'punctuation.definition.group.regexp'},\n 23: {name: 'keyword.control.conditional.regexp'},\n 4: {name: 'constant.numeric.integer.decimal.regexp'},\n 5: {name: 'keyword.operator.recursion-level.regexp'},\n 6: {name: 'constant.numeric.integer.decimal.regexp'},\n 7: {name: 'keyword.control.conditional.regexp'},\n 8: {name: 'keyword.control.conditional.regexp'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.group.regexp'}},\n name: 'meta.group.conditional.regexp',\n patterns: [\n {include: '#literals-regular-expression-literal-regex-guts'}\n ]\n },\n {\n begin:\n \"(?x)\\n(\\\\()\\n(\\n # BasicGroupKind\\n (\\\\?)\\n (?:\\n ([:|>=!*] | <[=!*])\\n # named groups\\n | P?< (?:((?!\\\\d)\\\\w+) (-))? ((?!\\\\d)\\\\w+) >\\n | ' (?:((?!\\\\d)\\\\w+) (-))? ((?!\\\\d)\\\\w+) '\\n # matching options\\n | (?:\\n \\\\^(?:[iJmnsUxwDPSW]|xx|y\\\\{[gw]\\\\})*\\n | (?:[iJmnsUxwDPSW]|xx|y\\\\{[gw]\\\\})+\\n | (?:[iJmnsUxwDPSW]|xx|y\\\\{[gw]\\\\})* - (?:[iJmnsUxwDPSW]|xx|y\\\\{[gw]\\\\})*\\n ): # case without : is handled by group-option-toggle\\n )\\n # PCRE2GroupKind\\n | \\\\*(\\n atomic\\n |pla|positive_lookahead\\n |nla|negative_lookahead\\n |plb|positive_lookbehind\\n |nlb|negative_lookbehind\\n |napla|non_atomic_positive_lookahead\\n |naplb|non_atomic_positive_lookbehind\\n |sr|script_run\\n |asr|atomic_script_run\\n ):\\n)?+\",\n beginCaptures: {\n 1: {name: 'punctuation.definition.group.regexp'},\n 10: {name: 'variable.other.group-name.regexp'},\n 2: {name: 'keyword.other.group-options.regexp'},\n 3: {name: 'punctuation.definition.group.regexp'},\n 4: {name: 'punctuation.definition.group.regexp'},\n 5: {name: 'variable.other.group-name.regexp'},\n 6: {name: 'keyword.operator.balancing-group.regexp'},\n 7: {name: 'variable.other.group-name.regexp'},\n 8: {name: 'variable.other.group-name.regexp'},\n 9: {name: 'keyword.operator.balancing-group.regexp'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.group.regexp'}},\n name: 'meta.group.regexp',\n patterns: [\n {include: '#literals-regular-expression-literal-regex-guts'}\n ]\n }\n ]\n },\n 'literals-regular-expression-literal-line-comment': {\n captures: {1: {name: 'punctuation.definition.comment.regexp'}},\n match: '(\\\\#).*$',\n name: 'comment.line.regexp'\n },\n 'literals-regular-expression-literal-quote': {\n begin: '\\\\\\\\Q',\n beginCaptures: {0: {name: 'constant.character.escape.backslash.regexp'}},\n end: '\\\\\\\\E|(\\\\n)',\n endCaptures: {\n 0: {name: 'constant.character.escape.backslash.regexp'},\n 1: {name: 'invalid.illegal.returns-not-allowed.regexp'}\n },\n name: 'string.quoted.other.regexp.swift'\n },\n 'literals-regular-expression-literal-regex-guts': {\n patterns: [\n {include: '#literals-regular-expression-literal-quote'},\n {\n begin: '\\\\(\\\\?\\\\#',\n beginCaptures: {\n 0: {name: 'punctuation.definition.comment.begin.regexp'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.comment.end.regexp'}},\n name: 'comment.block.regexp'\n },\n {\n begin: '<\\\\{',\n beginCaptures: {\n 0: {name: 'punctuation.section.embedded.begin.regexp'}\n },\n end: '\\\\}>',\n endCaptures: {0: {name: 'punctuation.section.embedded.end.regexp'}},\n name: 'meta.embedded.expression.regexp'\n },\n {include: '#literals-regular-expression-literal-unicode-scalars'},\n {include: '#literals-regular-expression-literal-character-properties'},\n {\n match: '[$^]|\\\\\\\\[AbBGyYzZ]|\\\\\\\\K',\n name: 'keyword.control.anchor.regexp'\n },\n {\n include:\n '#literals-regular-expression-literal-backtracking-directive-or-global-matching-option'\n },\n {include: '#literals-regular-expression-literal-callout'},\n {\n include:\n '#literals-regular-expression-literal-backreference-or-subpattern'\n },\n {\n match: '\\\\.|\\\\\\\\[CdDhHNORsSvVwWX]',\n name: 'constant.character.character-class.regexp'\n },\n {\n match: '\\\\\\\\c.',\n name: 'constant.character.entity.control-character.regexp'\n },\n {match: '\\\\\\\\[^c]', name: 'constant.character.escape.backslash.regexp'},\n {match: '\\\\|', name: 'keyword.operator.or.regexp'},\n {match: '[*+?]', name: 'keyword.operator.quantifier.regexp'},\n {\n match: '\\\\{\\\\s*\\\\d+\\\\s*(?:,\\\\s*\\\\d*\\\\s*)?\\\\}|\\\\{\\\\s*,\\\\s*\\\\d+\\\\s*\\\\}',\n name: 'keyword.operator.quantifier.regexp'\n },\n {include: '#literals-regular-expression-literal-custom-char-class'},\n {include: '#literals-regular-expression-literal-group-option-toggle'},\n {include: '#literals-regular-expression-literal-group-or-conditional'}\n ]\n },\n 'literals-regular-expression-literal-set-operators': {\n patterns: [\n {match: '&&', name: 'keyword.operator.intersection.regexp.swift'},\n {match: '--', name: 'keyword.operator.subtraction.regexp.swift'},\n {\n match: '\\\\~\\\\~',\n name: 'keyword.operator.symmetric-difference.regexp.swift'\n }\n ]\n },\n 'literals-regular-expression-literal-unicode-scalars': {\n match:\n '(?x)\\n\\\\\\\\u\\\\{\\\\s*(?:[0-9a-fA-F]+\\\\s*)+\\\\}\\n| \\\\\\\\u[0-9a-fA-F]{4}\\n| \\\\\\\\x\\\\{[0-9a-fA-F]+\\\\}\\n| \\\\\\\\x[0-9a-fA-F]{0,2}\\n| \\\\\\\\U[0-9a-fA-F]{8}\\n| \\\\\\\\o\\\\{[0-7]+\\\\}\\n| \\\\\\\\0[0-7]{0,3}\\n| \\\\\\\\N\\\\{(?:U\\\\+[0-9a-fA-F]{1,8} | [\\\\s\\\\w-]+)\\\\}',\n name: 'constant.character.numeric.regexp'\n },\n 'literals-string': {\n patterns: [\n {\n begin: '\"\"\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.swift'}\n },\n end: '\"\"\"(#*)',\n endCaptures: {\n 0: {name: 'punctuation.definition.string.end.swift'},\n 1: {name: 'invalid.illegal.extra-closing-delimiter.swift'}\n },\n name: 'string.quoted.double.block.swift',\n patterns: [\n {\n match: '\\\\G.+(?=\"\"\")|\\\\G.+',\n name: 'invalid.illegal.content-after-opening-delimiter.swift'\n },\n {\n match: '\\\\\\\\\\\\s*\\\\n',\n name: 'constant.character.escape.newline.swift'\n },\n {include: '#literals-string-string-guts'},\n {\n match: '\\\\S((?!\\\\\\\\\\\\().)*(?=\"\"\")',\n name: 'invalid.illegal.content-before-closing-delimiter.swift'\n }\n ]\n },\n {\n begin: '#\"\"\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.swift'}\n },\n end: '\"\"\"#(#*)',\n endCaptures: {\n 0: {name: 'punctuation.definition.string.end.swift'},\n 1: {name: 'invalid.illegal.extra-closing-delimiter.swift'}\n },\n name: 'string.quoted.double.block.raw.swift',\n patterns: [\n {\n match: '\\\\G.+(?=\"\"\")|\\\\G.+',\n name: 'invalid.illegal.content-after-opening-delimiter.swift'\n },\n {\n match: '\\\\\\\\#\\\\s*\\\\n',\n name: 'constant.character.escape.newline.swift'\n },\n {include: '#literals-string-raw-string-guts'},\n {\n match: '\\\\S((?!\\\\\\\\#\\\\().)*(?=\"\"\")',\n name: 'invalid.illegal.content-before-closing-delimiter.swift'\n }\n ]\n },\n {\n begin: '(##+)\"\"\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.swift'}\n },\n end: '\"\"\"\\\\1(#*)',\n endCaptures: {\n 0: {name: 'punctuation.definition.string.end.swift'},\n 1: {name: 'invalid.illegal.extra-closing-delimiter.swift'}\n },\n name: 'string.quoted.double.block.raw.swift',\n patterns: [\n {\n match: '\\\\G.+(?=\"\"\")|\\\\G.+',\n name: 'invalid.illegal.content-after-opening-delimiter.swift'\n }\n ]\n },\n {\n begin: '\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.swift'}\n },\n end: '\"(#*)',\n endCaptures: {\n 0: {name: 'punctuation.definition.string.end.swift'},\n 1: {name: 'invalid.illegal.extra-closing-delimiter.swift'}\n },\n name: 'string.quoted.double.single-line.swift',\n patterns: [\n {\n match: '\\\\r|\\\\n',\n name: 'invalid.illegal.returns-not-allowed.swift'\n },\n {include: '#literals-string-string-guts'}\n ]\n },\n {\n begin: '(##+)\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.raw.swift'}\n },\n end: '\"\\\\1(#*)',\n endCaptures: {\n 0: {name: 'punctuation.definition.string.end.raw.swift'},\n 1: {name: 'invalid.illegal.extra-closing-delimiter.swift'}\n },\n name: 'string.quoted.double.single-line.raw.swift',\n patterns: [\n {\n match: '\\\\r|\\\\n',\n name: 'invalid.illegal.returns-not-allowed.swift'\n }\n ]\n },\n {\n begin: '#\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.raw.swift'}\n },\n end: '\"#(#*)',\n endCaptures: {\n 0: {name: 'punctuation.definition.string.end.raw.swift'},\n 1: {name: 'invalid.illegal.extra-closing-delimiter.swift'}\n },\n name: 'string.quoted.double.single-line.raw.swift',\n patterns: [\n {\n match: '\\\\r|\\\\n',\n name: 'invalid.illegal.returns-not-allowed.swift'\n },\n {include: '#literals-string-raw-string-guts'}\n ]\n }\n ]\n },\n 'literals-string-raw-string-guts': {\n patterns: [\n {match: '\\\\\\\\#[0\\\\\\\\tnr\"\\']', name: 'constant.character.escape.swift'},\n {\n match: '\\\\\\\\#u\\\\{[0-9a-fA-F]{1,8}\\\\}',\n name: 'constant.character.escape.unicode.swift'\n },\n {\n begin: '\\\\\\\\#\\\\(',\n beginCaptures: {\n 0: {name: 'punctuation.section.embedded.begin.swift'}\n },\n contentName: 'source.swift',\n end: '(\\\\))',\n endCaptures: {\n 0: {name: 'punctuation.section.embedded.end.swift'},\n 1: {name: 'source.swift'}\n },\n name: 'meta.embedded.line.swift',\n patterns: [{include: '$self'}, {begin: '\\\\(', end: '\\\\)'}]\n },\n {match: '\\\\\\\\#.', name: 'invalid.illegal.escape-not-recognized'}\n ]\n },\n 'literals-string-string-guts': {\n patterns: [\n {match: '\\\\\\\\[0\\\\\\\\tnr\"\\']', name: 'constant.character.escape.swift'},\n {\n match: '\\\\\\\\u\\\\{[0-9a-fA-F]{1,8}\\\\}',\n name: 'constant.character.escape.unicode.swift'\n },\n {\n begin: '\\\\\\\\\\\\(',\n beginCaptures: {\n 0: {name: 'punctuation.section.embedded.begin.swift'}\n },\n contentName: 'source.swift',\n end: '(\\\\))',\n endCaptures: {\n 0: {name: 'punctuation.section.embedded.end.swift'},\n 1: {name: 'source.swift'}\n },\n name: 'meta.embedded.line.swift',\n patterns: [{include: '$self'}, {begin: '\\\\(', end: '\\\\)'}]\n },\n {match: '\\\\\\\\.', name: 'invalid.illegal.escape-not-recognized'}\n ]\n },\n 'member-reference': {\n patterns: [\n {\n captures: {\n 1: {name: 'variable.other.swift'},\n 2: {name: 'punctuation.definition.identifier.swift'},\n 3: {name: 'punctuation.definition.identifier.swift'}\n },\n match: '(?<=\\\\.)((?`?)[\\\\p{L}_][\\\\p{L}_\\\\p{N}\\\\p{M}]*(\\\\k))'\n }\n ]\n },\n operators: {\n patterns: [\n {\n match: '\\\\b(is\\\\b|as([!?]\\\\B|\\\\b))',\n name: 'keyword.operator.type-casting.swift'\n },\n {\n begin:\n '(?x)\\n(?=\\n (? # operator-head\\n [/=\\\\-+!*%<>&|^~?]\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n )\\n | \\\\.\\n (\\n \\\\g # operator-head\\n | \\\\.\\n | [\\\\x{0300}-\\\\x{036F}] # operator-character\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n)',\n end: '(?!\\\\G)',\n patterns: [\n {\n captures: {\n 0: {\n patterns: [\n {\n match: '\\\\G(\\\\+\\\\+|\\\\-\\\\-)$',\n name: 'keyword.operator.increment-or-decrement.swift'\n },\n {\n match: '\\\\G(\\\\+|\\\\-)$',\n name: 'keyword.operator.arithmetic.unary.swift'\n },\n {\n match: '\\\\G!$',\n name: 'keyword.operator.logical.not.swift'\n },\n {\n match: '\\\\G~$',\n name: 'keyword.operator.bitwise.not.swift'\n },\n {match: '.+', name: 'keyword.operator.custom.prefix.swift'}\n ]\n }\n },\n match:\n '(?x)\\n\\\\G # Matching from the beginning ensures\\n # that we start with operator-head\\n(?<=^|[\\\\s(\\\\[{,;:])\\n(\\n (?!(//|/\\\\*|\\\\*/))\\n (\\n [/=\\\\-+!*%<>&|^~?] # operator-head\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n \\n | [\\\\x{0300}-\\\\x{036F}] # operator-character\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n)++\\n(?![\\\\s)\\\\]},;:]|\\\\z)'\n },\n {\n captures: {\n 0: {\n patterns: [\n {\n match: '\\\\G(\\\\+\\\\+|\\\\-\\\\-)$',\n name: 'keyword.operator.increment-or-decrement.swift'\n },\n {\n match: '\\\\G!$',\n name: 'keyword.operator.increment-or-decrement.swift'\n },\n {match: '.+', name: 'keyword.operator.custom.postfix.swift'}\n ]\n }\n },\n match:\n '(?x)\\n\\\\G # Matching from the beginning ensures\\n # that we start with operator-head\\n(?&|^~?] # operator-head\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n \\n | [\\\\x{0300}-\\\\x{036F}] # operator-character\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n)++\\n(?=[\\\\s)\\\\]},;:]|\\\\z)'\n },\n {\n captures: {\n 0: {\n patterns: [\n {match: '\\\\G=$', name: 'keyword.operator.assignment.swift'},\n {\n match: '\\\\G(\\\\+|\\\\-|\\\\*|/|%|<<|>>|&|\\\\^|\\\\||&&|\\\\|\\\\|)=$',\n name: 'keyword.operator.assignment.compound.swift'\n },\n {\n match: '\\\\G(\\\\+|\\\\-|\\\\*|/)$',\n name: 'keyword.operator.arithmetic.swift'\n },\n {\n match: '\\\\G&(\\\\+|\\\\-|\\\\*)$',\n name: 'keyword.operator.arithmetic.overflow.swift'\n },\n {\n match: '\\\\G%$',\n name: 'keyword.operator.arithmetic.remainder.swift'\n },\n {\n match: '\\\\G(==|!=|>|<|>=|<=|~=)$',\n name: 'keyword.operator.comparison.swift'\n },\n {\n match: '\\\\G\\\\?\\\\?$',\n name: 'keyword.operator.coalescing.swift'\n },\n {\n match: '\\\\G(&&|\\\\|\\\\|)$',\n name: 'keyword.operator.logical.swift'\n },\n {\n match: '\\\\G(&|\\\\||\\\\^|<<|>>)$',\n name: 'keyword.operator.bitwise.swift'\n },\n {\n match: '\\\\G(===|!==)$',\n name: 'keyword.operator.bitwise.swift'\n },\n {match: '\\\\G\\\\?$', name: 'keyword.operator.ternary.swift'},\n {match: '.+', name: 'keyword.operator.custom.infix.swift'}\n ]\n }\n },\n match:\n '(?x)\\n\\\\G # Matching from the beginning ensures\\n # that we start with operator-head\\n(\\n (?!(//|/\\\\*|\\\\*/))\\n (\\n [/=\\\\-+!*%<>&|^~?] # operator-head\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n \\n | [\\\\x{0300}-\\\\x{036F}] # operator-character\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n)++'\n },\n {\n captures: {\n 0: {\n patterns: [\n {\n match: '.+',\n name: 'keyword.operator.custom.prefix.dot.swift'\n }\n ]\n }\n },\n match:\n '(?x)\\n\\\\G # Matching from the beginning ensures\\n # that we start with operator-head\\n(?<=^|[\\\\s(\\\\[{,;:])\\n\\\\. # dot\\n(\\n (?!(//|/\\\\*|\\\\*/))\\n (\\n \\\\. # dot\\n | [/=\\\\-+!*%<>&|^~?] # operator-head\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n \\n | [\\\\x{0300}-\\\\x{036F}] # operator-character\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n)++\\n(?![\\\\s)\\\\]},;:]|\\\\z)'\n },\n {\n captures: {\n 0: {\n patterns: [\n {\n match: '.+',\n name: 'keyword.operator.custom.postfix.dot.swift'\n }\n ]\n }\n },\n match:\n '(?x)\\n\\\\G # Matching from the beginning ensures\\n # that we start with operator-head\\n(?&|^~?] # operator-head\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n \\n | [\\\\x{0300}-\\\\x{036F}] # operator-character\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n)++\\n(?=[\\\\s)\\\\]},;:]|\\\\z)'\n },\n {\n captures: {\n 0: {\n patterns: [\n {\n match: '\\\\G\\\\.\\\\.[.<]$',\n name: 'keyword.operator.range.swift'\n },\n {\n match: '.+',\n name: 'keyword.operator.custom.infix.dot.swift'\n }\n ]\n }\n },\n match:\n '(?x)\\n\\\\G # Matching from the beginning ensures\\n # that we start with operator-head\\n\\\\. # dot\\n(\\n (?!(//|/\\\\*|\\\\*/))\\n (\\n \\\\. # dot\\n | [/=\\\\-+!*%<>&|^~?] # operator-head\\n | [\\\\x{00A1}-\\\\x{00A7}]\\n | [\\\\x{00A9}\\\\x{00AB}]\\n | [\\\\x{00AC}\\\\x{00AE}]\\n | [\\\\x{00B0}-\\\\x{00B1}\\\\x{00B6}\\\\x{00BB}\\\\x{00BF}\\\\x{00D7}\\\\x{00F7}]\\n | [\\\\x{2016}-\\\\x{2017}\\\\x{2020}-\\\\x{2027}]\\n | [\\\\x{2030}-\\\\x{203E}]\\n | [\\\\x{2041}-\\\\x{2053}]\\n | [\\\\x{2055}-\\\\x{205E}]\\n | [\\\\x{2190}-\\\\x{23FF}]\\n | [\\\\x{2500}-\\\\x{2775}]\\n | [\\\\x{2794}-\\\\x{2BFF}]\\n | [\\\\x{2E00}-\\\\x{2E7F}]\\n | [\\\\x{3001}-\\\\x{3003}]\\n | [\\\\x{3008}-\\\\x{3030}]\\n \\n | [\\\\x{0300}-\\\\x{036F}] # operator-character\\n | [\\\\x{1DC0}-\\\\x{1DFF}]\\n | [\\\\x{20D0}-\\\\x{20FF}]\\n | [\\\\x{FE00}-\\\\x{FE0F}]\\n | [\\\\x{FE20}-\\\\x{FE2F}]\\n | [\\\\x{E0100}-\\\\x{E01EF}]\\n )\\n)++'\n }\n ]\n },\n {match: ':', name: 'keyword.operator.ternary.swift'}\n ]\n },\n root: {\n patterns: [\n {include: '#compiler-control'},\n {include: '#declarations'},\n {include: '#expressions'}\n ]\n }\n },\n scopeName: 'source.swift'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.ts', '.cts', '.mts'],\n names: ['typescript', 'ts'],\n patterns: [\n {include: '#directives'},\n {include: '#statements'},\n {include: '#shebang'}\n ],\n repository: {\n 'access-modifier': {\n match:\n '(?]|^await|[^\\\\._$[:alnum:]]await|^return|[^\\\\._$[:alnum:]]return|^yield|[^\\\\._$[:alnum:]]yield|^throw|[^\\\\._$[:alnum:]]throw|^in|[^\\\\._$[:alnum:]]in|^of|[^\\\\._$[:alnum:]]of|^typeof|[^\\\\._$[:alnum:]]typeof|&&|\\\\|\\\\||\\\\*)\\\\s*(\\\\{)',\n beginCaptures: {1: {name: 'punctuation.definition.block.ts'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.block.ts'}},\n name: 'meta.objectliteral.ts',\n patterns: [{include: '#object-member'}]\n },\n 'array-binding-pattern': {\n begin: '(?:(\\\\.\\\\.\\\\.)\\\\s*)?(\\\\[)',\n beginCaptures: {\n 1: {name: 'keyword.operator.rest.ts'},\n 2: {name: 'punctuation.definition.binding-pattern.array.ts'}\n },\n end: '\\\\]',\n endCaptures: {\n 0: {name: 'punctuation.definition.binding-pattern.array.ts'}\n },\n patterns: [{include: '#binding-element'}, {include: '#punctuation-comma'}]\n },\n 'array-binding-pattern-const': {\n begin: '(?:(\\\\.\\\\.\\\\.)\\\\s*)?(\\\\[)',\n beginCaptures: {\n 1: {name: 'keyword.operator.rest.ts'},\n 2: {name: 'punctuation.definition.binding-pattern.array.ts'}\n },\n end: '\\\\]',\n endCaptures: {\n 0: {name: 'punctuation.definition.binding-pattern.array.ts'}\n },\n patterns: [\n {include: '#binding-element-const'},\n {include: '#punctuation-comma'}\n ]\n },\n 'array-literal': {\n begin: '\\\\s*(\\\\[)',\n beginCaptures: {1: {name: 'meta.brace.square.ts'}},\n end: '\\\\]',\n endCaptures: {0: {name: 'meta.brace.square.ts'}},\n name: 'meta.array.literal.ts',\n patterns: [{include: '#expression'}, {include: '#punctuation-comma'}]\n },\n 'arrow-function': {\n patterns: [\n {\n captures: {\n 1: {name: 'storage.modifier.async.ts'},\n 2: {name: 'variable.parameter.ts'}\n },\n match:\n '(?:(?)',\n name: 'meta.arrow.ts'\n },\n {\n begin:\n '(?x) (?:\\n (? is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n )\\n)',\n beginCaptures: {1: {name: 'storage.modifier.async.ts'}},\n end: '(?==>|\\\\{|(^\\\\s*(export|function|class|interface|let|var|(?:\\\\busing(?=\\\\s+(?!in\\\\b|of\\\\b(?!\\\\s*(?:of\\\\b|=)))[_$[:alpha:]])\\\\b)|(?:\\\\bawait\\\\s+(?:\\\\busing(?=\\\\s+(?!in\\\\b|of\\\\b(?!\\\\s*(?:of\\\\b|=)))[_$[:alpha:]])\\\\b)\\\\b)|const|import|enum|namespace|module|type|abstract|declare)\\\\s+))',\n name: 'meta.arrow.ts',\n patterns: [\n {include: '#comment'},\n {include: '#type-parameters'},\n {include: '#function-parameters'},\n {include: '#arrow-return-type'},\n {include: '#possibly-arrow-return-type'}\n ]\n },\n {\n begin: '=>',\n beginCaptures: {0: {name: 'storage.type.function.arrow.ts'}},\n end: '((?<=\\\\}|\\\\S)(?)|((?!\\\\{)(?=\\\\S)))(?!\\\\/[\\\\/\\\\*])',\n name: 'meta.arrow.ts',\n patterns: [\n {include: '#single-line-comment-consuming-line-ending'},\n {include: '#decl-block'},\n {include: '#expression'}\n ]\n }\n ]\n },\n 'arrow-return-type': {\n begin: '(?<=\\\\))\\\\s*(:)',\n beginCaptures: {1: {name: 'keyword.operator.type.annotation.ts'}},\n end: '(?==>|\\\\{|(^\\\\s*(export|function|class|interface|let|var|(?:\\\\busing(?=\\\\s+(?!in\\\\b|of\\\\b(?!\\\\s*(?:of\\\\b|=)))[_$[:alpha:]])\\\\b)|(?:\\\\bawait\\\\s+(?:\\\\busing(?=\\\\s+(?!in\\\\b|of\\\\b(?!\\\\s*(?:of\\\\b|=)))[_$[:alpha:]])\\\\b)\\\\b)|const|import|enum|namespace|module|type|abstract|declare)\\\\s+))',\n name: 'meta.return.type.arrow.ts',\n patterns: [{include: '#arrow-return-type-body'}]\n },\n 'arrow-return-type-body': {\n patterns: [\n {\n begin: '(?<=[:])(?=\\\\s*\\\\{)',\n end: '(?<=\\\\})',\n patterns: [{include: '#type-object'}]\n },\n {include: '#type-predicate-operator'},\n {include: '#type'}\n ]\n },\n 'async-modifier': {\n match:\n '(?)',\n name: 'cast.expr.ts'\n },\n {\n begin:\n '(?:(?*?\\\\&\\\\|\\\\^]|[^_$[:alnum:]](?:\\\\+\\\\+|\\\\-\\\\-)|[^\\\\+]\\\\+|[^\\\\-]\\\\-))\\\\s*(<)(?!)',\n endCaptures: {1: {name: 'meta.brace.angle.ts'}},\n name: 'cast.expr.ts',\n patterns: [{include: '#type'}]\n },\n {\n begin: '(?:(?<=^))\\\\s*(<)(?=[_$[:alpha:]][_$[:alnum:]]*\\\\s*>)',\n beginCaptures: {1: {name: 'meta.brace.angle.ts'}},\n end: '(\\\\>)',\n endCaptures: {1: {name: 'meta.brace.angle.ts'}},\n name: 'cast.expr.ts',\n patterns: [{include: '#type'}]\n }\n ]\n },\n 'class-declaration': {\n begin:\n '(?\\\\s*$)',\n beginCaptures: {1: {name: 'punctuation.definition.comment.ts'}},\n end: '(?=$)',\n name: 'comment.line.triple-slash.directive.ts',\n patterns: [\n {\n begin: '(<)(reference|amd-dependency|amd-module)',\n beginCaptures: {\n 1: {name: 'punctuation.definition.tag.directive.ts'},\n 2: {name: 'entity.name.tag.directive.ts'}\n },\n end: '/>',\n endCaptures: {0: {name: 'punctuation.definition.tag.directive.ts'}},\n name: 'meta.tag.ts',\n patterns: [\n {\n match: 'path|types|no-default-lib|lib|name|resolution-mode',\n name: 'entity.other.attribute-name.directive.ts'\n },\n {match: '=', name: 'keyword.operator.assignment.ts'},\n {include: '#string'}\n ]\n }\n ]\n },\n docblock: {\n patterns: [\n {\n captures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'},\n 3: {name: 'constant.language.access-type.jsdoc'}\n },\n match:\n '(?x)\\n((@)(?:access|api))\\n\\\\s+\\n(private|protected|public)\\n\\\\b'\n },\n {\n captures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'},\n 3: {name: 'entity.name.type.instance.jsdoc'},\n 4: {name: 'punctuation.definition.bracket.angle.begin.jsdoc'},\n 5: {name: 'constant.other.email.link.underline.jsdoc'},\n 6: {name: 'punctuation.definition.bracket.angle.end.jsdoc'}\n },\n match:\n '(?x)\\n((@)author)\\n\\\\s+\\n(\\n [^@\\\\s<>*/]\\n (?:[^@<>*/]|\\\\*[^/])*\\n)\\n(?:\\n \\\\s*\\n (<)\\n ([^>\\\\s]+)\\n (>)\\n)?'\n },\n {\n captures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'},\n 3: {name: 'entity.name.type.instance.jsdoc'},\n 4: {name: 'keyword.operator.control.jsdoc'},\n 5: {name: 'entity.name.type.instance.jsdoc'}\n },\n match:\n '(?x)\\n((@)borrows) \\\\s+\\n((?:[^@\\\\s*/]|\\\\*[^/])+) # \\n\\\\s+ (as) \\\\s+ # as\\n((?:[^@\\\\s*/]|\\\\*[^/])+) # '\n },\n {\n begin: '((@)example)\\\\s+',\n beginCaptures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'}\n },\n end: '(?=@|\\\\*/)',\n name: 'meta.example.jsdoc',\n patterns: [\n {match: '^\\\\s\\\\*\\\\s+'},\n {\n begin: '\\\\G(<)caption(>)',\n beginCaptures: {\n 0: {name: 'entity.name.tag.inline.jsdoc'},\n 1: {name: 'punctuation.definition.bracket.angle.begin.jsdoc'},\n 2: {name: 'punctuation.definition.bracket.angle.end.jsdoc'}\n },\n contentName: 'constant.other.description.jsdoc',\n end: '()|(?=\\\\*/)',\n endCaptures: {\n 0: {name: 'entity.name.tag.inline.jsdoc'},\n 1: {name: 'punctuation.definition.bracket.angle.begin.jsdoc'},\n 2: {name: 'punctuation.definition.bracket.angle.end.jsdoc'}\n }\n },\n {\n captures: {0: {name: 'source.embedded.ts'}},\n match: '[^\\\\s@*](?:[^*]|\\\\*[^/])*'\n }\n ]\n },\n {\n captures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'},\n 3: {name: 'constant.language.symbol-type.jsdoc'}\n },\n match:\n '(?x) ((@)kind) \\\\s+ (class|constant|event|external|file|function|member|mixin|module|namespace|typedef) \\\\b'\n },\n {\n captures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'},\n 3: {name: 'variable.other.link.underline.jsdoc'},\n 4: {name: 'entity.name.type.instance.jsdoc'}\n },\n match:\n '(?x)\\n((@)see)\\n\\\\s+\\n(?:\\n # URL\\n (\\n (?=https?://)\\n (?:[^\\\\s*]|\\\\*[^/])+\\n )\\n |\\n # JSDoc namepath\\n (\\n (?!\\n # Avoid matching bare URIs (also acceptable as links)\\n https?://\\n |\\n # Avoid matching {@inline tags}; we match those below\\n (?:\\\\[[^\\\\[\\\\]]*\\\\])? # Possible description [preceding]{@tag}\\n {@(?:link|linkcode|linkplain|tutorial)\\\\b\\n )\\n # Matched namepath\\n (?:[^@\\\\s*/]|\\\\*[^/])+\\n )\\n)'\n },\n {\n captures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'},\n 3: {name: 'variable.other.jsdoc'}\n },\n match:\n '(?x)\\n((@)template)\\n\\\\s+\\n# One or more valid identifiers\\n(\\n [A-Za-z_$] # First character: non-numeric word character\\n [\\\\w$.\\\\[\\\\]]* # Rest of identifier\\n (?: # Possible list of additional identifiers\\n \\\\s* , \\\\s*\\n [A-Za-z_$]\\n [\\\\w$.\\\\[\\\\]]*\\n )*\\n)'\n },\n {\n begin: '(?x)((@)template)\\\\s+(?={)',\n beginCaptures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'}\n },\n end: '(?=\\\\s|\\\\*/|[^{}\\\\[\\\\]A-Za-z_$])',\n patterns: [\n {include: '#jsdoctype'},\n {match: '([A-Za-z_$][\\\\w$.\\\\[\\\\]]*)', name: 'variable.other.jsdoc'}\n ]\n },\n {\n captures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'},\n 3: {name: 'variable.other.jsdoc'}\n },\n match:\n '(?x)\\n(\\n (@)\\n (?:arg|argument|const|constant|member|namespace|param|var)\\n)\\n\\\\s+\\n(\\n [A-Za-z_$]\\n [\\\\w$.\\\\[\\\\]]*\\n)'\n },\n {\n begin: '((@)typedef)\\\\s+(?={)',\n beginCaptures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'}\n },\n end: '(?=\\\\s|\\\\*/|[^{}\\\\[\\\\]A-Za-z_$])',\n patterns: [\n {include: '#jsdoctype'},\n {\n match: '(?:[^@\\\\s*/]|\\\\*[^/])+',\n name: 'entity.name.type.instance.jsdoc'\n }\n ]\n },\n {\n begin:\n '((@)(?:arg|argument|const|constant|member|namespace|param|prop|property|var))\\\\s+(?={)',\n beginCaptures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'}\n },\n end: '(?=\\\\s|\\\\*/|[^{}\\\\[\\\\]A-Za-z_$])',\n patterns: [\n {include: '#jsdoctype'},\n {match: '([A-Za-z_$][\\\\w$.\\\\[\\\\]]*)', name: 'variable.other.jsdoc'},\n {\n captures: {\n 1: {\n name: 'punctuation.definition.optional-value.begin.bracket.square.jsdoc'\n },\n 2: {name: 'keyword.operator.assignment.jsdoc'},\n 3: {name: 'source.embedded.ts'},\n 4: {\n name: 'punctuation.definition.optional-value.end.bracket.square.jsdoc'\n },\n 5: {name: 'invalid.illegal.syntax.jsdoc'}\n },\n match:\n '(?x)\\n(\\\\[)\\\\s*\\n[\\\\w$]+\\n(?:\\n (?:\\\\[\\\\])? # Foo[ ].bar properties within an array\\n \\\\. # Foo.Bar namespaced parameter\\n [\\\\w$]+\\n)*\\n(?:\\n \\\\s*\\n (=) # [foo=bar] Default parameter value\\n \\\\s*\\n (\\n # The inner regexes are to stop the match early at */ and to not stop at escaped quotes\\n (?>\\n \"(?:(?:\\\\*(?!/))|(?:\\\\\\\\(?!\"))|[^*\\\\\\\\])*?\" | # [foo=\"bar\"] Double-quoted\\n \\'(?:(?:\\\\*(?!/))|(?:\\\\\\\\(?!\\'))|[^*\\\\\\\\])*?\\' | # [foo=\\'bar\\'] Single-quoted\\n \\\\[ (?:(?:\\\\*(?!/))|[^*])*? \\\\] | # [foo=[1,2]] Array literal\\n (?:(?:\\\\*(?!/))|\\\\s(?!\\\\s*\\\\])|\\\\[.*?(?:\\\\]|(?=\\\\*/))|[^*\\\\s\\\\[\\\\]])* # Everything else\\n )*\\n )\\n)?\\n\\\\s*(?:(\\\\])((?:[^*\\\\s]|\\\\*[^\\\\s/])+)?|(?=\\\\*/))',\n name: 'variable.other.jsdoc'\n }\n ]\n },\n {\n begin:\n '(?x)\\n(\\n (@)\\n (?:define|enum|exception|export|extends|lends|implements|modifies\\n |namespace|private|protected|returns?|satisfies|suppress|this|throws|type\\n |yields?)\\n)\\n\\\\s+(?={)',\n beginCaptures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'}\n },\n end: '(?=\\\\s|\\\\*/|[^{}\\\\[\\\\]A-Za-z_$])',\n patterns: [{include: '#jsdoctype'}]\n },\n {\n captures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'},\n 3: {name: 'entity.name.type.instance.jsdoc'}\n },\n match:\n '(?x)\\n(\\n (@)\\n (?:alias|augments|callback|constructs|emits|event|fires|exports?\\n |extends|external|function|func|host|lends|listens|interface|memberof!?\\n |method|module|mixes|mixin|name|requires|see|this|typedef|uses)\\n)\\n\\\\s+\\n(\\n (?:\\n [^{}@\\\\s*] | \\\\*[^/]\\n )+\\n)'\n },\n {\n begin: \"((@)(?:default(?:value)?|license|version))\\\\s+(([''\\\"]))\",\n beginCaptures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'},\n 3: {name: 'variable.other.jsdoc'},\n 4: {name: 'punctuation.definition.string.begin.jsdoc'}\n },\n contentName: 'variable.other.jsdoc',\n end: '(\\\\3)|(?=$|\\\\*/)',\n endCaptures: {\n 0: {name: 'variable.other.jsdoc'},\n 1: {name: 'punctuation.definition.string.end.jsdoc'}\n }\n },\n {\n captures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'},\n 3: {name: 'variable.other.jsdoc'}\n },\n match:\n '((@)(?:default(?:value)?|license|tutorial|variation|version))\\\\s+([^\\\\s*]+)'\n },\n {\n captures: {1: {name: 'punctuation.definition.block.tag.jsdoc'}},\n match:\n '(?x) (@) (?:abstract|access|alias|api|arg|argument|async|attribute|augments|author|beta|borrows|bubbles |callback|chainable|class|classdesc|code|config|const|constant|constructor|constructs|copyright |default|defaultvalue|define|deprecated|desc|description|dict|emits|enum|event|example|exception |exports?|extends|extension(?:_?for)?|external|externs|file|fileoverview|final|fires|for|func |function|generator|global|hideconstructor|host|ignore|implements|implicitCast|inherit[Dd]oc |inner|instance|interface|internal|kind|lends|license|listens|main|member|memberof!?|method |mixes|mixins?|modifies|module|name|namespace|noalias|nocollapse|nocompile|nosideeffects |override|overview|package|param|polymer(?:Behavior)?|preserve|private|prop|property|protected |public|read[Oo]nly|record|require[ds]|returns?|see|since|static|struct|submodule|summary |suppress|template|this|throws|todo|tutorial|type|typedef|unrestricted|uses|var|variation |version|virtual|writeOnce|yields?) \\\\b',\n name: 'storage.type.class.jsdoc'\n },\n {include: '#inline-tags'},\n {\n captures: {\n 1: {name: 'storage.type.class.jsdoc'},\n 2: {name: 'punctuation.definition.block.tag.jsdoc'}\n },\n match: '((@)(?:[_$[:alpha:]][_$[:alnum:]]*))(?=\\\\s+)'\n }\n ]\n },\n 'enum-declaration': {\n begin:\n '(?)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)) |\\n# typeannotation is fn type: < | () | (... | (param: | (param, | (param? | (param= | (param) =>\\n(:\\\\s*(\\n (<) |\\n ([(]\\\\s*(\\n ([)]) |\\n (\\\\.\\\\.\\\\.) |\\n ([_$[:alnum:]]+\\\\s*(\\n ([:,?=])|\\n ([)]\\\\s*=>)\\n ))\\n ))\\n)) |\\n(:\\\\s*(?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*))))))) |\\n(:\\\\s*(=>|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(<[^<>]*>)|[^<>(),=])+=\\\\s*(\\n ((async\\\\s+)?(\\n (function\\\\s*[(<*]) |\\n (function\\\\s+) |\\n ([_$[:alpha:]][_$[:alnum:]]*\\\\s*=>)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)))'\n },\n {\n captures: {\n 1: {name: 'storage.modifier.ts'},\n 2: {name: 'keyword.operator.rest.ts'},\n 3: {name: 'variable.parameter.ts variable.language.this.ts'},\n 4: {name: 'variable.parameter.ts'},\n 5: {name: 'keyword.operator.optional.ts'}\n },\n match:\n '(?x)(?:(?]|\\\\|\\\\||\\\\&\\\\&|\\\\!\\\\=\\\\=|$|((?>=|>>>=|\\\\|=',\n name: 'keyword.operator.assignment.compound.bitwise.ts'\n },\n {match: '<<|>>>|>>', name: 'keyword.operator.bitwise.shift.ts'},\n {match: '===|!==|==|!=', name: 'keyword.operator.comparison.ts'},\n {match: '<=|>=|<>|<|>', name: 'keyword.operator.relational.ts'},\n {\n captures: {\n 1: {name: 'keyword.operator.logical.ts'},\n 2: {name: 'keyword.operator.assignment.compound.ts'},\n 3: {name: 'keyword.operator.arithmetic.ts'}\n },\n match: '(?<=[_$[:alnum:]])(\\\\!)\\\\s*(?:(/=)|(?:(/)(?![/*])))'\n },\n {match: '\\\\!|&&|\\\\|\\\\||\\\\?\\\\?', name: 'keyword.operator.logical.ts'},\n {match: '\\\\&|~|\\\\^|\\\\|', name: 'keyword.operator.bitwise.ts'},\n {match: '\\\\=', name: 'keyword.operator.assignment.ts'},\n {match: '--', name: 'keyword.operator.decrement.ts'},\n {match: '\\\\+\\\\+', name: 'keyword.operator.increment.ts'},\n {match: '%|\\\\*|/|-|\\\\+', name: 'keyword.operator.arithmetic.ts'},\n {\n begin:\n '(?<=[_$[:alnum:])\\\\]])\\\\s*(?=(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)+(?:(/=)|(?:(/)(?![/*]))))',\n end: '(?:(/=)|(?:(/)(?!\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/)))',\n endCaptures: {\n 1: {name: 'keyword.operator.assignment.compound.ts'},\n 2: {name: 'keyword.operator.arithmetic.ts'}\n },\n patterns: [{include: '#comment'}]\n },\n {\n captures: {\n 1: {name: 'keyword.operator.assignment.compound.ts'},\n 2: {name: 'keyword.operator.arithmetic.ts'}\n },\n match: '(?<=[_$[:alnum:])\\\\]])\\\\s*(?:(/=)|(?:(/)(?![/*])))'\n }\n ]\n },\n expressionPunctuations: {\n patterns: [\n {include: '#punctuation-comma'},\n {include: '#punctuation-accessor'}\n ]\n },\n expressionWithoutIdentifiers: {\n patterns: [\n {include: '#string'},\n {include: '#regex'},\n {include: '#comment'},\n {include: '#function-expression'},\n {include: '#class-expression'},\n {include: '#arrow-function'},\n {include: '#paren-expression-possibly-arrow'},\n {include: '#cast'},\n {include: '#ternary-expression'},\n {include: '#new-expr'},\n {include: '#instanceof-expr'},\n {include: '#object-literal'},\n {include: '#expression-operators'},\n {include: '#function-call'},\n {include: '#literal'},\n {include: '#support-objects'},\n {include: '#paren-expression'}\n ]\n },\n 'field-declaration': {\n begin:\n '(?x)(?)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)) |\\n# typeannotation is fn type: < | () | (... | (param: | (param, | (param? | (param= | (param) =>\\n(:\\\\s*(\\n (<) |\\n ([(]\\\\s*(\\n ([)]) |\\n (\\\\.\\\\.\\\\.) |\\n ([_$[:alnum:]]+\\\\s*(\\n ([:,?=])|\\n ([)]\\\\s*=>)\\n ))\\n ))\\n)) |\\n(:\\\\s*(?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*))))))) |\\n(:\\\\s*(=>|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(<[^<>]*>)|[^<>(),=])+=\\\\s*(\\n ((async\\\\s+)?(\\n (function\\\\s*[(<*]) |\\n (function\\\\s+) |\\n ([_$[:alpha:]][_$[:alnum:]]*\\\\s*=>)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)))'\n },\n {\n match: '\\\\#?[_$[:alpha:]][_$[:alnum:]]*',\n name: 'meta.definition.property.ts variable.object.property.ts'\n },\n {match: '\\\\?', name: 'keyword.operator.optional.ts'},\n {match: '\\\\!', name: 'keyword.operator.definiteassignment.ts'}\n ]\n },\n 'for-loop': {\n begin:\n '(?\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))(([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>)*(?))*(?)*(?\\\\s*)?\\\\())',\n end: '(?<=\\\\))(?!(((([_$[:alpha:]][_$[:alnum:]]*)(\\\\s*\\\\??\\\\.\\\\s*(\\\\#?[_$[:alpha:]][_$[:alnum:]]*))*)|(\\\\??\\\\.\\\\s*\\\\#?[_$[:alpha:]][_$[:alnum:]]*))|(?<=[\\\\)]))\\\\s*(?:(\\\\?\\\\.\\\\s*)|(\\\\!))?((<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))(([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>)*(?))*(?)*(?\\\\s*)?\\\\())',\n patterns: [\n {\n begin:\n '(?=(([_$[:alpha:]][_$[:alnum:]]*)(\\\\s*\\\\??\\\\.\\\\s*(\\\\#?[_$[:alpha:]][_$[:alnum:]]*))*)|(\\\\??\\\\.\\\\s*\\\\#?[_$[:alpha:]][_$[:alnum:]]*))',\n end: '(?=\\\\s*(?:(\\\\?\\\\.\\\\s*)|(\\\\!))?((<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))(([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>)*(?))*(?)*(?\\\\s*)?\\\\())',\n name: 'meta.function-call.ts',\n patterns: [{include: '#function-call-target'}]\n },\n {include: '#comment'},\n {include: '#function-call-optionals'},\n {include: '#type-arguments'},\n {include: '#paren-expression'}\n ]\n },\n {\n begin:\n '(?=(((([_$[:alpha:]][_$[:alnum:]]*)(\\\\s*\\\\??\\\\.\\\\s*(\\\\#?[_$[:alpha:]][_$[:alnum:]]*))*)|(\\\\??\\\\.\\\\s*\\\\#?[_$[:alpha:]][_$[:alnum:]]*))|(?<=[\\\\)]))(<\\\\s*[\\\\{\\\\[\\\\(]\\\\s*$))',\n end: '(?<=\\\\>)(?!(((([_$[:alpha:]][_$[:alnum:]]*)(\\\\s*\\\\??\\\\.\\\\s*(\\\\#?[_$[:alpha:]][_$[:alnum:]]*))*)|(\\\\??\\\\.\\\\s*\\\\#?[_$[:alpha:]][_$[:alnum:]]*))|(?<=[\\\\)]))(<\\\\s*[\\\\{\\\\[\\\\(]\\\\s*$))',\n patterns: [\n {\n begin:\n '(?=(([_$[:alpha:]][_$[:alnum:]]*)(\\\\s*\\\\??\\\\.\\\\s*(\\\\#?[_$[:alpha:]][_$[:alnum:]]*))*)|(\\\\??\\\\.\\\\s*\\\\#?[_$[:alpha:]][_$[:alnum:]]*))',\n end: '(?=(<\\\\s*[\\\\{\\\\[\\\\(]\\\\s*$))',\n name: 'meta.function-call.ts',\n patterns: [{include: '#function-call-target'}]\n },\n {include: '#comment'},\n {include: '#function-call-optionals'},\n {include: '#type-arguments'}\n ]\n }\n ]\n },\n 'function-call-optionals': {\n patterns: [\n {\n match: '\\\\?\\\\.',\n name: 'meta.function-call.ts punctuation.accessor.optional.ts'\n },\n {\n match: '\\\\!',\n name: 'meta.function-call.ts keyword.operator.definiteassignment.ts'\n }\n ]\n },\n 'function-call-target': {\n patterns: [\n {include: '#support-function-call-identifiers'},\n {\n match: '(\\\\#?[_$[:alpha:]][_$[:alnum:]]*)',\n name: 'entity.name.function.ts'\n }\n ]\n },\n 'function-declaration': {\n begin:\n '(?)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n))'\n },\n {\n captures: {\n 1: {name: 'punctuation.accessor.ts'},\n 2: {name: 'punctuation.accessor.optional.ts'},\n 3: {name: 'variable.other.constant.property.ts'}\n },\n match:\n '(?:(\\\\.)|(\\\\?\\\\.(?!\\\\s*[[:digit:]])))\\\\s*(\\\\#?[[:upper:]][_$[:digit:][:upper:]]*)(?![_$[:alnum:]])'\n },\n {\n captures: {\n 1: {name: 'punctuation.accessor.ts'},\n 2: {name: 'punctuation.accessor.optional.ts'},\n 3: {name: 'variable.other.property.ts'}\n },\n match:\n '(?:(\\\\.)|(\\\\?\\\\.(?!\\\\s*[[:digit:]])))\\\\s*(\\\\#?[_$[:alpha:]][_$[:alnum:]]*)'\n },\n {\n match: '([[:upper:]][_$[:digit:][:upper:]]*)(?![_$[:alnum:]])',\n name: 'variable.other.constant.ts'\n },\n {\n match: '[_$[:alpha:]][_$[:alnum:]]*',\n name: 'variable.other.readwrite.ts'\n }\n ]\n },\n 'if-statement': {\n patterns: [\n {\n begin:\n '(?]|\\\\|\\\\||\\\\&\\\\&|\\\\!\\\\=\\\\=|$|(===|!==|==|!=)|(([\\\\&\\\\~\\\\^\\\\|]\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s+instanceof(?![_$[:alnum:]])(?:(?=\\\\.\\\\.\\\\.)|(?!\\\\.)))|((?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*))?[\\\\(])',\n beginCaptures: {\n 1: {name: 'storage.modifier.ts'},\n 2: {name: 'storage.modifier.ts'},\n 3: {name: 'storage.modifier.ts'},\n 4: {name: 'storage.modifier.async.ts'},\n 5: {name: 'keyword.operator.new.ts'},\n 6: {name: 'keyword.generator.asterisk.ts'}\n },\n end: '(?=\\\\}|;|,|$)|(?<=\\\\})',\n name: 'meta.method.declaration.ts',\n patterns: [\n {include: '#method-declaration-name'},\n {include: '#function-body'}\n ]\n },\n {\n begin:\n '(?x)(?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*))?[\\\\(])',\n beginCaptures: {\n 1: {name: 'storage.modifier.ts'},\n 2: {name: 'storage.modifier.ts'},\n 3: {name: 'storage.modifier.ts'},\n 4: {name: 'storage.modifier.async.ts'},\n 5: {name: 'storage.type.property.ts'},\n 6: {name: 'keyword.generator.asterisk.ts'}\n },\n end: '(?=\\\\}|;|,|$)|(?<=\\\\})',\n name: 'meta.method.declaration.ts',\n patterns: [\n {include: '#method-declaration-name'},\n {include: '#function-body'}\n ]\n }\n ]\n },\n 'method-declaration-name': {\n begin:\n '(?x)(?=((\\\\b(?]|\\\\|\\\\||\\\\&\\\\&|\\\\!\\\\=\\\\=|$|((?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*))?[\\\\(])',\n beginCaptures: {\n 1: {name: 'storage.modifier.async.ts'},\n 2: {name: 'storage.type.property.ts'},\n 3: {name: 'keyword.generator.asterisk.ts'}\n },\n end: '(?=\\\\}|;|,)|(?<=\\\\})',\n name: 'meta.method.declaration.ts',\n patterns: [\n {include: '#method-declaration-name'},\n {include: '#function-body'},\n {\n begin:\n '(?x)(?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*))?[\\\\(])',\n beginCaptures: {\n 1: {name: 'storage.modifier.async.ts'},\n 2: {name: 'storage.type.property.ts'},\n 3: {name: 'keyword.generator.asterisk.ts'}\n },\n end: '(?=\\\\(|\\\\<)',\n patterns: [{include: '#method-declaration-name'}]\n }\n ]\n },\n 'object-member': {\n patterns: [\n {include: '#comment'},\n {include: '#object-literal-method-declaration'},\n {\n begin: '(?=\\\\[)',\n end: '(?=:)|((?<=[\\\\]])(?=\\\\s*[\\\\(\\\\<]))',\n name: 'meta.object.member.ts meta.object-literal.key.ts',\n patterns: [{include: '#comment'}, {include: '#array-literal'}]\n },\n {\n begin: '(?=[\\\\\\'\\\\\"\\\\`])',\n end: '(?=:)|((?<=[\\\\\\'\\\\\"\\\\`])(?=((\\\\s*[\\\\(\\\\<,}])|(\\\\s+(as|satisifies)\\\\s+))))',\n name: 'meta.object.member.ts meta.object-literal.key.ts',\n patterns: [{include: '#comment'}, {include: '#string'}]\n },\n {\n begin:\n '(?x)(?=(\\\\b(?)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)))',\n name: 'meta.object.member.ts'\n },\n {\n captures: {0: {name: 'meta.object-literal.key.ts'}},\n match:\n '(?:[_$[:alpha:]][_$[:alnum:]]*)\\\\s*(?=(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*:)',\n name: 'meta.object.member.ts'\n },\n {\n begin: '\\\\.\\\\.\\\\.',\n beginCaptures: {0: {name: 'keyword.operator.spread.ts'}},\n end: '(?=,|\\\\})',\n name: 'meta.object.member.ts',\n patterns: [{include: '#expression'}]\n },\n {\n captures: {1: {name: 'variable.other.readwrite.ts'}},\n match: '([_$[:alpha:]][_$[:alnum:]]*)\\\\s*(?=,|\\\\}|$|\\\\/\\\\/|\\\\/\\\\*)',\n name: 'meta.object.member.ts'\n },\n {\n captures: {\n 1: {name: 'keyword.control.as.ts'},\n 2: {name: 'storage.modifier.ts'}\n },\n match:\n '(?]|\\\\|\\\\||\\\\&\\\\&|\\\\!\\\\=\\\\=|$|^|((?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)\\\\(\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))',\n beginCaptures: {1: {name: 'storage.modifier.async.ts'}},\n end: '(?<=\\\\))',\n patterns: [\n {include: '#type-parameters'},\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'meta.brace.round.ts'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'meta.brace.round.ts'}},\n patterns: [\n {include: '#expression-inside-possibly-arrow-parens'}\n ]\n }\n ]\n },\n {\n begin:\n '(?<=:)\\\\s*(async)?\\\\s*(\\\\()(?=\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))',\n beginCaptures: {\n 1: {name: 'storage.modifier.async.ts'},\n 2: {name: 'meta.brace.round.ts'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'meta.brace.round.ts'}},\n patterns: [{include: '#expression-inside-possibly-arrow-parens'}]\n },\n {\n begin: '(?<=:)\\\\s*(async)?\\\\s*(?=\\\\<\\\\s*$)',\n beginCaptures: {1: {name: 'storage.modifier.async.ts'}},\n end: '(?<=\\\\>)',\n patterns: [{include: '#type-parameters'}]\n },\n {\n begin:\n '(?<=\\\\>)\\\\s*(\\\\()(?=\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))',\n beginCaptures: {1: {name: 'meta.brace.round.ts'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'meta.brace.round.ts'}},\n patterns: [{include: '#expression-inside-possibly-arrow-parens'}]\n },\n {include: '#possibly-arrow-return-type'},\n {include: '#expression'}\n ]\n },\n {include: '#punctuation-comma'},\n {include: '#decl-block'}\n ]\n },\n 'parameter-array-binding-pattern': {\n begin: '(?:(\\\\.\\\\.\\\\.)\\\\s*)?(\\\\[)',\n beginCaptures: {\n 1: {name: 'keyword.operator.rest.ts'},\n 2: {name: 'punctuation.definition.binding-pattern.array.ts'}\n },\n end: '\\\\]',\n endCaptures: {\n 0: {name: 'punctuation.definition.binding-pattern.array.ts'}\n },\n patterns: [\n {include: '#parameter-binding-element'},\n {include: '#punctuation-comma'}\n ]\n },\n 'parameter-binding-element': {\n patterns: [\n {include: '#comment'},\n {include: '#string'},\n {include: '#numeric-literal'},\n {include: '#regex'},\n {include: '#parameter-object-binding-pattern'},\n {include: '#parameter-array-binding-pattern'},\n {include: '#destructuring-parameter-rest'},\n {include: '#variable-initializer'}\n ]\n },\n 'parameter-name': {\n patterns: [\n {\n captures: {1: {name: 'storage.modifier.ts'}},\n match:\n '(?)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)) |\\n# typeannotation is fn type: < | () | (... | (param: | (param, | (param? | (param= | (param) =>\\n(:\\\\s*(\\n (<) |\\n ([(]\\\\s*(\\n ([)]) |\\n (\\\\.\\\\.\\\\.) |\\n ([_$[:alnum:]]+\\\\s*(\\n ([:,?=])|\\n ([)]\\\\s*=>)\\n ))\\n ))\\n)) |\\n(:\\\\s*(?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*))))))) |\\n(:\\\\s*(=>|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(<[^<>]*>)|[^<>(),=])+=\\\\s*(\\n ((async\\\\s+)?(\\n (function\\\\s*[(<*]) |\\n (function\\\\s+) |\\n ([_$[:alpha:]][_$[:alnum:]]*\\\\s*=>)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)))'\n },\n {\n captures: {\n 1: {name: 'storage.modifier.ts'},\n 2: {name: 'keyword.operator.rest.ts'},\n 3: {name: 'variable.parameter.ts variable.language.this.ts'},\n 4: {name: 'variable.parameter.ts'},\n 5: {name: 'keyword.operator.optional.ts'}\n },\n match:\n '(?x)(?:(?])',\n name: 'meta.type.annotation.ts',\n patterns: [{include: '#type'}]\n }\n ]\n },\n 'paren-expression': {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'meta.brace.round.ts'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'meta.brace.round.ts'}},\n patterns: [{include: '#expression'}]\n },\n 'paren-expression-possibly-arrow': {\n patterns: [\n {\n begin:\n '(?<=[(=,])\\\\s*(async)?(?=\\\\s*((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*))?\\\\(\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))',\n beginCaptures: {1: {name: 'storage.modifier.async.ts'}},\n end: '(?<=\\\\))',\n patterns: [\n {include: '#paren-expression-possibly-arrow-with-typeparameters'}\n ]\n },\n {\n begin:\n '(?<=[(=,]|=>|^return|[^\\\\._$[:alnum:]]return)\\\\s*(async)?(?=\\\\s*((((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*))?\\\\()|(<)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)))\\\\s*$)',\n beginCaptures: {1: {name: 'storage.modifier.async.ts'}},\n end: '(?<=\\\\))',\n patterns: [\n {include: '#paren-expression-possibly-arrow-with-typeparameters'}\n ]\n },\n {include: '#possibly-arrow-return-type'}\n ]\n },\n 'paren-expression-possibly-arrow-with-typeparameters': {\n patterns: [\n {include: '#type-parameters'},\n {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'meta.brace.round.ts'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'meta.brace.round.ts'}},\n patterns: [{include: '#expression-inside-possibly-arrow-parens'}]\n }\n ]\n },\n 'possibly-arrow-return-type': {\n begin:\n '(?<=\\\\)|^)\\\\s*(:)(?=\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*=>)',\n beginCaptures: {\n 1: {\n name: 'meta.arrow.ts meta.return.type.arrow.ts keyword.operator.type.annotation.ts'\n }\n },\n contentName: 'meta.arrow.ts meta.return.type.arrow.ts',\n end: '(?==>|\\\\{|(^\\\\s*(export|function|class|interface|let|var|(?:\\\\busing(?=\\\\s+(?!in\\\\b|of\\\\b(?!\\\\s*(?:of\\\\b|=)))[_$[:alpha:]])\\\\b)|(?:\\\\bawait\\\\s+(?:\\\\busing(?=\\\\s+(?!in\\\\b|of\\\\b(?!\\\\s*(?:of\\\\b|=)))[_$[:alpha:]])\\\\b)\\\\b)|const|import|enum|namespace|module|type|abstract|declare)\\\\s+))',\n patterns: [{include: '#arrow-return-type-body'}]\n },\n 'property-accessor': {\n match:\n '(?|&&|\\\\|\\\\||\\\\*\\\\/)\\\\s*(\\\\/)(?![\\\\/*])(?=(?:[^\\\\/\\\\\\\\\\\\[\\\\()]|\\\\\\\\.|\\\\[([^\\\\]\\\\\\\\]|\\\\\\\\.)+\\\\]|\\\\(([^\\\\)\\\\\\\\]|\\\\\\\\.)+\\\\))+\\\\/([dgimsuvy]+|(?![\\\\/\\\\*])|(?=\\\\/\\\\*))(?!\\\\s*[a-zA-Z0-9_$]))',\n beginCaptures: {1: {name: 'punctuation.definition.string.begin.ts'}},\n end: '(/)([dgimsuvy]*)',\n endCaptures: {\n 1: {name: 'punctuation.definition.string.end.ts'},\n 2: {name: 'keyword.other.ts'}\n },\n name: 'string.regexp.ts',\n patterns: [{include: '#regexp'}]\n },\n {\n begin:\n '((?'\n },\n {\n match: '[?+*]|\\\\{(\\\\d+,\\\\d+|\\\\d+,|,\\\\d+|\\\\d+)\\\\}\\\\??',\n name: 'keyword.operator.quantifier.regexp'\n },\n {match: '\\\\|', name: 'keyword.operator.or.regexp'},\n {\n begin: '(\\\\()((\\\\?=)|(\\\\?!)|(\\\\?<=)|(\\\\?))?',\n beginCaptures: {\n 0: {name: 'punctuation.definition.group.regexp'},\n 1: {name: 'punctuation.definition.group.no-capture.regexp'},\n 2: {name: 'variable.other.regexp'}\n },\n end: '\\\\)',\n endCaptures: {0: {name: 'punctuation.definition.group.regexp'}},\n name: 'meta.group.regexp',\n patterns: [{include: '#regexp'}]\n },\n {\n begin: '(\\\\[)(\\\\^)?',\n beginCaptures: {\n 1: {name: 'punctuation.definition.character-class.regexp'},\n 2: {name: 'keyword.operator.negation.regexp'}\n },\n end: '(\\\\])',\n endCaptures: {\n 1: {name: 'punctuation.definition.character-class.regexp'}\n },\n name: 'constant.other.character-class.set.regexp',\n patterns: [\n {\n captures: {\n 1: {name: 'constant.character.numeric.regexp'},\n 2: {name: 'constant.character.control.regexp'},\n 3: {name: 'constant.character.escape.backslash.regexp'},\n 4: {name: 'constant.character.numeric.regexp'},\n 5: {name: 'constant.character.control.regexp'},\n 6: {name: 'constant.character.escape.backslash.regexp'}\n },\n match:\n '(?:.|(\\\\\\\\(?:[0-7]{3}|x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4}))|(\\\\\\\\c[A-Z])|(\\\\\\\\.))\\\\-(?:[^\\\\]\\\\\\\\]|(\\\\\\\\(?:[0-7]{3}|x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4}))|(\\\\\\\\c[A-Z])|(\\\\\\\\.))',\n name: 'constant.other.character-class.range.regexp'\n },\n {include: '#regex-character-class'}\n ]\n },\n {include: '#regex-character-class'}\n ]\n },\n 'return-type': {\n patterns: [\n {\n begin: '(?<=\\\\))\\\\s*(:)(?=\\\\s*\\\\S)',\n beginCaptures: {1: {name: 'keyword.operator.type.annotation.ts'}},\n end: '(?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\\\())\\n |\\n (?:(EPSILON|MAX_SAFE_INTEGER|MAX_VALUE|MIN_SAFE_INTEGER|MIN_VALUE|NEGATIVE_INFINITY|POSITIVE_INFINITY)\\\\b(?!\\\\$)))'\n },\n {\n captures: {\n 1: {name: 'support.variable.dom.ts'},\n 2: {name: 'support.class.dom.ts'}\n },\n match:\n '(?x) (?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\\\()'\n },\n {\n match:\n '(?x)(?\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))(([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>)*(?))*(?)*(?\\\\s*)?`)',\n end: '(?=`)',\n patterns: [\n {\n begin:\n '(?=(([_$[:alpha:]][_$[:alnum:]]*\\\\s*\\\\??\\\\.\\\\s*)*|(\\\\??\\\\.\\\\s*)?)([_$[:alpha:]][_$[:alnum:]]*))',\n end: '(?=(<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))(([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>)*(?))*(?)*(?\\\\s*)?`)',\n patterns: [\n {include: '#support-function-call-identifiers'},\n {\n match: '([_$[:alpha:]][_$[:alnum:]]*)',\n name: 'entity.name.function.tagged-template.ts'\n }\n ]\n },\n {include: '#type-arguments'}\n ]\n },\n {\n begin:\n '([_$[:alpha:]][_$[:alnum:]]*)?\\\\s*(?=(<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))(([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>|\\\\<\\\\s*(((keyof|infer|typeof|readonly)\\\\s+)|(([_$[:alpha:]][_$[:alnum:]]*|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))(?=\\\\s*([\\\\<\\\\>\\\\,\\\\.\\\\[]|=>|&(?!&)|\\\\|(?!\\\\|)))))([^<>\\\\(]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(?<==)\\\\>)*(?))*(?)*(?\\\\s*)`)',\n beginCaptures: {1: {name: 'entity.name.function.tagged-template.ts'}},\n end: '(?=`)',\n patterns: [{include: '#type-arguments'}]\n }\n ]\n },\n 'template-substitution-element': {\n begin: '\\\\$\\\\{',\n beginCaptures: {\n 0: {name: 'punctuation.definition.template-expression.begin.ts'}\n },\n contentName: 'meta.embedded.line.ts',\n end: '\\\\}',\n endCaptures: {\n 0: {name: 'punctuation.definition.template-expression.end.ts'}\n },\n name: 'meta.template.expression.ts',\n patterns: [{include: '#expression'}]\n },\n 'template-type': {\n patterns: [\n {include: '#template-call'},\n {\n begin: '([_$[:alpha:]][_$[:alnum:]]*)?(`)',\n beginCaptures: {\n 1: {name: 'entity.name.function.tagged-template.ts'},\n 2: {\n name: 'string.template.ts punctuation.definition.string.template.begin.ts'\n }\n },\n contentName: 'string.template.ts',\n end: '`',\n endCaptures: {\n 0: {\n name: 'string.template.ts punctuation.definition.string.template.end.ts'\n }\n },\n patterns: [\n {include: '#template-type-substitution-element'},\n {include: '#string-character-escape'}\n ]\n }\n ]\n },\n 'template-type-substitution-element': {\n begin: '\\\\$\\\\{',\n beginCaptures: {\n 0: {name: 'punctuation.definition.template-expression.begin.ts'}\n },\n contentName: 'meta.embedded.line.ts',\n end: '\\\\}',\n endCaptures: {\n 0: {name: 'punctuation.definition.template-expression.end.ts'}\n },\n name: 'meta.template.expression.ts',\n patterns: [{include: '#type'}]\n },\n 'ternary-expression': {\n begin: '(?!\\\\?\\\\.\\\\s*[^[:digit:]])(\\\\?)(?!\\\\?)',\n beginCaptures: {1: {name: 'keyword.operator.ternary.ts'}},\n end: '\\\\s*(:)',\n endCaptures: {1: {name: 'keyword.operator.ternary.ts'}},\n patterns: [{include: '#expression'}]\n },\n 'this-literal': {\n match: '(?])|((?<=[\\\\}>\\\\]\\\\)]|[_$[:alpha:]])\\\\s*(?=\\\\{)))',\n name: 'meta.type.annotation.ts',\n patterns: [{include: '#type'}]\n },\n {\n begin: '(:)',\n beginCaptures: {1: {name: 'keyword.operator.type.annotation.ts'}},\n end: '(?])|(?=^\\\\s*$)|((?<=[\\\\}>\\\\]\\\\)]|[_$[:alpha:]])\\\\s*(?=\\\\{)))',\n name: 'meta.type.annotation.ts',\n patterns: [{include: '#type'}]\n }\n ]\n },\n 'type-arguments': {\n begin: '\\\\<',\n beginCaptures: {\n 0: {name: 'punctuation.definition.typeparameters.begin.ts'}\n },\n end: '\\\\>',\n endCaptures: {0: {name: 'punctuation.definition.typeparameters.end.ts'}},\n name: 'meta.type.parameters.ts',\n patterns: [{include: '#type-arguments-body'}]\n },\n 'type-arguments-body': {\n patterns: [\n {\n captures: {0: {name: 'keyword.operator.type.ts'}},\n match:\n '(?)',\n patterns: [{include: '#comment'}, {include: '#type-parameters'}]\n },\n {\n begin:\n '(?)\\n ))\\n )\\n )\\n)',\n end: '(?<=\\\\))',\n name: 'meta.type.function.ts',\n patterns: [{include: '#function-parameters'}]\n }\n ]\n },\n 'type-function-return-type': {\n patterns: [\n {\n begin: '(=>)(?=\\\\s*\\\\S)',\n beginCaptures: {1: {name: 'storage.type.function.arrow.ts'}},\n end: '(?)(?:\\\\?]|//|$)',\n name: 'meta.type.function.return.ts',\n patterns: [{include: '#type-function-return-type-core'}]\n },\n {\n begin: '=>',\n beginCaptures: {0: {name: 'storage.type.function.arrow.ts'}},\n end: '(?)(?]|//|^\\\\s*$)|((?<=\\\\S)(?=\\\\s*$)))',\n name: 'meta.type.function.return.ts',\n patterns: [{include: '#type-function-return-type-core'}]\n }\n ]\n },\n 'type-function-return-type-core': {\n patterns: [\n {include: '#comment'},\n {\n begin: '(?<==>)(?=\\\\s*\\\\{)',\n end: '(?<=\\\\})',\n patterns: [{include: '#type-object'}]\n },\n {include: '#type-predicate-operator'},\n {include: '#type'}\n ]\n },\n 'type-infer': {\n patterns: [\n {\n captures: {\n 1: {name: 'keyword.operator.expression.infer.ts'},\n 2: {name: 'entity.name.type.ts'},\n 3: {name: 'keyword.operator.expression.extends.ts'}\n },\n match:\n '(?)',\n endCaptures: {\n 1: {\n name: 'meta.type.parameters.ts punctuation.definition.typeparameters.end.ts'\n }\n },\n patterns: [{include: '#type-arguments-body'}]\n },\n {\n begin: '([_$[:alpha:]][_$[:alnum:]]*)\\\\s*(<)',\n beginCaptures: {\n 1: {name: 'entity.name.type.ts'},\n 2: {\n name: 'meta.type.parameters.ts punctuation.definition.typeparameters.begin.ts'\n }\n },\n contentName: 'meta.type.parameters.ts',\n end: '(>)',\n endCaptures: {\n 1: {\n name: 'meta.type.parameters.ts punctuation.definition.typeparameters.end.ts'\n }\n },\n patterns: [{include: '#type-arguments-body'}]\n },\n {\n captures: {\n 1: {name: 'entity.name.type.module.ts'},\n 2: {name: 'punctuation.accessor.ts'},\n 3: {name: 'punctuation.accessor.optional.ts'}\n },\n match:\n '([_$[:alpha:]][_$[:alnum:]]*)\\\\s*(?:(\\\\.)|(\\\\?\\\\.(?!\\\\s*[[:digit:]])))'\n },\n {match: '[_$[:alpha:]][_$[:alnum:]]*', name: 'entity.name.type.ts'}\n ]\n },\n 'type-object': {\n begin: '\\\\{',\n beginCaptures: {0: {name: 'punctuation.definition.block.ts'}},\n end: '\\\\}',\n endCaptures: {0: {name: 'punctuation.definition.block.ts'}},\n name: 'meta.object.type.ts',\n patterns: [\n {include: '#comment'},\n {include: '#method-declaration'},\n {include: '#indexer-declaration'},\n {include: '#indexer-mapped-type-declaration'},\n {include: '#field-declaration'},\n {include: '#type-annotation'},\n {\n begin: '\\\\.\\\\.\\\\.',\n beginCaptures: {0: {name: 'keyword.operator.spread.ts'}},\n end: '(?=\\\\}|;|,|$)|(?<=\\\\})',\n patterns: [{include: '#type'}]\n },\n {include: '#punctuation-comma'},\n {include: '#punctuation-semicolon'},\n {include: '#type'}\n ]\n },\n 'type-operators': {\n patterns: [\n {include: '#typeof-operator'},\n {include: '#type-infer'},\n {\n begin: '([&|])(?=\\\\s*\\\\{)',\n beginCaptures: {0: {name: 'keyword.operator.type.ts'}},\n end: '(?<=\\\\})',\n patterns: [{include: '#type-object'}]\n },\n {\n begin: '[&|]',\n beginCaptures: {0: {name: 'keyword.operator.type.ts'}},\n end: '(?=\\\\S)'\n },\n {\n match:\n '(?)',\n endCaptures: {1: {name: 'punctuation.definition.typeparameters.end.ts'}},\n name: 'meta.type.parameters.ts',\n patterns: [\n {include: '#comment'},\n {\n match:\n '(?)', name: 'keyword.operator.assignment.ts'}\n ]\n },\n 'type-paren-or-function-parameters': {\n begin: '\\\\(',\n beginCaptures: {0: {name: 'meta.brace.round.ts'}},\n end: '\\\\)',\n endCaptures: {0: {name: 'meta.brace.round.ts'}},\n name: 'meta.type.paren.cover.ts',\n patterns: [\n {\n captures: {\n 1: {name: 'storage.modifier.ts'},\n 2: {name: 'keyword.operator.rest.ts'},\n 3: {name: 'entity.name.function.ts variable.language.this.ts'},\n 4: {name: 'entity.name.function.ts'},\n 5: {name: 'keyword.operator.optional.ts'}\n },\n match:\n '(?x)(?:(?)\\n ))\\n ))\\n)) |\\n(:\\\\s*(?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*))))))))'\n },\n {\n captures: {\n 1: {name: 'storage.modifier.ts'},\n 2: {name: 'keyword.operator.rest.ts'},\n 3: {name: 'variable.parameter.ts variable.language.this.ts'},\n 4: {name: 'variable.parameter.ts'},\n 5: {name: 'keyword.operator.optional.ts'}\n },\n match:\n '(?x)(?:(?:&|{\\\\?]|(extends\\\\s+)|$|;|^\\\\s*$|(?:^\\\\s*(?:abstract|async|(?:\\\\bawait\\\\s+(?:\\\\busing(?=\\\\s+(?!in\\\\b|of\\\\b(?!\\\\s*(?:of\\\\b|=)))[_$[:alpha:]])\\\\b)\\\\b)|break|case|catch|class|const|continue|declare|do|else|enum|export|finally|function|for|goto|if|import|interface|let|module|namespace|switch|return|throw|try|type|(?:\\\\busing(?=\\\\s+(?!in\\\\b|of\\\\b(?!\\\\s*(?:of\\\\b|=)))[_$[:alpha:]])\\\\b)|var|while)\\\\b))',\n patterns: [{include: '#type-arguments'}, {include: '#expression'}]\n },\n 'undefined-literal': {\n match:\n '(?)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)) |\\n# typeannotation is fn type: < | () | (... | (param: | (param, | (param? | (param= | (param) =>\\n(:\\\\s*(\\n (<) |\\n ([(]\\\\s*(\\n ([)]) |\\n (\\\\.\\\\.\\\\.) |\\n ([_$[:alnum:]]+\\\\s*(\\n ([:,?=])|\\n ([)]\\\\s*=>)\\n ))\\n ))\\n)) |\\n(:\\\\s*(?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*))))))) |\\n(:\\\\s*(=>|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(<[^<>]*>)|[^<>(),=])+=\\\\s*(\\n ((async\\\\s+)?(\\n (function\\\\s*[(<*]) |\\n (function\\\\s+) |\\n ([_$[:alpha:]][_$[:alnum:]]*\\\\s*=>)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)))',\n beginCaptures: {\n 1: {\n name: 'meta.definition.variable.ts variable.other.constant.ts entity.name.function.ts'\n }\n },\n end: '(?=$|^|[;,=}]|((?)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)) |\\n# typeannotation is fn type: < | () | (... | (param: | (param, | (param? | (param= | (param) =>\\n(:\\\\s*(\\n (<) |\\n ([(]\\\\s*(\\n ([)]) |\\n (\\\\.\\\\.\\\\.) |\\n ([_$[:alnum:]]+\\\\s*(\\n ([:,?=])|\\n ([)]\\\\s*=>)\\n ))\\n ))\\n)) |\\n(:\\\\s*(?]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*))))))) |\\n(:\\\\s*(=>|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(<[^<>]*>)|[^<>(),=])+=\\\\s*(\\n ((async\\\\s+)?(\\n (function\\\\s*[(<*]) |\\n (function\\\\s+) |\\n ([_$[:alpha:]][_$[:alnum:]]*\\\\s*=>)\\n )) |\\n ((async\\\\s*)?(\\n ((<\\\\s*$)|((<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?[\\\\(]\\\\s*((([\\\\{\\\\[]\\\\s*)?$)|((\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})\\\\s*((:\\\\s*\\\\{?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))|((\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])\\\\s*((:\\\\s*\\\\[?$)|((\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+\\\\s*)?=\\\\s*)))))) |\\n # sure shot arrow functions even if => is on new line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)?\\n [(]\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*\\n (\\n ([)]\\\\s*:) | # ():\\n ((\\\\.\\\\.\\\\.\\\\s*)?[_$[:alpha:]][_$[:alnum:]]*\\\\s*:) # [(]param: | [(]...param:\\n )\\n) |\\n\\n# arrow function possible to detect only with => on same line\\n(\\n (<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<]|\\\\<\\\\s*(((const\\\\s+)?[_$[:alpha:]])|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\]))([^=<>]|=[^<])*\\\\>)*\\\\>)*>\\\\s*)? # typeparameters\\n \\\\(\\\\s*(\\\\/\\\\*([^\\\\*]|(\\\\*[^\\\\/]))*\\\\*\\\\/\\\\s*)*(([_$[:alpha:]]|(\\\\{([^\\\\{\\\\}]|(\\\\{([^\\\\{\\\\}]|\\\\{[^\\\\{\\\\}]*\\\\})*\\\\}))*\\\\})|(\\\\[([^\\\\[\\\\]]|(\\\\[([^\\\\[\\\\]]|\\\\[[^\\\\[\\\\]]*\\\\])*\\\\]))*\\\\])|(\\\\.\\\\.\\\\.\\\\s*[_$[:alpha:]]))([^()\\\\\\'\\\\\"\\\\`]|(\\\\(([^\\\\(\\\\)]|(\\\\(([^\\\\(\\\\)]|\\\\([^\\\\(\\\\)]*\\\\))*\\\\)))*\\\\))|(\\\\\\'([^\\\\\\'\\\\\\\\]|\\\\\\\\.)*\\\\\\')|(\\\\\"([^\\\\\"\\\\\\\\]|\\\\\\\\.)*\\\\\")|(\\\\`([^\\\\`\\\\\\\\]|\\\\\\\\.)*\\\\`))*)?\\\\) # parameters\\n (\\\\s*:\\\\s*([^<>\\\\(\\\\)\\\\{\\\\}]|\\\\<([^<>]|\\\\<([^<>]|\\\\<[^<>]+\\\\>)+\\\\>)+\\\\>|\\\\([^\\\\(\\\\)]+\\\\)|\\\\{[^\\\\{\\\\}]+\\\\})+)? # return type\\n \\\\s*=> # arrow operator\\n)\\n ))\\n)))',\n beginCaptures: {\n 1: {name: 'meta.definition.variable.ts entity.name.function.ts'},\n 2: {name: 'keyword.operator.definiteassignment.ts'}\n },\n end: '(?=$|^|[;,=}]|((?\\\\s*$)',\n beginCaptures: {1: {name: 'keyword.operator.assignment.ts'}},\n end: '(?=$|^|[,);}\\\\]]|((?\n// and licensed `apache-2.0`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [\n '.bi',\n '.rbbas',\n '.rbfrm',\n '.rbmnu',\n '.rbres',\n '.rbtbar',\n '.rbuistate',\n '.vb',\n '.vbhtml',\n '.vbs'\n ],\n names: [\n 'fb',\n 'freebasic',\n 'realbasic',\n 'vb-.net',\n 'vb.net',\n 'vbnet',\n 'vbscript',\n 'visual-basic',\n 'visual-basic-.net'\n ],\n patterns: [\n {include: '#comment-single-quote'},\n {include: '#comment-rem'},\n {include: '#keyword-a'},\n {include: '#keyword-b'},\n {include: '#keyword-c'},\n {include: '#keyword-d'},\n {include: '#keyword-e'},\n {include: '#keyword-f'},\n {include: '#keyword-g'},\n {include: '#keyword-h'},\n {include: '#keyword-i'},\n {include: '#keyword-j'},\n {include: '#keyword-k'},\n {include: '#keyword-l'},\n {include: '#keyword-m'},\n {include: '#keyword-n'},\n {include: '#keyword-o'},\n {include: '#keyword-p'},\n {include: '#keyword-r'},\n {include: '#keyword-s'},\n {include: '#keyword-t'},\n {include: '#keyword-u'},\n {include: '#keyword-v'},\n {include: '#keyword-w'},\n {include: '#keyword-x'},\n {include: '#keyword-y'},\n {include: '#integer-literal'},\n {include: '#floating-point-literal'},\n {include: '#character-literal'},\n {include: '#string-literal'},\n {include: '#date-literal'},\n {include: '#symbol'},\n {include: '#identifier'}\n ],\n repository: {\n 'character-literal': {\n match:\n '(?i:[\"\\\\x{201C}\\\\x{201D}]([^\"\\\\x{201C}\\\\x{201D}]|[\"\\\\x{201C}\\\\x{201D}]{2})[\"\\\\x{201C}\\\\x{201D}]C)',\n name: 'string.quoted.double.vbnet'\n },\n 'comment-rem': {\n match:\n '(?i)(?<=[^_\\\\p{Lu}\\\\p{Ll}\\\\p{Lt}\\\\p{Lm}\\\\p{Lo}\\\\p{Nl}\\\\p{Nd}\\\\p{Mn}\\\\p{Mc}\\\\p{Cf}\\\\p{Pc}])REM((?=[\\\\r|\\\\n])| [^\\\\r\\\\n]*)',\n name: 'comment.line.singlequote.vbnet'\n },\n 'comment-single-quote': {\n match: \"['\\\\x{2018}\\\\x{2019}][^\\\\r\\\\n]*\",\n name: 'comment.line.singlequote.vbnet'\n },\n 'date-literal': {\n match:\n '(#\\\\s*(((((\\\\d+/\\\\d+/\\\\d+)|(\\\\d+-\\\\d+-\\\\d+))\\\\s+(\\\\d+:\\\\d+(:\\\\d+)?\\\\s*(AM|PM)?)))|((\\\\d+/\\\\d+/\\\\d+)|(\\\\d+-\\\\d+-\\\\d+))|(\\\\d+:\\\\d+(:\\\\d+)?\\\\s*(AM|PM)?))\\\\s*#)',\n name: 'string.quoted.double.vbnet'\n },\n 'floating-point-literal': {\n match:\n '(?i:[0-9]*(\\\\.[0-9]+)?((?<=[0-9])E[+-]?[0-9]+)?(?<=[0-9])[FRD@&#]?)',\n name: 'string.quoted.double.vbnet'\n },\n identifier: {\n match:\n '(([\\\\p{Lu}\\\\p{Ll}\\\\p{Lt}\\\\p{Lm}\\\\p{Lo}\\\\p{Nl}]|_[_\\\\p{Lu}\\\\p{Ll}\\\\p{Lt}\\\\p{Lm}\\\\p{Lo}\\\\p{Nl}\\\\p{Nd}\\\\p{Mn}\\\\p{Mc}\\\\p{Cf}\\\\p{Pc}])[_\\\\p{Lu}\\\\p{Ll}\\\\p{Lt}\\\\p{Lm}\\\\p{Lo}\\\\p{Nl}\\\\p{Nd}\\\\p{Mn}\\\\p{Mc}\\\\p{Cf}\\\\p{Pc}]*[%&@!#$]?|\\\\[([\\\\p{Lu}\\\\p{Ll}\\\\p{Lt}\\\\p{Lm}\\\\p{Lo}\\\\p{Nl}]|_[_\\\\p{Lu}\\\\p{Ll}\\\\p{Lt}\\\\p{Lm}\\\\p{Lo}\\\\p{Nl}\\\\p{Nd}\\\\p{Mn}\\\\p{Mc}\\\\p{Cf}\\\\p{Pc}])[_\\\\p{Lu}\\\\p{Ll}\\\\p{Lt}\\\\p{Lm}\\\\p{Lo}\\\\p{Nl}\\\\p{Nd}\\\\p{Mn}\\\\p{Mc}\\\\p{Cf}\\\\p{Pc}]*\\\\])',\n name: 'variable.other.namespace-alias.vbnet'\n },\n 'integer-literal': {\n match: '(?i)(&H[0-9A-F]+|&O[0-7]+|&B[0-1]+|[0-9]+)(S|I|L|US|UI|UL|%|!)?',\n name: 'string.quoted.double.vbnet'\n },\n 'keyword-a': {\n match:\n '(?i)(?])|([(){}!#,.:]|((?<= )_(?=\\\\s$)))|\\\\?)',\n name: 'variable.other.namespace-alias.vbnet'\n }\n },\n scopeName: 'source.vbnet'\n}\n\nexport default grammar\n","// This is a TextMate grammar distributed by `starry-night`.\n// This grammar is developed at\n// \n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: [\n '.anim',\n '.asset',\n '.ksy',\n '.lkml',\n '.lookml',\n '.mat',\n '.meta',\n '.mir',\n '.prefab',\n '.raml',\n '.reek',\n '.rviz',\n '.sublime-syntax',\n '.syntax',\n '.unity',\n '.yaml-tmlanguage',\n '.yaml.sed',\n '.yml.mysql'\n ],\n names: [\n 'jar-manifest',\n 'kaitai-struct',\n 'ksy',\n 'lookml',\n 'oasv2-yaml',\n 'oasv3-yaml',\n 'raml',\n 'unity3d-asset',\n 'yaml',\n 'yml'\n ],\n patterns: [\n {include: '#erb'},\n {include: '#comment'},\n {match: '\\\\t+', name: 'invalid.illegal.whitespace.yaml'},\n {match: '^---', name: 'punctuation.definition.directives.end.yaml'},\n {match: '^\\\\.\\\\.\\\\.', name: 'punctuation.definition.document.end.yaml'},\n {\n begin:\n '^(\\\\s*)(?:(-)|(?:(?:(-)(\\\\s*))?([^!@#%&*>,][^:#]*\\\\S)\\\\s*(:)))(?:\\\\s+((!)[^!\\\\s]+))?\\\\s+(?=\\\\||>)',\n beginCaptures: {\n 2: {name: 'punctuation.definition.entry.yaml'},\n 3: {name: 'punctuation.definition.entry.yaml'},\n 5: {name: 'entity.name.tag.yaml'},\n 6: {name: 'punctuation.separator.key-value.yaml'},\n 7: {name: 'keyword.other.tag.local.yaml'},\n 8: {name: 'punctuation.definition.tag.local.yaml'}\n },\n contentName: 'string.unquoted.block.yaml',\n end: '^((?!$)(?!\\\\1\\\\s+)|(?=\\\\s\\\\4(-|[^\\\\s!@#%&*>,].*:\\\\s+)))',\n patterns: [\n {begin: '\\\\G', end: '$', patterns: [{include: '#comment'}]},\n {include: '#constants'},\n {include: '#erb'}\n ]\n },\n {\n begin:\n '^(\\\\s*)([^!@#%&*>,][^:#]*\\\\S)\\\\s*(:)(?:\\\\s+((!)[^!\\\\s]+))?\\\\s+(?=\\\\||>)',\n beginCaptures: {\n 2: {name: 'entity.name.tag.yaml'},\n 3: {name: 'punctuation.separator.key-value.yaml'},\n 4: {name: 'keyword.other.tag.local.yaml'},\n 5: {name: 'punctuation.definition.tag.local.yaml'}\n },\n contentName: 'string.unquoted.block.yaml',\n end: '^(?!$)(?!\\\\1\\\\s+)',\n patterns: [\n {begin: '\\\\G', end: '$', patterns: [{include: '#comment'}]},\n {include: '#constants'},\n {include: '#erb'}\n ]\n },\n {\n captures: {\n 1: {name: 'entity.name.tag.merge.yaml'},\n 2: {name: 'punctuation.separator.key-value.yaml'},\n 3: {patterns: [{include: '#variables'}]}\n },\n match: '(<<)\\\\s*(:)\\\\s+(.+)$'\n },\n {\n begin: '(?>^(\\\\s*)(-)?\\\\s*)([^!{@#%&*>,\\'\"][^#]*?)(:)\\\\s+((!!)omap)?',\n beginCaptures: {\n 2: {name: 'punctuation.definition.entry.yaml'},\n 3: {name: 'entity.name.tag.yaml'},\n 4: {name: 'punctuation.separator.key-value.yaml'},\n 5: {name: 'keyword.other.omap.yaml'},\n 6: {name: 'punctuation.definition.tag.omap.yaml'}\n },\n end: '^((?!\\\\1\\\\s+)|(?=\\\\1\\\\s*(-|[^!@#%&*>,].*:\\\\s+|#)))',\n patterns: [{include: '#scalar-content'}]\n },\n {\n begin:\n '^(\\\\s*)(-)?\\\\s*(?:((\\')([^\\']*?)(\\'))|((\")([^\"]*?)(\")))(:)\\\\s+((!!)omap)?',\n beginCaptures: {\n 10: {name: 'punctuation.definition.string.end.yaml'},\n 11: {name: 'punctuation.separator.key-value.yaml'},\n 12: {name: 'keyword.other.omap.yaml'},\n 13: {name: 'punctuation.definition.tag.omap.yaml'},\n 2: {name: 'punctuation.definition.entry.yaml'},\n 3: {name: 'string.quoted.single.yaml'},\n 4: {name: 'punctuation.definition.string.begin.yaml'},\n 5: {name: 'entity.name.tag.yaml'},\n 6: {name: 'punctuation.definition.string.end.yaml'},\n 7: {name: 'string.quoted.double.yaml'},\n 8: {name: 'punctuation.definition.string.begin.yaml'},\n 9: {name: 'entity.name.tag.yaml'}\n },\n end: '^((?!\\\\1\\\\s+)|(?=\\\\1\\\\s*(-|[^!@#%&*>,].*:\\\\s+|#)))',\n patterns: [{include: '#scalar-content'}]\n },\n {\n begin: '^(\\\\s*)(-)\\\\s+(?:((!!)omap)|((!)[^!\\\\s]+)|(?![!@#%&*>,]))',\n beginCaptures: {\n 2: {name: 'punctuation.definition.entry.yaml'},\n 3: {name: 'keyword.other.omap.yaml'},\n 4: {name: 'punctuation.definition.tag.omap.yaml'},\n 5: {name: 'keyword.other.tag.local.yaml'},\n 6: {name: 'punctuation.definition.tag.local.yaml'}\n },\n end: '^((?!\\\\1\\\\s+)|(?=\\\\1\\\\s*(-|[^!@#%&*>,].*:\\\\s+|#)))',\n patterns: [{include: '#scalar-content'}]\n },\n {include: '#variables'},\n {include: '#strings'}\n ],\n repository: {\n comment: {\n begin: '(?<=^|\\\\s)#(?!{)',\n beginCaptures: {0: {name: 'punctuation.definition.comment.yaml'}},\n end: '$',\n name: 'comment.line.number-sign.yaml'\n },\n constants: {\n match:\n '(?<=\\\\s)(true|false|null|True|False|Null|TRUE|FALSE|NULL|~)(?=\\\\s*$)',\n name: 'constant.language.yaml'\n },\n date: {\n captures: {1: {name: 'constant.other.date.yaml'}},\n match: '([0-9]{4}-[0-9]{2}-[0-9]{2})\\\\s*($|(?=#)(?!#{))'\n },\n erb: {\n begin: '<%+(?!>)=?',\n beginCaptures: {0: {name: 'punctuation.definition.embedded.begin.ruby'}},\n contentName: 'source.ruby.rails',\n end: '(%)>',\n endCaptures: {\n 0: {name: 'punctuation.definition.embedded.end.ruby'},\n 1: {name: 'source.ruby.rails'}\n },\n name: 'meta.embedded.line.ruby',\n patterns: [\n {\n captures: {1: {name: 'punctuation.definition.comment.ruby'}},\n match: '(#).*?(?=%>)',\n name: 'comment.line.number-sign.ruby'\n }\n ]\n },\n escaped_char: {\n patterns: [\n {match: '\\\\\\\\u[A-Fa-f0-9]{4}', name: 'constant.character.escape.yaml'},\n {match: '\\\\\\\\U[A-Fa-f0-9]{8}', name: 'constant.character.escape.yaml'},\n {match: '\\\\\\\\x[0-9A-Fa-f]{2}', name: 'constant.character.escape.yaml'},\n {\n match: '\\\\\\\\[0abtnvfre \"/\\\\\\\\N_LP]',\n name: 'constant.character.escape.yaml'\n },\n {\n match: '\\\\\\\\(u.{4}|U.{8}|x.{2}|.)',\n name: 'invalid.illegal.escape.yaml'\n }\n ]\n },\n numeric: {\n patterns: [\n {\n match: '[-+]?[0-9]+(?=\\\\s*($|#(?!#{)))',\n name: 'constant.numeric.integer.yaml'\n },\n {\n match: '0o[0-7]+(?=\\\\s*($|#(?!#{)))',\n name: 'constant.numeric.octal.yaml'\n },\n {\n match: '0x[0-9a-fA-F]+(?=\\\\s*($|#(?!#{)))',\n name: 'constant.numeric.hexadecimal.yaml'\n },\n {\n match:\n '[-+]?(.[0-9]+|[0-9]+(.[0-9]*)?)([eE][-+]?[0-9]+)?(?=\\\\s*($|#(?!#{)))',\n name: 'constant.numeric.float.yaml'\n },\n {\n match: '[-+]?(.inf|.Inf|.INF)(?=\\\\s*($|#(?!#{)))',\n name: 'constant.numeric.float.yaml'\n },\n {\n match: '(.nan|.NaN|.NAN)(?=\\\\s*($|#(?!#{)))',\n name: 'constant.numeric.float.yaml'\n }\n ]\n },\n 'scalar-content': {\n patterns: [\n {include: '#comment'},\n {\n match: '!(?=\\\\s)',\n name: 'punctuation.definition.tag.non-specific.yaml'\n },\n {include: '#constants'},\n {include: '#date'},\n {include: '#numeric'},\n {include: '#strings'}\n ]\n },\n strings: {\n patterns: [\n {\n begin: '\"',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.yaml'}\n },\n end: '\"',\n endCaptures: {0: {name: 'punctuation.definition.string.end.yaml'}},\n name: 'string.quoted.double.yaml',\n patterns: [{include: '#escaped_char'}, {include: '#erb'}]\n },\n {\n applyEndPatternLast: true,\n begin: \"'\",\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.yaml'}\n },\n end: \"'\",\n endCaptures: {0: {name: 'punctuation.definition.string.end.yaml'}},\n name: 'string.quoted.single.yaml',\n patterns: [\n {match: \"''\", name: 'constant.character.escape.yaml'},\n {include: '#erb'}\n ]\n },\n {\n begin: '`',\n beginCaptures: {\n 0: {name: 'punctuation.definition.string.begin.yaml'}\n },\n end: '`',\n endCaptures: {0: {name: 'punctuation.definition.string.end.yaml'}},\n name: 'string.interpolated.yaml',\n patterns: [{include: '#escaped_char'}, {include: '#erb'}]\n },\n {\n match: '[^\\\\s\"\\'\\\\n](?!\\\\s*#(?!{))([^#\\\\n]|((?\n// and licensed `mit`.\n// See for more info.\n/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\n/** @type {Grammar} */\nconst grammar = {\n extensions: ['.hta', '.htm', '.html.hl', '.kit', '.mtml', '.xht', '.xhtml'],\n names: ['html', 'kit', 'mtml', 'xhtml'],\n patterns: [\n {\n begin: '(<\\\\?)(xml)',\n captures: {\n 1: {name: 'punctuation.definition.tag.html'},\n 2: {name: 'entity.name.tag.xml.html'}\n },\n end: '(\\\\?>)',\n name: 'meta.tag.preprocessor.xml.html',\n patterns: [\n {include: '#tag-generic-attribute'},\n {include: '#string-double-quoted'},\n {include: '#string-single-quoted'}\n ]\n },\n {\n begin: ')([^\\\\n\\\\r]*)$',\n endCaptures: {1: {patterns: [{include: '#whatwg-html'}]}},\n name: 'text.html.basic',\n patterns: [{include: '#whatwg-html'}]\n },\n {\n captures: {0: {patterns: [{include: '#whatwg-html'}]}},\n match: '(?:^|\\\\G)[ ]{0,3}<\\\\?>[^\\\\n\\\\r]*$',\n name: 'text.html.basic'\n },\n {\n begin: '(?=(?:^|\\\\G)[ ]{0,3}<\\\\?)',\n end: '(?<=\\\\?>)([^\\\\n\\\\r]*)$',\n endCaptures: {1: {patterns: [{include: '#whatwg-html'}]}},\n name: 'text.html.basic',\n patterns: [{include: '#whatwg-html'}]\n },\n {\n begin: '(?=(?:^|\\\\G)[ ]{0,3})([^\\\\n\\\\r]*)$',\n endCaptures: {1: {patterns: [{include: '#whatwg-html'}]}},\n name: 'text.html.basic',\n patterns: [{include: '#whatwg-html'}]\n },\n {\n begin: '(?=(?:^|\\\\G)[ ]{0,3})([^\\\\n\\\\r]*)$',\n endCaptures: {1: {patterns: [{include: '#whatwg-html'}]}},\n name: 'text.html.basic',\n patterns: [{include: '#whatwg-html'}]\n },\n {\n begin:\n '(?=(?:^|\\\\G)[ ]{0,3}<(?i:textarea|script|style|pre)[\\\\t\\\\n\\\\r >])',\n end: ']|\\\\/>|$))',\n end: '^(?=[\\\\t ]*$)|$',\n name: 'text.html.basic',\n patterns: [{include: '#whatwg-html'}]\n },\n {\n begin:\n '(?=(?:^|\\\\G)[ ]{0,3}(?:[\\\\t ]*$))',\n end: '^(?=[\\\\t ]*$)|$',\n name: 'text.html.basic',\n patterns: [{include: '#whatwg-html'}]\n },\n {\n begin:\n '(?=(?:^|\\\\G)[ ]{0,3}<[A-Za-z][-0-9A-Za-z]*(?:[\\\\t\\\\n\\\\r ]+[:A-Z_a-z][\\\\-\\\\.0-9:A-Z_a-z]*(?:[\\\\t\\\\n\\\\r ]*=[\\\\t\\\\n\\\\r ]*(?:\"[^\"]*\"|\\'[^\\']*\\'|[^\\\\t\\\\n\\\\r \"\\'\\\\/<=>`]+))?)*(?:[\\\\t\\\\n\\\\r ]*\\\\/)?[\\\\t\\\\n\\\\r ]*>(?:[\\\\t ]*$))',\n end: '^(?=[\\\\t ]*$)|$',\n name: 'text.html.basic',\n patterns: [{include: '#whatwg-html'}]\n }\n ]\n },\n 'commonmark-html-text': {\n patterns: [\n {\n captures: {0: {patterns: [{include: '#whatwg-html'}]}},\n match: '',\n name: 'text.html.basic'\n },\n {\n captures: {0: {patterns: [{include: '#whatwg-html'}]}},\n match: '<\\\\?.*?\\\\?>',\n name: 'text.html.basic'\n },\n {\n captures: {0: {patterns: [{include: '#whatwg-html'}]}},\n match: '',\n name: 'text.html.basic'\n },\n {\n captures: {0: {patterns: [{include: '#whatwg-html'}]}},\n match: '',\n name: 'text.html.basic'\n },\n {\n captures: {0: {patterns: [{include: '#whatwg-html'}]}},\n match: '',\n name: 'text.html.basic'\n },\n {\n captures: {0: {patterns: [{include: '#whatwg-html'}]}},\n match:\n '<[A-Za-z][-0-9A-Za-z]*(?:[\\\\t\\\\n\\\\r ]+[:A-Z_a-z][\\\\-\\\\.0-9:A-Z_a-z]*(?:[\\\\t\\\\n\\\\r ]*=[\\\\t\\\\n\\\\r ]*(?:\"[^\"]*\"|\\'[^\\']*\\'|[^\\\\t\\\\n\\\\r \"\\'\\\\/<=>`]+))?)*(?:[\\\\t\\\\n\\\\r ]*\\\\/)?[\\\\t\\\\n\\\\r ]*>',\n name: 'text.html.basic'\n }\n ]\n },\n 'commonmark-label-end': {\n patterns: [\n {\n captures: {\n 1: {name: 'string.other.end.md'},\n 10: {name: 'string.other.begin.md'},\n 11: {\n name: 'string.quoted.single.md',\n patterns: [{include: '#markdown-string'}]\n },\n 12: {name: 'string.other.end.md'},\n 13: {name: 'string.other.begin.md'},\n 14: {\n name: 'string.quoted.paren.md',\n patterns: [{include: '#markdown-string'}]\n },\n 15: {name: 'string.other.end.md'},\n 16: {name: 'string.other.end.md'},\n 2: {name: 'string.other.begin.md'},\n 3: {name: 'string.other.begin.destination.md'},\n 4: {\n name: 'string.other.link.destination.md',\n patterns: [{include: '#markdown-string'}]\n },\n 5: {name: 'string.other.end.destination.md'},\n 6: {\n name: 'string.other.link.destination.md',\n patterns: [{include: '#markdown-string'}]\n },\n 7: {name: 'string.other.begin.md'},\n 8: {\n name: 'string.quoted.double.md',\n patterns: [{include: '#markdown-string'}]\n },\n 9: {name: 'string.other.end.md'}\n },\n match:\n '(\\\\])(\\\\()[\\\\t ]*(?:(?:(<)((?:[^\\\\n<\\\\\\\\>]|\\\\\\\\[<\\\\\\\\>]?)*)(>)|(\\\\g))(?:[\\\\t ]+(?:(\")((?:[^\"\\\\\\\\]|\\\\\\\\[\"\\\\\\\\]?)*)(\")|(\\')((?:[^\\'\\\\\\\\]|\\\\\\\\[\\'\\\\\\\\]?)*)(\\')|(\\\\()((?:[^\\\\)\\\\\\\\]|\\\\\\\\[\\\\)\\\\\\\\]?)*)(\\\\))))?)?[\\\\t ]*(\\\\))(?(?!\\\\<)(?:(?:[^\\\\p{Cc}\\\\ \\\\\\\\\\\\(\\\\)]|\\\\\\\\[\\\\(\\\\)\\\\\\\\]?)|\\\\(\\\\g*\\\\))+){0}'\n },\n {\n captures: {\n 1: {name: 'string.other.end.md'},\n 2: {name: 'string.other.begin.md'},\n 3: {\n name: 'entity.name.identifier.md',\n patterns: [{include: '#markdown-string'}]\n },\n 4: {name: 'string.other.end.md'}\n },\n match: '(\\\\])(\\\\[)((?:[^\\\\[\\\\\\\\\\\\]]|\\\\\\\\[\\\\[\\\\\\\\\\\\]]?)+?)(\\\\])'\n },\n {captures: {1: {name: 'string.other.end.md'}}, match: '(\\\\])'}\n ]\n },\n 'commonmark-label-start': {\n patterns: [\n {match: '\\\\!\\\\[(?!\\\\^)', name: 'string.other.begin.image.md'},\n {match: '\\\\[', name: 'string.other.begin.link.md'}\n ]\n },\n 'commonmark-list-item': {\n patterns: [\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}((?:[*+-]))(?:[ ]{4}(?![ ])|\\\\t)(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'variable.unordered.list.md'},\n 2: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t)[ ]{1}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}((?:[*+-]))(?:[ ]{3}(?![ ]))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'variable.unordered.list.md'},\n 2: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t)'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}((?:[*+-]))(?:[ ]{2}(?![ ]))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'variable.unordered.list.md'},\n 2: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)[ ]{3}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}((?:[*+-]))(?:[ ]{1}|(?=\\\\n))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'variable.unordered.list.md'},\n 2: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)[ ]{2}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}([0-9]{9})((?:\\\\.|\\\\)))(?:[ ]{4}(?![ ])|\\\\t(?![\\\\t ]))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t){3}[ ]{2}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(?:([0-9]{9})((?:\\\\.|\\\\)))(?:[ ]{3}(?![ ]))|([0-9]{8})((?:\\\\.|\\\\)))(?:[ ]{4}(?![ ])))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'string.other.number.md'},\n 4: {name: 'variable.ordered.list.md'},\n 5: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t){3}[ ]{1}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(?:([0-9]{9})((?:\\\\.|\\\\)))(?:[ ]{2}(?![ ]))|([0-9]{8})((?:\\\\.|\\\\)))(?:[ ]{3}(?![ ]))|([0-9]{7})((?:\\\\.|\\\\)))(?:[ ]{4}(?![ ])))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'string.other.number.md'},\n 4: {name: 'variable.ordered.list.md'},\n 5: {name: 'string.other.number.md'},\n 6: {name: 'variable.ordered.list.md'},\n 7: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t){3}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(?:([0-9]{9})((?:\\\\.|\\\\)))(?:[ ]{1}|(?=[ \\\\t]*\\\\n))|([0-9]{8})((?:\\\\.|\\\\)))(?:[ ]{2}(?![ ]))|([0-9]{7})((?:\\\\.|\\\\)))(?:[ ]{3}(?![ ]))|([0-9]{6})((?:\\\\.|\\\\)))(?:[ ]{4}(?![ ])))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'string.other.number.md'},\n 4: {name: 'variable.ordered.list.md'},\n 5: {name: 'string.other.number.md'},\n 6: {name: 'variable.ordered.list.md'},\n 7: {name: 'string.other.number.md'},\n 8: {name: 'variable.ordered.list.md'},\n 9: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t){2}[ ]{3}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(?:([0-9]{8})((?:\\\\.|\\\\)))(?:[ ]{1}|(?=[ \\\\t]*\\\\n))|([0-9]{7})((?:\\\\.|\\\\)))(?:[ ]{2}(?![ ]))|([0-9]{6})((?:\\\\.|\\\\)))(?:[ ]{3}(?![ ]))|([0-9]{5})((?:\\\\.|\\\\)))(?:[ ]{4}(?![ ])))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'string.other.number.md'},\n 4: {name: 'variable.ordered.list.md'},\n 5: {name: 'string.other.number.md'},\n 6: {name: 'variable.ordered.list.md'},\n 7: {name: 'string.other.number.md'},\n 8: {name: 'variable.ordered.list.md'},\n 9: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t){2}[ ]{2}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(?:([0-9]{7})((?:\\\\.|\\\\)))(?:[ ]{1}|(?=[ \\\\t]*\\\\n))|([0-9]{6})((?:\\\\.|\\\\)))(?:[ ]{2}(?![ ]))|([0-9]{5})((?:\\\\.|\\\\)))(?:[ ]{3}(?![ ]))|([0-9]{4})((?:\\\\.|\\\\)))(?:[ ]{4}(?![ ])))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'string.other.number.md'},\n 4: {name: 'variable.ordered.list.md'},\n 5: {name: 'string.other.number.md'},\n 6: {name: 'variable.ordered.list.md'},\n 7: {name: 'string.other.number.md'},\n 8: {name: 'variable.ordered.list.md'},\n 9: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t){2}[ ]{1}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(?:([0-9]{6})((?:\\\\.|\\\\)))(?:[ ]{1}|(?=[ \\\\t]*\\\\n))|([0-9]{5})((?:\\\\.|\\\\)))(?:[ ]{2}(?![ ]))|([0-9]{4})((?:\\\\.|\\\\)))(?:[ ]{3}(?![ ]))|([0-9]{3})((?:\\\\.|\\\\)))(?:[ ]{4}(?![ ])))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'string.other.number.md'},\n 4: {name: 'variable.ordered.list.md'},\n 5: {name: 'string.other.number.md'},\n 6: {name: 'variable.ordered.list.md'},\n 7: {name: 'string.other.number.md'},\n 8: {name: 'variable.ordered.list.md'},\n 9: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t){2}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(?:([0-9]{5})((?:\\\\.|\\\\)))(?:[ ]{1}|(?=[ \\\\t]*\\\\n))|([0-9]{4})((?:\\\\.|\\\\)))(?:[ ]{2}(?![ ]))|([0-9]{3})((?:\\\\.|\\\\)))(?:[ ]{3}(?![ ]))|([0-9]{2})((?:\\\\.|\\\\)))(?:[ ]{4}(?![ ])))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'string.other.number.md'},\n 4: {name: 'variable.ordered.list.md'},\n 5: {name: 'string.other.number.md'},\n 6: {name: 'variable.ordered.list.md'},\n 7: {name: 'string.other.number.md'},\n 8: {name: 'variable.ordered.list.md'},\n 9: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t)[ ]{3}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(?:([0-9]{4})((?:\\\\.|\\\\)))(?:[ ]{1}|(?=[ \\\\t]*\\\\n))|([0-9]{3})((?:\\\\.|\\\\)))(?:[ ]{2}(?![ ]))|([0-9]{2})((?:\\\\.|\\\\)))(?:[ ]{3}(?![ ]))|([0-9]{1})((?:\\\\.|\\\\)))(?:[ ]{4}(?![ ])))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'string.other.number.md'},\n 4: {name: 'variable.ordered.list.md'},\n 5: {name: 'string.other.number.md'},\n 6: {name: 'variable.ordered.list.md'},\n 7: {name: 'string.other.number.md'},\n 8: {name: 'variable.ordered.list.md'},\n 9: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t)[ ]{2}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(?:([0-9]{3})((?:\\\\.|\\\\)))(?:[ ]{1}|(?=[ \\\\t]*\\\\n))|([0-9]{2})((?:\\\\.|\\\\)))(?:[ ]{2}(?![ ]))|([0-9]{1})((?:\\\\.|\\\\)))(?:[ ]{3}(?![ ])))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'string.other.number.md'},\n 4: {name: 'variable.ordered.list.md'},\n 5: {name: 'string.other.number.md'},\n 6: {name: 'variable.ordered.list.md'},\n 7: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t)[ ]{1}'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(?:([0-9]{2})((?:\\\\.|\\\\)))(?:[ ]{1}|(?=[ \\\\t]*\\\\n))|([0-9])((?:\\\\.|\\\\)))(?:[ ]{2}(?![ ])))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'string.other.number.md'},\n 4: {name: 'variable.ordered.list.md'},\n 5: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t)'\n },\n {\n begin:\n '(?:^|\\\\G)[ ]{0,3}([0-9])((?:\\\\.|\\\\)))(?:[ ]{1}|(?=[ \\\\t]*\\\\n))(\\\\[[\\\\t Xx]\\\\](?=[\\\\t\\\\n\\\\r ]+(?:$|[^\\\\t\\\\n\\\\r ])))?',\n beginCaptures: {\n 1: {name: 'string.other.number.md'},\n 2: {name: 'variable.ordered.list.md'},\n 3: {name: 'keyword.other.tasklist.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)[ ]{3}'\n }\n ]\n },\n 'commonmark-paragraph': {\n begin: '(?![\\\\t ]*$)',\n name: 'meta.paragraph.md',\n patterns: [{include: '#markdown-text'}],\n while: '(?:^|\\\\G)(?:[ ]{4}|\\\\t)'\n },\n 'commonmark-thematic-break': {\n match: '(?:^|\\\\G)[ ]{0,3}([-*_])[ \\\\t]*(?:\\\\1[ \\\\t]*){2,}$',\n name: 'meta.separator.md'\n },\n 'extension-directive-attribute': {\n captures: {\n 1: {name: 'entity.other.attribute-name.md'},\n 10: {name: 'entity.other.attribute-name.class.md'},\n 11: {\n name: 'string.unquoted.md',\n patterns: [{include: '#whatwg-html-data-character-reference'}]\n },\n 12: {name: 'entity.other.attribute-name.id.md'},\n 13: {\n name: 'string.unquoted.md',\n patterns: [{include: '#whatwg-html-data-character-reference'}]\n },\n 2: {name: 'punctuation.separator.key-value.md'},\n 3: {name: 'string.other.begin.md'},\n 4: {\n name: 'string.quoted.double.md',\n patterns: [{include: '#whatwg-html-data-character-reference'}]\n },\n 5: {name: 'string.other.end.md'},\n 6: {name: 'string.other.begin.md'},\n 7: {\n name: 'string.quoted.single.md',\n patterns: [{include: '#whatwg-html-data-character-reference'}]\n },\n 8: {name: 'string.other.end.md'},\n 9: {\n name: 'string.unquoted.md',\n patterns: [{include: '#whatwg-html-data-character-reference'}]\n }\n },\n match:\n '((?:[A-Za-z:_][0-9A-Za-z\\\\-\\\\.:_]*))(?:[\\\\t ]*(=)[\\\\t ]*(?:(\")([^\"]*)(\")|(\\')([^\\']*)(\\')|([^\\\\t\\\\n\\\\r \"\\'<=>`\\\\}]+)))?|(\\\\.)((?:[^\\\\t\\\\n\\\\r \"#\\'\\\\.<=>`\\\\}][^\\\\t\\\\n\\\\r \"#\\'\\\\.<=>`\\\\}]*))|(#)((?:[^\\\\t\\\\n\\\\r \"#\\'\\\\.<=>`\\\\}][^\\\\t\\\\n\\\\r \"#\\'\\\\.<=>`\\\\}]*))'\n },\n 'extension-directive-container': {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(:{3,})((?:[A-Za-z][0-9A-Za-z\\\\-_]*))(?:(\\\\[)(\\\\g*)(\\\\]))?(?:(\\\\{)((?:(?:[A-Za-z:_][0-9A-Za-z\\\\-\\\\.:_]*)(?:[\\\\t ]*=[\\\\t ]*(?:\"[^\"]*\"|\\'[^\\']*\\'|[^\\\\t\\\\n\\\\r \"\\'<=>`\\\\}]+))?|[\\\\.#](?:[^\\\\t\\\\n\\\\r \"#\\'\\\\.<=>`\\\\}][^\\\\t\\\\n\\\\r \"#\\'\\\\.<=>`\\\\}]*)|[\\\\t ])*)(\\\\}))?(?:[\\\\t ]*$)(?(?:[^\\\\\\\\\\\\[\\\\]]|\\\\\\\\[\\\\\\\\\\\\[\\\\]]?)|\\\\[\\\\g*\\\\]){0}',\n beginCaptures: {\n 1: {name: 'string.other.begin.directive.md'},\n 2: {name: 'entity.name.function.md'},\n 3: {name: 'string.other.begin.directive.label.md'},\n 4: {patterns: [{include: '#markdown-text'}]},\n 5: {name: 'string.other.end.directive.label.md'},\n 6: {name: 'string.other.begin.directive.attributes.md'},\n 7: {patterns: [{include: '#extension-directive-attribute'}]},\n 8: {name: 'string.other.end.directive.attributes.md'}\n },\n end: '(\\\\1)(?:[\\\\t ]*$)',\n endCaptures: {1: {name: 'string.other.end.directive.md'}},\n patterns: [{include: '#markdown-sections'}]\n },\n 'extension-directive-leaf': {\n captures: {\n 1: {name: 'string.other.begin.directive.md'},\n 2: {name: 'entity.name.function.md'},\n 3: {name: 'string.other.begin.directive.label.md'},\n 4: {patterns: [{include: '#markdown-text'}]},\n 5: {name: 'string.other.end.directive.label.md'},\n 6: {name: 'string.other.begin.directive.attributes.md'},\n 7: {patterns: [{include: '#extension-directive-attribute'}]},\n 8: {name: 'string.other.end.directive.attributes.md'}\n },\n match:\n '(?:^|\\\\G)[ ]{0,3}(:{2})((?:[A-Za-z][0-9A-Za-z\\\\-_]*))(?:(\\\\[)(\\\\g*)(\\\\]))?(?:(\\\\{)((?:(?:[A-Za-z:_][0-9A-Za-z\\\\-\\\\.:_]*)(?:[\\\\t ]*=[\\\\t ]*(?:\"[^\"]*\"|\\'[^\\']*\\'|[^\\\\t\\\\n\\\\r \"\\'<=>`\\\\}]+))?|[\\\\.#](?:[^\\\\t\\\\n\\\\r \"#\\'\\\\.<=>`\\\\}][^\\\\t\\\\n\\\\r \"#\\'\\\\.<=>`\\\\}]*)|[\\\\t ])*)(\\\\}))?(?:[\\\\t ]*$)(?(?:[^\\\\\\\\\\\\[\\\\]]|\\\\\\\\[\\\\\\\\\\\\[\\\\]]?)|\\\\[\\\\g*\\\\]){0}',\n name: 'meta.tag.${2:/downcase}.md'\n },\n 'extension-directive-text': {\n captures: {\n 1: {name: 'string.other.begin.directive.md'},\n 2: {name: 'entity.name.function.md'},\n 3: {name: 'string.other.begin.directive.label.md'},\n 4: {patterns: [{include: '#markdown-text'}]},\n 5: {name: 'string.other.end.directive.label.md'},\n 6: {name: 'string.other.begin.directive.attributes.md'},\n 7: {patterns: [{include: '#extension-directive-attribute'}]},\n 8: {name: 'string.other.end.directive.attributes.md'}\n },\n match:\n '(?*)(\\\\]))?(?:(\\\\{)((?:(?:[A-Za-z:_][0-9A-Za-z\\\\-\\\\.:_]*)(?:[\\\\t ]*=[\\\\t ]*(?:\"[^\"]*\"|\\'[^\\']*\\'|[^\\\\t\\\\n\\\\r \"\\'<=>`\\\\}]+))?|[\\\\.#](?:[^\\\\t\\\\n\\\\r \"#\\'\\\\.<=>`\\\\}][^\\\\t\\\\n\\\\r \"#\\'\\\\.<=>`\\\\}]*)|[\\\\t ])*)(\\\\}))?(?(?:[^\\\\\\\\\\\\[\\\\]]|\\\\\\\\[\\\\\\\\\\\\[\\\\]]?)|\\\\[\\\\g*\\\\]){0}',\n name: 'meta.tag.${2:/downcase}.md'\n },\n 'extension-gfm-autolink-literal': {\n patterns: [\n {\n match:\n '(?<=^|[\\\\t\\\\n\\\\r \\\\(\\\\*\\\\_\\\\[\\\\]~])(?=(?i:www)\\\\.[^\\\\n\\\\r])(?:(?:[\\\\p{L}\\\\p{N}]|-|[\\\\._](?!(?:[!\"\\'\\\\)\\\\*,\\\\.:;<\\\\?_~]*(?:[\\\\s<]|\\\\][\\\\t\\\\n \\\\(\\\\[]))))+\\\\g?)?(?(?:(?:[^\\\\t\\\\n\\\\r !\"&\\'\\\\(\\\\)\\\\*,\\\\.:;<\\\\?\\\\]_~]|&(?![A-Za-z]*;(?:[!\"\\'\\\\)\\\\*,\\\\.:;<\\\\?_~]*(?:[\\\\s<]|\\\\][\\\\t\\\\n \\\\(\\\\[])))|[!\"\\'\\\\)\\\\*,\\\\.:;\\\\?_~](?!(?:[!\"\\'\\\\)\\\\*,\\\\.:;<\\\\?_~]*(?:[\\\\s<]|\\\\][\\\\t\\\\n \\\\(\\\\[]))))|\\\\(\\\\g*\\\\))+){0}',\n name: 'string.other.link.autolink.literal.www.md'\n },\n {\n match:\n '(?<=^|[^A-Za-z])(?i:https?://)(?=[\\\\p{L}\\\\p{N}])(?:(?:[\\\\p{L}\\\\p{N}]|-|[\\\\._](?!(?:[!\"\\'\\\\)\\\\*,\\\\.:;<\\\\?_~]*(?:[\\\\s<]|\\\\][\\\\t\\\\n \\\\(\\\\[]))))+\\\\g?)?(?(?:(?:[^\\\\t\\\\n\\\\r !\"&\\'\\\\(\\\\)\\\\*,\\\\.:;<\\\\?\\\\]_~]|&(?![A-Za-z]*;(?:[!\"\\'\\\\)\\\\*,\\\\.:;<\\\\?_~]*(?:[\\\\s<]|\\\\][\\\\t\\\\n \\\\(\\\\[])))|[!\"\\'\\\\)\\\\*,\\\\.:;\\\\?_~](?!(?:[!\"\\'\\\\)\\\\*,\\\\.:;<\\\\?_~]*(?:[\\\\s<]|\\\\][\\\\t\\\\n \\\\(\\\\[]))))|\\\\(\\\\g*\\\\))+){0}',\n name: 'string.other.link.autolink.literal.http.md'\n },\n {\n match:\n '(?<=^|[^A-Za-z/])(?i:mailto:|xmpp:)?(?:[0-9A-Za-z+\\\\-\\\\._])+@(?:(?:[0-9A-Za-z]|[-_](?!(?:[!\"\\'\\\\)\\\\*,\\\\.:;<\\\\?_~]*(?:[\\\\s<]|\\\\][\\\\t\\\\n \\\\(\\\\[]))))+(?:\\\\.(?!(?:[!\"\\'\\\\)\\\\*,\\\\.:;<\\\\?_~]*(?:[\\\\s<]|\\\\][\\\\t\\\\n \\\\(\\\\[])))))+(?:[A-Za-z]|[-_](?!(?:[!\"\\'\\\\)\\\\*,\\\\.:;<\\\\?_~]*(?:[\\\\s<]|\\\\][\\\\t\\\\n \\\\(\\\\[]))))+',\n name: 'string.other.link.autolink.literal.email.md'\n }\n ]\n },\n 'extension-gfm-footnote-call': {\n captures: {\n 1: {name: 'string.other.begin.link.md'},\n 2: {name: 'string.other.begin.footnote.md'},\n 3: {\n name: 'entity.name.identifier.md',\n patterns: [{include: '#markdown-string'}]\n },\n 4: {name: 'string.other.end.footnote.md'}\n },\n match: '(\\\\[)(\\\\^)((?:[^\\\\t\\\\n\\\\r \\\\[\\\\\\\\\\\\]]|\\\\\\\\[\\\\[\\\\\\\\\\\\]]?)+)(\\\\])'\n },\n 'extension-gfm-footnote-definition': {\n begin:\n '(?:^|\\\\G)[ ]{0,3}(\\\\[)(\\\\^)((?:[^\\\\t\\\\n\\\\r \\\\[\\\\\\\\\\\\]]|\\\\\\\\[\\\\[\\\\\\\\\\\\]]?)+)(\\\\])(:)[\\\\t ]*',\n beginCaptures: {\n 1: {name: 'string.other.begin.link.md'},\n 2: {name: 'string.other.begin.footnote.md'},\n 3: {\n name: 'entity.name.identifier.md',\n patterns: [{include: '#markdown-string'}]\n },\n 4: {name: 'string.other.end.footnote.md'}\n },\n patterns: [{include: '#markdown-sections'}],\n while: '^(?=[\\\\t ]*$)|(?:^|\\\\G)(?:[ ]{4}|\\\\t)'\n },\n 'extension-gfm-strikethrough': {\n match: '(?<=\\\\S)(?]+)))'\n },\n 'whatwg-html-attribute-style': {\n captures: {\n 1: {name: 'entity.other.attribute-name.html.md'},\n 2: {name: 'punctuation.separator.key-value.html.md'},\n 3: {name: 'string.other.begin.html.md'},\n 4: {\n name: 'string.quoted.double.html.md',\n patterns: [\n {include: '#whatwg-html-data-character-reference'},\n {include: 'source.css#rule-list-innards'}\n ]\n },\n 5: {name: 'string.other.end.html.md'},\n 6: {name: 'string.other.begin.html.md'},\n 7: {\n name: 'string.quoted.single.html.md',\n patterns: [\n {include: '#whatwg-html-data-character-reference'},\n {include: 'source.css#rule-list-innards'}\n ]\n },\n 8: {name: 'string.other.end.html.md'},\n 9: {\n name: 'string.unquoted.html.md',\n patterns: [\n {include: '#whatwg-html-data-character-reference'},\n {include: 'source.css#rule-list-innards'}\n ]\n }\n },\n match:\n '((?i:style))(?:[\\\\t\\\\n\\\\f\\\\r ]*(=)[\\\\t\\\\n\\\\f\\\\r ]*(?:(\")([^\"]*)(\")|(\\')([^\\']*)(\\')|([^\\\\t\\\\n\\\\f\\\\r >]+)))'\n },\n 'whatwg-html-attribute-unknown': {\n captures: {\n 1: {name: 'entity.other.attribute-name.html.md'},\n 2: {name: 'punctuation.separator.key-value.html.md'},\n 3: {name: 'string.other.begin.html.md'},\n 4: {\n name: 'string.quoted.double.html.md',\n patterns: [{include: '#whatwg-html-data-character-reference'}]\n },\n 5: {name: 'string.other.end.html.md'},\n 6: {name: 'string.other.begin.html.md'},\n 7: {\n name: 'string.quoted.single.html.md',\n patterns: [{include: '#whatwg-html-data-character-reference'}]\n },\n 8: {name: 'string.other.end.html.md'},\n 9: {\n name: 'string.unquoted.html.md',\n patterns: [{include: '#whatwg-html-data-character-reference'}]\n }\n },\n match:\n '((?:=(?:[^\\\\t\\\\n\\\\f\\\\r />=])*|(?:[^\\\\t\\\\n\\\\f\\\\r />=])+))(?:[\\\\t\\\\n\\\\f\\\\r ]*(=)[\\\\t\\\\n\\\\f\\\\r ]*(?:(\")([^\"]*)(\")|(\\')([^\\']*)(\\')|([^\\\\t\\\\n\\\\f\\\\r >]+)))?'\n },\n 'whatwg-html-data-character-reference': {\n patterns: [\n {include: '#whatwg-html-data-character-reference-named-terminated'},\n {include: '#whatwg-html-data-character-reference-named-unterminated'},\n {include: '#whatwg-html-data-character-reference-numeric-hexadecimal'},\n {include: '#whatwg-html-data-character-reference-numeric-decimal'}\n ]\n },\n 'whatwg-html-data-character-reference-named-terminated': {\n captures: {\n 1: {name: 'punctuation.definition.character-reference.begin.html'},\n 2: {name: 'keyword.control.character-reference.html'},\n 3: {name: 'punctuation.definition.character-reference.end.html'}\n },\n match:\n '(&)((?:C(?:(?:o(?:unterClockwiseCo)?|lockwiseCo)ntourIntegra|cedi)|(?:(?:Not(?:S(?:quareSu(?:per|b)set|u(?:cceeds|(?:per|b)set))|Precedes|Greater|Tilde|Less)|Not(?:Righ|Lef)tTriangle|(?:Not(?:(?:Succeed|Precede|Les)s|Greater)|(?:Precede|Succeed)s|Less)Slant|SquareSu(?:per|b)set|(?:Not(?:Greater|Tilde)|Tilde|Less)Full|RightTriangle|LeftTriangle|Greater(?:Slant|Full)|Precedes|Succeeds|Superset|NotHump|Subset|Tilde|Hump)Equ|int(?:er)?c|DotEqu)a|DoubleContourIntegra|(?:n(?:short)?parall|shortparall|p(?:arall|rur))e|(?:rightarrowta|l(?:eftarrowta|ced|ata|Ata)|sced|rata|perm|rced|rAta|ced)i|Proportiona|smepars|e(?:qvpars|pars|xc|um)|Integra|suphso|rarr[pt]|n(?:pars|tg)|l(?:arr[pt]|cei)|Rarrt|(?:hybu|fora)l|ForAl|[GKLNR-Tcknt]cedi|rcei|iexc|gime|fras|[uy]um|oso|dso|ium|Ium)l|D(?:o(?:uble(?:(?:L(?:ong(?:Left)?R|eftR)ight|L(?:ongL)?eft|UpDown|Right|Up)Arrow|Do(?:wnArrow|t))|wn(?:ArrowUpA|TeeA|a)rrow)|iacriticalDot|strok|ashv|cy)|(?:(?:(?:N(?:(?:otN)?estedGreater|ot(?:Greater|Less))|Less(?:Equal)?)Great|GreaterGreat|l[lr]corn|mark|east)e|Not(?:Double)?VerticalBa|(?:Not(?:Righ|Lef)tTriangleB|(?:(?:Righ|Lef)tDown|Right(?:Up)?|Left(?:Up)?)VectorB|RightTriangleB|Left(?:Triangle|Arrow)B|RightArrowB|V(?:er(?:ticalB|b)|b)|UpArrowB|l(?:ur(?:ds|u)h|dr(?:us|d)h|trP|owb|H)|profal|r(?:ulu|dld)h|b(?:igst|rvb)|(?:wed|ve[er])b|s(?:wn|es)w|n(?:wne|ese|sp|hp)|gtlP|d(?:oll|uh|H)|(?:hor|ov)b|u(?:dh|H)|r(?:lh|H)|ohb|hb|St)a|D(?:o(?:wn(?:(?:Left(?:Right|Tee)|RightTee)Vecto|(?:(?:Righ|Lef)tVector|Arrow)Ba)|ubleVerticalBa)|a(?:gge|r)|sc|f)|(?:(?:(?:Righ|Lef)tDown|(?:Righ|Lef)tUp)Tee|(?:Righ|Lef)tUpDown)Vecto|VerticalSeparato|(?:Left(?:Right|Tee)|RightTee)Vecto|less(?:eqq?)?gt|e(?:qslantgt|sc)|(?:RightF|LeftF|[lr]f)loo|u(?:[lr]corne|ar)|timesba|(?:plusa|cirs|apa)ci|U(?:arroci|f)|(?:dzigr|s(?:u(?:pl|br)|imr|[lr])|zigr|angz|nvH|l(?:tl|B)|r[Br])ar|UnderBa|(?:plus|harr|top|mid|of)ci|O(?:verBa|sc|f)|dd?agge|s(?:olba|sc)|g(?:t(?:rar|ci)|sc|f)|c(?:opys|u(?:po|ep)|sc|f)|(?:n(?:(?:v[lr]|w|r)A|l[Aa]|h[Aa]|eA)|x[hlr][Aa]|u(?:ua|da|A)|s[ew]A|rla|o[lr]a|rba|rAa|l[Ablr]a|h(?:oa|A)|era|d(?:ua|A)|cra|vA)r|o(?:lci|sc|ro|pa)|ropa|roar|l(?:o(?:pa|ar)|sc|Ar)|i(?:ma|s)c|ltci|dd?ar|a(?:ma|s)c|R(?:Bar|sc|f)|I(?:mac|f)|(?:u(?:ma|s)|oma|ema|Oma|Ema|[wyz]s|qs|ks|fs|Zs|Ys|Xs|Ws|Vs|Us|Ss|Qs|Ns|Ms|Ks|Is|Gs|Fs|Cs|Bs)c|Umac|x(?:sc|f)|v(?:sc|f)|rsc|n(?:ld|f)|m(?:sc|ld|ac|f)|rAr|h(?:sc|f)|b(?:sc|f)|psc|P(?:sc|f)|L(?:sc|ar|f)|jsc|J(?:sc|f)|E(?:sc|f)|[HT]sc|[yz]f|wf|tf|qf|pf|kf|jf|Zf|Yf|Xf|Wf|Vf|Tf|Sf|Qf|Nf|Mf|Kf|Hf|Gf|Ff|Cf|Bf)r|(?:Diacritical(?:Double)?A|[EINOSYZaisz]a)cute|(?:(?:N(?:egative(?:VeryThin|Thi(?:ck|n))|onBreaking)|NegativeMedium|ZeroWidth|VeryThin|Medium|Thi(?:ck|n))Spac|Filled(?:Very)?SmallSquar|Empty(?:Very)?SmallSquar|(?:N(?:ot(?:Succeeds|Greater|Tilde|Less)T|t)|DiacriticalT|VerticalT|PrecedesT|SucceedsT|NotEqualT|GreaterT|TildeT|EqualT|LessT|at|Ut|It)ild|(?:(?:DiacriticalG|[EIOUaiu]g)ra|(?:u|U)?bre|(?:o|e)?gra)v|(?:doublebar|curly|big|x)wedg|H(?:orizontalLin|ilbertSpac)|Double(?:Righ|Lef)tTe|(?:(?:measured|uw)ang|exponentia|dwang|ssmi|fema)l|(?:Poincarepla|reali|pho|oli)n|(?:black)?lozeng|(?:VerticalL|(?:prof|imag)l)in|SmallCircl|(?:black|dot)squar|rmoustach|l(?:moustach|angl)|(?:b(?:ack)?pr|(?:tri|xo)t|[qt]pr)im|[Tt]herefor|(?:DownB|[Gag]b)rev|(?:infint|nv[lr]tr)i|b(?:arwedg|owti)|an(?:dslop|gl)|(?:cu(?:rly)?v|rthr|lthr|b(?:ig|ar)v|xv)e|n(?:s(?:qsu[bp]|ccu)|prcu)|orslop|NewLin|maltes|Becaus|rangl|incar|(?:otil|Otil|t(?:ra|il))d|[inu]tild|s(?:mil|imn)|(?:sc|pr)cu|Wedg|Prim|Brev)e|(?:CloseCurly(?:Double)?Quo|OpenCurly(?:Double)?Quo|[ry]?acu)te|(?:Reverse(?:Up)?|Up)Equilibrium|C(?:apitalDifferentialD|(?:oproduc|(?:ircleD|enterD|d)o)t|on(?:grue|i)nt|conint|upCap|o(?:lone|pf)|OPY|hi)|(?:(?:(?:left)?rightsquig|(?:longleftr|twoheadr|nleftr|nLeftr|longr|hookr|nR|Rr)ight|(?:twohead|hook)left|longleft|updown|Updown|nright|Right|nleft|nLeft|down|up|Up)a|L(?:(?:ong(?:left)?righ|(?:ong)?lef)ta|eft(?:(?:right)?a|RightA|TeeA))|RightTeeA|LongLeftA|UpTeeA)rrow|(?:(?:RightArrow|Short|Upper|Lower)Left|(?:L(?:eftArrow|o(?:wer|ng))|LongLeft|Short|Upper)Right|ShortUp)Arrow|(?:b(?:lacktriangle(?:righ|lef)|ulle|no)|RightDoubleBracke|RightAngleBracke|Left(?:Doub|Ang)leBracke|(?:vartriangle|downharpoon|c(?:ircl|urv)earrow|upharpoon|looparrow)righ|(?:vartriangle|downharpoon|c(?:ircl|urv)earrow|upharpoon|looparrow|mapsto)lef|(?:UnderBrack|OverBrack|emptys|targ|Sups)e|diamondsui|c(?:ircledas|lubsui|are)|(?:spade|heart)sui|(?:(?:c(?:enter|t)|lmi|ino)d|(?:Triple|mD)D|n(?:otin|e)d|(?:ncong|doteq|su[bp]e|e[gl]s)d|l(?:ess|t)d|isind|c(?:ong|up|ap)?d|b(?:igod|N)|t(?:(?:ri)?d|opb)|s(?:ub|im)d|midd|g(?:tr?)?d|Lmid|DotD|(?:xo|ut|z)d|e(?:s?d|rD|fD|DD)|dtd|Zd|Id|Gd|Ed)o|realpar|i(?:magpar|iin)|S(?:uchTha|qr)|su[bp]mul|(?:(?:lt|i)que|gtque|(?:mid|low)a|e(?:que|xi))s|Produc|s(?:updo|e[cx])|r(?:parg|ec)|lparl|vangr|hamil|(?:homt|[lr]fis|ufis|dfis)h|phmma|t(?:wix|in)|quo|o(?:do|as)|fla|eDo)t|(?:(?:Square)?Intersecti|(?:straight|back|var)epsil|SquareUni|expectati|upsil|epsil|Upsil|eq?col|Epsil|(?:omic|Omic|rca|lca|eca|Sca|[NRTt]ca|Lca|Eca|[Zdz]ca|Dca)r|scar|ncar|herc|ccar|Ccar|iog|Iog)on|Not(?:S(?:quareSu(?:per|b)set|u(?:cceeds|(?:per|b)set))|Precedes|Greater|Tilde|Less)?|(?:(?:(?:Not(?:Reverse)?|Reverse)E|comp|E)leme|NotCongrue|(?:n[gl]|l)eqsla|geqsla|q(?:uat)?i|perc|iiii|coni|cwi|awi|oi)nt|(?:(?:rightleftharpo|leftrightharpo|quaterni)on|(?:(?:N(?:ot(?:NestedLess|Greater|Less)|estedLess)L|(?:eqslant|gtr(?:eqq?)?)l|LessL)e|Greater(?:Equal)?Le|cro)s|(?:rightright|leftleft|upup)arrow|rightleftarrow|(?:(?:(?:righ|lef)tthree|divideon|b(?:igo|ox)|[lr]o)t|InvisibleT)ime|downdownarrow|(?:(?:smallset|tri|dot|box)m|PlusM)inu|(?:RoundImpli|complex|Impli|Otim)e|C(?:ircle(?:Time|Minu|Plu)|ayley|ros)|(?:rationa|mode)l|NotExist|(?:(?:UnionP|MinusP|(?:b(?:ig[ou]|ox)|tri|s(?:u[bp]|im)|dot|xu|mn)p)l|(?:xo|u)pl|o(?:min|pl)|ropl|lopl|epl)u|otimesa|integer|e(?:linter|qual)|setminu|rarrbf|larrb?f|olcros|rarrf|mstpo|lesge|gesle|Exist|[lr]time|strn|napo|fltn|ccap|apo)s|(?:b(?:(?:lack|ig)triangledow|etwee)|(?:righ|lef)tharpoondow|(?:triangle|mapsto)dow|(?:nv|i)infi|ssetm|plusm|lagra|d(?:[lr]cor|isi)|c(?:ompf|aro)|s?frow|(?:hyph|curr)e|kgree|thor|ogo|ye)n|Not(?:Righ|Lef)tTriangle|(?:Up(?:Arrow)?|Short)DownArrow|(?:(?:n(?:triangle(?:righ|lef)t|succ|prec)|(?:trianglerigh|trianglelef|sqsu[bp]se|ques)t|backsim)e|lvertneq|gvertneq|(?:suc|pre)cneq|a(?:pprox|symp)e|(?:succ|prec|vee)e|circe)q|(?:UnderParenthes|OverParenthes|xn)is|(?:(?:Righ|Lef)tDown|Right(?:Up)?|Left(?:Up)?)Vector|D(?:o(?:wn(?:RightVector|LeftVector|Arrow|Tee)|t)|el|D)|l(?:eftrightarrows|br(?:k(?:sl[du]|e)|ac[ek])|tri[ef]|s(?:im[eg]|qb|h)|hard|a(?:tes|ngd|p)|o[pz]f|rm|gE|fr|eg|cy)|(?:NotHumpDownHum|(?:righ|lef)tharpoonu|big(?:(?:triangle|sqc)u|c[au])|HumpDownHum|m(?:apstou|lc)|(?:capbr|xsq)cu|smash|rarr[al]|(?:weie|sha)r|larrl|velli|(?:thin|punc)s|h(?:elli|airs)|(?:u[lr]c|vp)ro|d[lr]cro|c(?:upc[au]|apc[au])|thka|scna|prn?a|oper|n(?:ums|va|cu|bs)|ens|xc[au]|Ma)p|l(?:eftrightarrow|e(?:ftarrow|s(?:dot)?)?|moust|a(?:rrb?|te?|ng)|t(?:ri)?|sim|par|oz|l|g)|n(?:triangle(?:righ|lef)t|succ|prec)|SquareSu(?:per|b)set|(?:I(?:nvisibleComm|ot)|(?:varthe|iio)t|varkapp|(?:vars|S)igm|(?:diga|mco)mm|Cedill|lambd|Lambd|delt|Thet|omeg|Omeg|Kapp|Delt|nabl|zet|to[es]|rdc|ldc|iot|Zet|Bet|Et)a|b(?:lacktriangle|arwed|u(?:mpe?|ll)|sol|o(?:x[HVhv]|t)|brk|ne)|(?:trianglerigh|trianglelef|sqsu[bp]se|ques)t|RightT(?:riangl|e)e|(?:(?:varsu[bp]setn|su(?:psetn?|bsetn?))eq|nsu[bp]seteq|colone|(?:wedg|sim)e|nsime|lneq|gneq)q|DifferentialD|(?:(?:fall|ris)ingdots|(?:suc|pre)ccurly|ddots)eq|A(?:pplyFunction|ssign|(?:tild|grav|brev)e|acute|o(?:gon|pf)|lpha|(?:mac|sc|f)r|c(?:irc|y)|ring|Elig|uml|nd|MP)|(?:varsu[bp]setn|su(?:psetn?|bsetn?))eq|L(?:eft(?:T(?:riangl|e)e|Arrow)|l)|G(?:reaterEqual|amma)|E(?:xponentialE|quilibrium|sim|cy|TH|NG)|(?:(?:RightCeil|LeftCeil|varnoth|ar|Ur)in|(?:b(?:ack)?co|uri)n|vzigza|roan|loan|ffli|amal|sun|rin|n(?:tl|an)|Ran|Lan)g|(?:thick|succn?|precn?|less|g(?:tr|n)|ln|n)approx|(?:s(?:traightph|em)|(?:rtril|xu|u[lr]|xd|v[lr])tr|varph|l[lr]tr|b(?:sem|eps)|Ph)i|(?:circledd|osl|n(?:v[Dd]|V[Dd]|d)|hsl|V(?:vd|D)|Osl|v[Dd]|md)ash|(?:(?:RuleDelay|imp|cuw)e|(?:n(?:s(?:hort)?)?|short|rn)mi|D(?:Dotrah|iamon)|(?:i(?:nt)?pr|peri)o|odsol|llhar|c(?:opro|irmi)|(?:capa|anda|pou)n|Barwe|napi|api)d|(?:cu(?:rlyeq(?:suc|pre)|es)|telre|[ou]dbla|Udbla|Odbla|radi|lesc|gesc|dbla)c|(?:circled|big|eq|[is]|c|x|a|S|[hw]|W|H|G|E|C)circ|rightarrow|R(?:ightArrow|arr|e)|Pr(?:oportion)?|(?:longmapst|varpropt|p(?:lustw|ropt)|varrh|numer|(?:rsa|lsa|sb)qu|m(?:icr|h)|[lr]aqu|bdqu|eur)o|UnderBrace|ImaginaryI|B(?:ernoullis|a(?:ckslash|rv)|umpeq|cy)|(?:(?:Laplace|Mellin|zee)tr|Fo(?:uriertr|p)|(?:profsu|ssta)r|ordero|origo|[ps]op|nop|mop|i(?:op|mo)|h(?:op|al)|f(?:op|no)|dop|bop|Rop|Pop|Nop|Lop|Iop|Hop|Dop|[GJKMOQSTV-Zgjkoqvwyz]op|Bop)f|nsu[bp]seteq|t(?:ri(?:angleq|e)|imesd|he(?:tav|re4)|au)|O(?:verBrace|r)|(?:(?:pitchfo|checkma|t(?:opfo|b)|rob|rbb|l[bo]b)r|intlarh|b(?:brktbr|l(?:oc|an))|perten|NoBrea|rarrh|s[ew]arh|n[ew]arh|l(?:arrh|hbl)|uhbl|Hace)k|(?:NotCupC|(?:mu(?:lti)?|x)m|cupbrc)ap|t(?:riangle|imes|heta|opf?)|Precedes|Succeeds|Superset|NotEqual|(?:n(?:atural|exist|les)|s(?:qc[au]p|mte)|prime)s|c(?:ir(?:cled[RS]|[Ee])|u(?:rarrm|larrp|darr[lr]|ps)|o(?:mmat|pf)|aps|hi)|b(?:sol(?:hsu)?b|ump(?:eq|E)|ox(?:box|[Vv][HLRhlr]|[Hh][DUdu]|[DUdu][LRlr])|e(?:rnou|t[ah])|lk(?:34|1[24])|cy)|(?:l(?:esdot|squ|dqu)o|rsquo|rdquo|ngt)r|a(?:n(?:g(?:msda[a-h]|st|e)|d[dv])|st|p[Ee]|mp|fr|c[Edy])|(?:g(?:esdoto|E)|[lr]haru)l|(?:angrtvb|lrhar|nis)d|(?:(?:th(?:ic)?k|succn?|p(?:r(?:ecn?|n)?|lus)|rarr|l(?:ess|arr)|su[bp]|par|scn|g(?:tr|n)|ne|sc|n[glv]|ln|eq?)si|thetasy|ccupss|alefsy|botto)m|trpezium|(?:hks[ew]|dr?bk|bk)arow|(?:(?:[lr]a|d|c)empty|b(?:nequi|empty)|plank|nequi|odi)v|(?:(?:sc|rp|n)pol|point|fpart)int|(?:c(?:irf|wco)|awco)nint|PartialD|n(?:s(?:u[bp](?:set)?|c)|rarr|ot(?:ni|in)?|warr|e(?:arr)?|a(?:tur|p)|vlt|p(?:re?|ar)|um?|l[et]|ge|i)|n(?:atural|exist|les)|d(?:i(?:am(?:ond)?|v(?:ide)?)|tri|ash|ot|d)|backsim|l(?:esdot|squ|dqu)o|g(?:esdoto|E)|U(?:p(?:Arrow|si)|nion|arr)|angrtvb|p(?:l(?:anckh|us(?:d[ou]|[be]))|ar(?:sl|t)|r(?:od|nE|E)|erp|iv|m)|n(?:ot(?:niv[a-c]|in(?:v[a-c]|E))|rarr[cw]|s(?:u[bp][Ee]|c[er])|part|v(?:le|g[et])|g(?:es|E)|c(?:ap|y)|apE|lE|iv|Ll|Gg)|m(?:inus(?:du|b)|ale|cy|p)|rbr(?:k(?:sl[du]|e)|ac[ek])|(?:suphsu|tris|rcu|lcu)b|supdsub|(?:s[ew]a|n[ew]a)rrow|(?:b(?:ecaus|sim)|n(?:[lr]tri|bump)|csu[bp])e|equivDD|u(?:rcorn|lcorn|psi)|timesb|s(?:u(?:p(?:set)?|b(?:set)?)|q(?:su[bp]|u)|i(?:gma|m)|olb?|dot|mt|fr|ce?)|p(?:l(?:anck|us)|r(?:op|ec?)?|ara?|i)|o(?:times|r(?:d(?:er)?)?)|m(?:i(?:nusd?|d)|a(?:p(?:sto)?|lt)|u)|rmoust|g(?:e(?:s(?:dot|l)?|q)?|sim|n(?:ap|e)|t|l|g)|(?:spade|heart)s|c(?:u(?:rarr|larr|p)|o(?:m(?:ma|p)|lon|py|ng)|lubs|heck|cups|irc?|ent|ap)|colone|a(?:p(?:prox)?|n(?:g(?:msd|rt)?|d)|symp|f|c)|S(?:quare|u[bp]|c)|Subset|b(?:ecaus|sim)|vsu[bp]n[Ee]|s(?:u(?:psu[bp]|b(?:su[bp]|n[Ee]|E)|pn[Ee]|p[1-3E]|m)|q(?:u(?:ar[ef]|f)|su[bp]e)|igma[fv]|etmn|dot[be]|par|mid|hc?y|c[Ey])|f(?:rac(?:78|5[68]|45|3[458]|2[35]|1[2-68])|fr)|e(?:m(?:sp1[34]|ptyv)|psiv|c(?:irc|y)|t[ah]|ng|ll|fr|e)|(?:kappa|isins|vBar|fork|rho|phi|n[GL]t)v|divonx|V(?:dashl|ee)|gammad|G(?:ammad|cy|[Tgt])|[Ldhlt]strok|[HT]strok|(?:c(?:ylct|hc)|(?:s(?:oft|hch)|hard|S(?:OFT|HCH)|jser|J(?:ser|uk)|HARD|tsh|TSH|juk|iuk|I(?:uk|[EO])|zh|yi|nj|lj|k[hj]|gj|dj|ZH|Y[AIU]|NJ|LJ|K[HJ]|GJ|D[JSZ])c|ubrc|Ubrc|(?:yu|i[eo]|dz|v|p|f)c|TSc|SHc|CHc|Vc|Pc|Mc|Fc)y|(?:(?:wre|jm)at|dalet|a(?:ngs|le)p|imat|[lr]ds)h|[CLRUceglnou]acute|ff?llig|(?:f(?:fi|[ij])|sz|oe|ij|ae|OE|IJ)lig|r(?:a(?:tio|rr|ng)|tri|par|eal)|s[ew]arr|s(?:qc[au]p|mte)|prime|rarrb|i(?:n(?:fin|t)?|sin|t|i|c)|e(?:quiv|m(?:pty|sp)|p(?:si|ar)|cir|l|g)|kappa|isins|ncong|doteq|(?:wedg|sim)e|nsime|rsquo|rdquo|[lr]haru|V(?:dash|ert)|Tilde|lrhar|gamma|Equal|UpTee|n(?:[lr]tri|bump)|C(?:olon|up|ap)|v(?:arpi|ert)|u(?:psih|ml)|vnsu[bp]|r(?:tri[ef]|e(?:als|g)|a(?:rr[cw]|ng[de]|ce)|sh|lm|x)|rhard|sim[gl]E|i(?:sin[Ev]|mage|f[fr]|cy)|harrw|(?:n[gl]|l)eqq|g(?:sim[el]|tcc|e(?:qq|l)|nE|l[Eaj]|gg|ap)|ocirc|starf|utrif|d(?:trif|i(?:ams|e)|ashv|sc[ry]|fr|eg)|[du]har[lr]|T(?:HORN|a[bu])|(?:TRAD|[gl]vn)E|odash|[EUaeu]o(?:gon|pf)|alpha|[IJOUYgjuy]c(?:irc|y)|v(?:arr|ee)|succ|sim[gl]|harr|ln(?:ap|e)|lesg|(?:n[gl]|l)eq|ocir|star|utri|vBar|fork|su[bp]e|nsim|lneq|gneq|csu[bp]|zwn?j|yacy|x(?:opf|i)|scnE|o(?:r(?:d[fm]|v)|mid|lt|hm|gt|fr|cy|S)|scap|rsqb|ropf|ltcc|tsc[ry]|QUOT|[EOUYao]uml|rho|phi|n[GL]t|e[gl]s|ngt|I(?:nt|m)|nis|rfr|rcy|lnE|lEg|ufr|S(?:um|cy)|R(?:sh|ho)|psi|Ps?i|[NRTt]cy|L(?:sh|cy|[Tt])|kcy|Kcy|Hat|REG|[Zdz]cy|wr|lE|wp|Xi|Nu|Mu)(;)',\n name: 'constant.language.character-reference.named.html'\n },\n 'whatwg-html-data-character-reference-named-unterminated': {\n captures: {\n 1: {name: 'punctuation.definition.character-reference.begin.html'},\n 2: {name: 'keyword.control.character-reference.html'}\n },\n match:\n '(&)(frac(?:34|1[24])|(?:plusm|thor|ye)n|(?:middo|iques|sec|quo|no|g)t|c(?:urren|opy|ent)|brvbar|oslash|Oslash|(?:ccedi|Ccedi|iexc|cedi|um)l|(?:(?:divi|[NOano]til)d|[EIOUaeiou]grav)e|[EIOUYaeiouy]acute|A(?:(?:tild|grav)e|acute|circ|ring|Elig|uml|MP)|times|p(?:ound|ara)|micro|raquo|l(?:aquo|t)|THORN|acirc|[EIOUeiou]circ|acute|(?:arin|[dr]e)g|(?:sz|ae)lig|sup[1-3]|ord[fm]|macr|nbsp|(?:QUO|[GL])T|COPY|[EIOUaeiouy]uml|shy|amp|REG|eth|ETH)',\n name: 'constant.language.character-reference.named.html'\n },\n 'whatwg-html-data-character-reference-numeric-decimal': {\n captures: {\n 1: {name: 'punctuation.definition.character-reference.begin.html'},\n 2: {name: 'punctuation.definition.character-reference.numeric.html'},\n 3: {name: 'constant.numeric.integer.decimal.html'},\n 4: {name: 'punctuation.definition.character-reference.end.html'}\n },\n match: '(&)(#)([0-9]*)(;)?',\n name: 'constant.language.character-reference.numeric.decimal.html'\n },\n 'whatwg-html-data-character-reference-numeric-hexadecimal': {\n captures: {\n 1: {name: 'punctuation.definition.character-reference.begin.html'},\n 2: {name: 'punctuation.definition.character-reference.numeric.html'},\n 3: {\n name: 'punctuation.definition.character-reference.numeric.hexadecimal.html'\n },\n 4: {name: 'constant.numeric.integer.hexadecimal.html'},\n 5: {name: 'punctuation.definition.character-reference.end.html'}\n },\n match: '(&)(#)([Xx])([A-Fa-f0-9]*)(;)?',\n name: 'constant.language.character-reference.numeric.hexadecimal.html'\n },\n 'whatwg-html-data-comment': {\n patterns: [\n {\n captures: {\n 1: {name: 'punctuation.definition.comment.start.html'},\n 2: {name: 'punctuation.definition.comment.end.html'}\n },\n match: '(',\n endCaptures: {0: {name: 'punctuation.definition.comment.end.xml.svg'}},\n name: 'comment.block.xml.svg',\n patterns: [\n {match: '--(?!>)', name: 'invalid.illegal.bad-comment.xml.svg'}\n ]\n },\n doctype: {\n begin: '()',\n endCaptures: {1: {name: 'punctuation.definition.tag.end.xml.svg'}},\n name: 'meta.tag.sgml.doctype.xml.svg',\n patterns: [{include: 'text.xml#internalSubset'}]\n },\n entity: {\n patterns: [\n {include: 'text.xml#entity'},\n {include: 'text.xml#bare-ampersand'}\n ]\n },\n main: {\n patterns: [\n {include: '#comment'},\n {include: '#cdata'},\n {include: '#doctype'},\n {include: 'text.xml#EntityDecl'},\n {include: 'text.xml#parameterEntity'},\n {include: '#entity'},\n {include: '#preprocessor'},\n {include: '#scriptTag'},\n {include: '#styleTag'},\n {include: '#tag'},\n {include: '#unescapedBracket'},\n {include: '#unmatchedTag'}\n ]\n },\n preprocessor: {\n begin: '(<\\\\?)\\\\s*',\n beginCaptures: {1: {name: 'punctuation.definition.tag.begin.xml.svg'}},\n end: '\\\\?>',\n endCaptures: {0: {name: 'punctuation.definition.tag.end.xml.svg'}},\n name: 'meta.tag.preprocessor.xml.svg',\n patterns: [\n {\n begin: '\\\\G',\n end: '([-\\\\w]+)|(?=\\\\s*\\\\?>)',\n endCaptures: {1: {name: 'entity.name.tag.xml.svg'}}\n },\n {include: '#attr'}\n ]\n },\n scriptTag: {\n patterns: [{include: '#scriptTagPlain'}, {include: '#scriptTagJS'}]\n },\n scriptTagJS: {\n begin: '(?i)(<)(script)(?=$|\\\\s|/?>)',\n beginCaptures: {\n 1: {name: 'punctuation.definition.tag.opening.begin.xml.svg'},\n 2: {patterns: [{include: '#tagName'}]}\n },\n end: '(?i)()|(/>)',\n endCaptures: {\n 1: {name: 'punctuation.definition.tag.closing.begin.xml.svg'},\n 2: {patterns: [{include: '#tagName'}]},\n 3: {name: 'punctuation.definition.tag.closing.end.xml.svg'},\n 4: {name: 'punctuation.definition.tag.self-closing.end.xml.svg'}\n },\n name: 'meta.tag.script.xml.svg',\n patterns: [\n {include: '#tagAttr'},\n {\n begin: '(?<=>)',\n contentName: 'source.js.embedded.xml.svg',\n end: '(?i)(?=\\\\s*)',\n patterns: [{include: 'source.js'}, {include: '#entity'}]\n }\n ]\n },\n scriptTagPlain: {\n begin:\n '(?x)\\n(<)((?i)script)\\n(\\n\\t\\\\s+[^>]*?\\n\\t(?<=\\\\s)(?i:type)\\\\s*=\\\\s*\\n\\t([\"\\'])?\\n\\t(?! module\\n\\t| application/(?:x-)?(?:ecma|java)script\\n\\t| text/\\n\\t\\t(?: javascript(?:1.[0-5])?\\n\\t\\t| (?:j|ecma|live)script\\n\\t\\t| x-(?:ecma|java)script\\n\\t\\t)\\n\\t)\\n\\t(?: (?<=\")(?:[^\">]+)\"\\n\\t| (?<=\\')(?:[^\\'>]+)\\'\\n\\t| [^\\\\s\"\\'>]+\\n\\t)\\n\\t(?=\\\\s|/?>)\\n)',\n beginCaptures: {\n 1: {name: 'punctuation.definition.tag.opening.begin.xml.svg'},\n 2: {patterns: [{include: '#tagName'}]},\n 3: {patterns: [{include: '#attr'}]}\n },\n end: '(?i)()|(/>)',\n endCaptures: {\n 1: {name: 'punctuation.definition.tag.closing.begin.xml.svg'},\n 2: {patterns: [{include: '#tagName'}]},\n 3: {name: 'punctuation.definition.tag.closing.end.xml.svg'},\n 4: {name: 'punctuation.definition.tag.self-closing.end.xml.svg'}\n },\n name: 'meta.tag.script.xml.svg',\n patterns: [{include: '#tagAttr'}, {include: '#main'}]\n },\n styleTag: {\n begin: '(?i)(<)(style)(?=$|\\\\s|/?>)',\n beginCaptures: {\n 1: {name: 'punctuation.definition.tag.opening.begin.xml.svg'},\n 2: {patterns: [{include: '#tagName'}]}\n },\n end: '(?i)()|(/>)',\n endCaptures: {\n 1: {name: 'punctuation.definition.tag.closing.begin.xml.svg'},\n 2: {patterns: [{include: '#tagName'}]},\n 3: {name: 'punctuation.definition.tag.closing.end.xml.svg'},\n 4: {name: 'punctuation.definition.tag.self-closing.end.xml.svg'}\n },\n name: 'meta.tag.style.xml.svg',\n patterns: [\n {include: '#tagAttr'},\n {\n begin: '(?<=>)',\n contentName: 'source.css.embedded.xml.svg',\n end: '(?i)(?=\\\\s*)',\n patterns: [{include: 'source.css'}, {include: '#entity'}]\n }\n ]\n },\n tag: {\n begin: '(?i)(<)([A-Za-z_:][-\\\\w.:]*)(?=$|\\\\s|/?>)',\n beginCaptures: {\n 1: {name: 'punctuation.definition.tag.opening.begin.xml.svg'},\n 2: {patterns: [{include: '#tagName'}]}\n },\n end: '(?i)()|(?=\\\\s*$))|(/>)',\n endCaptures: {\n 1: {name: 'punctuation.definition.tag.closing.begin.xml.svg'},\n 2: {patterns: [{include: '#tagName'}]},\n 3: {name: 'punctuation.definition.tag.closing.end.xml.svg'},\n 4: {name: 'punctuation.definition.tag.self-closing.end.xml.svg'}\n },\n name: 'meta.tag.${2:/downcase}.xml.svg',\n patterns: [{include: '#tagAttr'}, {include: '#main'}]\n },\n tagAttr: {\n begin: '\\\\G(?!\\\\s*/>)',\n end: '>|(?=\\\\s*/>)',\n endCaptures: {\n 0: {name: 'punctuation.definition.tag.opening.end.xml.svg'}\n },\n patterns: [{include: '#attr'}]\n },\n tagName: {\n patterns: [\n {\n captures: {\n 1: {name: 'entity.name.tag.namespace.xml.svg'},\n 2: {name: 'punctuation.separator.namespace.xml.svg'}\n },\n match: '(?:^|\\\\G)([A-Za-z_][-\\\\w.]*)(:)(?=[-\\\\w.:])'\n },\n {\n match: '[A-Za-z_:][-\\\\w.:]*',\n name: 'entity.name.tag.localname.xml.svg'\n }\n ]\n },\n unescapedBracket: {\n match: '^\\\\s*(>)',\n name: 'punctuation.definition.tag.closing.end.xml.svg'\n },\n unmatchedTag: {\n match: '()',\n name: 'invalid.illegal.unmatched-tag.xml.svg'\n }\n },\n scopeName: 'text.xml.svg'\n}\n\nexport default grammar\n","/**\n * @import {Grammar} from '@wooorm/starry-night'\n */\n\nimport sourceC from '@wooorm/starry-night/source.c'\nimport sourceCpp from '@wooorm/starry-night/source.c++'\nimport sourceCPlatform from '@wooorm/starry-night/source.c.platform'\nimport sourceCs from '@wooorm/starry-night/source.cs'\nimport sourceCss from '@wooorm/starry-night/source.css'\nimport sourceCssLess from '@wooorm/starry-night/source.css.less'\nimport sourceCssScss from '@wooorm/starry-night/source.css.scss'\nimport sourceDiff from '@wooorm/starry-night/source.diff'\nimport sourceGo from '@wooorm/starry-night/source.go'\nimport sourceGraphql from '@wooorm/starry-night/source.graphql'\nimport sourceIni from '@wooorm/starry-night/source.ini'\nimport sourceJava from '@wooorm/starry-night/source.java'\nimport sourceJs from '@wooorm/starry-night/source.js'\nimport sourceJson from '@wooorm/starry-night/source.json'\nimport sourceKotlin from '@wooorm/starry-night/source.kotlin'\nimport sourceLua from '@wooorm/starry-night/source.lua'\nimport sourceMakefile from '@wooorm/starry-night/source.makefile'\nimport sourceObjc from '@wooorm/starry-night/source.objc'\nimport sourceObjcPlatform from '@wooorm/starry-night/source.objc.platform'\nimport sourcePerl from '@wooorm/starry-night/source.perl'\nimport sourcePython from '@wooorm/starry-night/source.python'\nimport sourceR from '@wooorm/starry-night/source.r'\nimport sourceRuby from '@wooorm/starry-night/source.ruby'\nimport sourceRust from '@wooorm/starry-night/source.rust'\nimport sourceShell from '@wooorm/starry-night/source.shell'\nimport sourceSql from '@wooorm/starry-night/source.sql'\nimport sourceSwift from '@wooorm/starry-night/source.swift'\nimport sourceTs from '@wooorm/starry-night/source.ts'\nimport sourceVbnet from '@wooorm/starry-night/source.vbnet'\nimport sourceYaml from '@wooorm/starry-night/source.yaml'\nimport textHtmlBasic from '@wooorm/starry-night/text.html.basic'\nimport textHtmlPhp from '@wooorm/starry-night/text.html.php'\nimport textMd from '@wooorm/starry-night/text.md'\nimport textXml from '@wooorm/starry-night/text.xml'\nimport textXmlSvg from '@wooorm/starry-night/text.xml.svg'\n\n/** @type {ReadonlyArray} */\nexport const grammars = [\n sourceC,\n sourceCpp,\n sourceCPlatform,\n sourceCs,\n sourceCss,\n sourceCssLess,\n sourceCssScss,\n sourceDiff,\n sourceGo,\n sourceGraphql,\n sourceIni,\n sourceJava,\n sourceJs,\n sourceJson,\n sourceKotlin,\n sourceLua,\n sourceMakefile,\n sourceObjc,\n sourceObjcPlatform,\n sourcePerl,\n sourcePython,\n sourceR,\n sourceRuby,\n sourceRust,\n sourceShell,\n sourceSql,\n sourceSwift,\n sourceTs,\n sourceVbnet,\n sourceYaml,\n textHtmlBasic,\n textHtmlPhp,\n textMd,\n textXml,\n textXmlSvg\n]\n","!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define([],t):\"object\"==typeof exports?exports.onig=t():e.onig=t()}(this,(()=>{return e={770:function(e,t,n){\"use strict\";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,\"__esModule\",{value:!0}),t.setDefaultDebugCall=t.createOnigScanner=t.createOnigString=t.loadWASM=t.OnigScanner=t.OnigString=void 0;const i=r(n(418));let o=null,a=!1;class s{static _utf8ByteLength(e){let t=0;for(let n=0,r=e.length;n=55296&&i<=56319&&n+1=56320&&t<=57343&&(o=65536+(i-55296<<10)|t-56320,a=!0)}t+=o<=127?1:o<=2047?2:o<=65535?3:4,a&&n++}return t}constructor(e){const t=e.length,n=s._utf8ByteLength(e),r=n!==t,i=r?new Uint32Array(t+1):null;r&&(i[t]=n);const o=r?new Uint32Array(n+1):null;r&&(o[n]=t);const a=new Uint8Array(n);let f=0;for(let n=0;n=55296&&s<=56319&&n+1=56320&&t<=57343&&(u=65536+(s-55296<<10)|t-56320,c=!0)}r&&(i[n]=f,c&&(i[n+1]=f),u<=127?o[f+0]=n:u<=2047?(o[f+0]=n,o[f+1]=n):u<=65535?(o[f+0]=n,o[f+1]=n,o[f+2]=n):(o[f+0]=n,o[f+1]=n,o[f+2]=n,o[f+3]=n)),u<=127?a[f++]=u:u<=2047?(a[f++]=192|(1984&u)>>>6,a[f++]=128|(63&u)>>>0):u<=65535?(a[f++]=224|(61440&u)>>>12,a[f++]=128|(4032&u)>>>6,a[f++]=128|(63&u)>>>0):(a[f++]=240|(1835008&u)>>>18,a[f++]=128|(258048&u)>>>12,a[f++]=128|(4032&u)>>>6,a[f++]=128|(63&u)>>>0),c&&n++}this.utf16Length=t,this.utf8Length=n,this.utf16Value=e,this.utf8Value=a,this.utf16OffsetToUtf8=i,this.utf8OffsetToUtf16=o}createString(e){const t=e._omalloc(this.utf8Length);return e.HEAPU8.set(this.utf8Value,t),t}}class f{constructor(e){if(this.id=++f.LAST_ID,!o)throw new Error(\"Must invoke loadWASM first.\");this._onigBinding=o,this.content=e;const t=new s(e);this.utf16Length=t.utf16Length,this.utf8Length=t.utf8Length,this.utf16OffsetToUtf8=t.utf16OffsetToUtf8,this.utf8OffsetToUtf16=t.utf8OffsetToUtf16,this.utf8Length<1e4&&!f._sharedPtrInUse?(f._sharedPtr||(f._sharedPtr=o._omalloc(1e4)),f._sharedPtrInUse=!0,o.HEAPU8.set(t.utf8Value,f._sharedPtr),this.ptr=f._sharedPtr):this.ptr=t.createString(o)}convertUtf8OffsetToUtf16(e){return this.utf8OffsetToUtf16?e<0?0:e>this.utf8Length?this.utf16Length:this.utf8OffsetToUtf16[e]:e}convertUtf16OffsetToUtf8(e){return this.utf16OffsetToUtf8?e<0?0:e>this.utf16Length?this.utf8Length:this.utf16OffsetToUtf8[e]:e}dispose(){this.ptr===f._sharedPtr?f._sharedPtrInUse=!1:this._onigBinding._ofree(this.ptr)}}t.OnigString=f,f.LAST_ID=0,f._sharedPtr=0,f._sharedPtrInUse=!1;class u{constructor(e,t){var n,r;if(!o)throw new Error(\"Must invoke loadWASM first.\");const i=[],a=[];for(let t=0,n=e.length;tthis.onigOption(e))).reduce(((e,t)=>e|t),this._onigBinding.ONIG_OPTION_NONE)}onigSyntax(e){switch(e){case 0:return this._onigBinding.ONIG_SYNTAX_DEFAULT;case 1:return this._onigBinding.ONIG_SYNTAX_ASIS;case 2:return this._onigBinding.ONIG_SYNTAX_POSIX_BASIC;case 3:return this._onigBinding.ONIG_SYNTAX_POSIX_EXTENDED;case 4:return this._onigBinding.ONIG_SYNTAX_EMACS;case 5:return this._onigBinding.ONIG_SYNTAX_GREP;case 6:return this._onigBinding.ONIG_SYNTAX_GNU_REGEX;case 7:return this._onigBinding.ONIG_SYNTAX_JAVA;case 8:return this._onigBinding.ONIG_SYNTAX_PERL;case 9:return this._onigBinding.ONIG_SYNTAX_PERL_NG;case 10:return this._onigBinding.ONIG_SYNTAX_RUBY;case 11:return this._onigBinding.ONIG_SYNTAX_PYTHON;case 12:return this._onigBinding.ONIG_SYNTAX_ONIGURUMA}}onigOption(e){switch(e){case 1:return this._onigBinding.ONIG_OPTION_NONE;case 0:case 25:return this._onigBinding.ONIG_OPTION_DEFAULT;case 2:return this._onigBinding.ONIG_OPTION_IGNORECASE;case 3:return this._onigBinding.ONIG_OPTION_EXTEND;case 4:return this._onigBinding.ONIG_OPTION_MULTILINE;case 5:return this._onigBinding.ONIG_OPTION_SINGLELINE;case 6:return this._onigBinding.ONIG_OPTION_FIND_LONGEST;case 7:return this._onigBinding.ONIG_OPTION_FIND_NOT_EMPTY;case 8:return this._onigBinding.ONIG_OPTION_NEGATE_SINGLELINE;case 9:return this._onigBinding.ONIG_OPTION_DONT_CAPTURE_GROUP;case 10:return this._onigBinding.ONIG_OPTION_CAPTURE_GROUP;case 11:return this._onigBinding.ONIG_OPTION_NOTBOL;case 12:return this._onigBinding.ONIG_OPTION_NOTEOL;case 13:return this._onigBinding.ONIG_OPTION_CHECK_VALIDITY_OF_STRING;case 14:return this._onigBinding.ONIG_OPTION_IGNORECASE_IS_ASCII;case 15:return this._onigBinding.ONIG_OPTION_WORD_IS_ASCII;case 16:return this._onigBinding.ONIG_OPTION_DIGIT_IS_ASCII;case 17:return this._onigBinding.ONIG_OPTION_SPACE_IS_ASCII;case 18:return this._onigBinding.ONIG_OPTION_POSIX_IS_ASCII;case 19:return this._onigBinding.ONIG_OPTION_TEXT_SEGMENT_EXTENDED_GRAPHEME_CLUSTER;case 20:return this._onigBinding.ONIG_OPTION_TEXT_SEGMENT_WORD;case 21:return this._onigBinding.ONIG_OPTION_NOT_BEGIN_STRING;case 22:return this._onigBinding.ONIG_OPTION_NOT_END_STRING;case 23:return this._onigBinding.ONIG_OPTION_NOT_BEGIN_POSITION;case 24:return this._onigBinding.ONIG_OPTION_CALLBACK_EACH_MATCH}}}t.OnigScanner=u;let c=!1,_=null;t.loadWASM=function(e){if(c)return _;let t,n,r,a;if(c=!0,function(e){return\"function\"==typeof e.instantiator}(e))t=e.instantiator,n=e.print;else{let r;!function(e){return void 0!==e.data}(e)?r=e:(r=e.data,n=e.print),t=function(e){return\"undefined\"!=typeof Response&&e instanceof Response}(r)?\"function\"==typeof WebAssembly.instantiateStreaming?function(e){return t=>WebAssembly.instantiateStreaming(e,t)}(r):function(e){return async t=>{const n=await e.arrayBuffer();return WebAssembly.instantiate(n,t)}}(r):function(e){return t=>WebAssembly.instantiate(e,t)}(r)}return _=new Promise(((e,t)=>{r=e,a=t})),function(e,t,n,r){(0,i.default)({print:t,instantiateWasm:(t,n)=>{if(\"undefined\"==typeof performance){const e=()=>Date.now();t.env.emscripten_get_now=e,t.wasi_snapshot_preview1.emscripten_get_now=e}return e(t).then((e=>n(e.instance)),r),{}}}).then((e=>{o=e,n()}))}(t,n,r,a),_},t.createOnigString=function(e){return new f(e)},t.createOnigScanner=function(e){return new u(e)},t.setDefaultDebugCall=function(e){a=e}},418:e=>{var t=(\"undefined\"!=typeof document&&document.currentScript&&document.currentScript.src,function(e={}){var t,n,r=e;r.ready=new Promise(((e,r)=>{t=e,n=r}));var i,o=Object.assign({},r);\"undefined\"!=typeof read&&read,i=e=>{if(\"function\"==typeof readbuffer)return new Uint8Array(readbuffer(e));let t=read(e,\"binary\");return\"object\"==typeof t||P(n),t;var n},\"undefined\"==typeof clearTimeout&&(globalThis.clearTimeout=e=>{}),\"undefined\"==typeof setTimeout&&(globalThis.setTimeout=e=>\"function\"==typeof e?e():P()),\"undefined\"!=typeof scriptArgs&&scriptArgs,\"undefined\"!=typeof onig_print&&(\"undefined\"==typeof console&&(console={}),console.log=onig_print,console.warn=console.error=\"undefined\"!=typeof printErr?printErr:onig_print);var a,s,f=r.print||console.log.bind(console),u=r.printErr||console.error.bind(console);Object.assign(r,o),o=null,r.arguments&&r.arguments,r.thisProgram&&r.thisProgram,r.quit&&r.quit,r.wasmBinary&&(a=r.wasmBinary),r.noExitRuntime,\"object\"!=typeof WebAssembly&&P(\"no native wasm support detected\");var c,_,d,g,l,h,p,O,v=!1;function m(){var e=s.buffer;r.HEAP8=c=new Int8Array(e),r.HEAP16=d=new Int16Array(e),r.HEAPU8=_=new Uint8Array(e),r.HEAPU16=g=new Uint16Array(e),r.HEAP32=l=new Int32Array(e),r.HEAPU32=h=new Uint32Array(e),r.HEAPF32=p=new Float32Array(e),r.HEAPF64=O=new Float64Array(e)}var y=[],I=[],T=[];var N=0,A=null,S=null;function P(e){r.onAbort&&r.onAbort(e),u(e=\"Aborted(\"+e+\")\"),v=!0,e+=\". Build with -sASSERTIONS for more info.\";var t=new WebAssembly.RuntimeError(e);throw n(t),t}var E,w;function b(e){return e.startsWith(\"data:application/octet-stream;base64,\")}function C(e){if(e==E&&a)return new Uint8Array(a);if(i)return i(e);throw\"both async and sync fetching of the wasm failed\"}function U(e,t,n){return function(e){return Promise.resolve().then((()=>C(e)))}(e).then((e=>WebAssembly.instantiate(e,t))).then((e=>e)).then(n,(e=>{u(`failed to asynchronously prepare wasm: ${e}`),P(e)}))}b(E=\"onig.wasm\")||(w=E,E=r.locateFile?r.locateFile(w,\"\"):\"\"+w);var G=e=>{for(;e.length>0;)e.shift()(r)},B=void 0,R=e=>{for(var t=\"\",n=e;_[n];)t+=B[_[n++]];return t},W={},L={},D={},x=void 0,M=e=>{throw new x(e)},F=void 0,X=(e,t,n)=>{function r(t){var r=n(t);r.length!==e.length&&(e=>{throw new F(e)})(\"Mismatched type converter count\");for(var i=0;i{L.hasOwnProperty(e)?i[t]=L[e]:(o.push(e),W.hasOwnProperty(e)||(W[e]=[]),W[e].push((()=>{i[t]=L[e],++a===o.length&&r(i)})))})),0===o.length&&r(i)};function k(e,t,n={}){if(!(\"argPackAdvance\"in t))throw new TypeError(\"registerType registeredInstance requires argPackAdvance\");return function(e,t,n={}){var r=t.name;if(e||M(`type \"${r}\" must have a positive integer typeid pointer`),L.hasOwnProperty(e)){if(n.ignoreDuplicateRegistrations)return;M(`Cannot register type '${r}' twice`)}if(L[e]=t,delete D[e],W.hasOwnProperty(e)){var i=W[e];delete W[e],i.forEach((e=>e()))}}(e,t,n)}function H(){this.allocated=[void 0],this.freelist=[]}var Y=new H,j=()=>{for(var e=0,t=Y.reserved;t(e||M(\"Cannot use deleted val. handle = \"+e),Y.get(e).value),$=e=>{switch(e){case void 0:return 1;case null:return 2;case!0:return 3;case!1:return 4;default:return Y.allocate({refcount:1,value:e})}};function z(e){return this.fromWireType(l[e>>2])}var q=(e,t)=>{switch(t){case 4:return function(e){return this.fromWireType(p[e>>2])};case 8:return function(e){return this.fromWireType(O[e>>3])};default:throw new TypeError(`invalid float width (${t}): ${e}`)}},K=(e,t,n)=>{switch(t){case 1:return n?e=>c[e>>0]:e=>_[e>>0];case 2:return n?e=>d[e>>1]:e=>g[e>>1];case 4:return n?e=>l[e>>2]:e=>h[e>>2];default:throw new TypeError(`invalid integer width (${t}): ${e}`)}};function J(e){return this.fromWireType(h[e>>2])}var Q,Z=\"undefined\"!=typeof TextDecoder?new TextDecoder(\"utf8\"):void 0,ee=(e,t,n)=>{for(var r=t+n,i=t;e[i]&&!(i>=r);)++i;if(i-t>16&&e.buffer&&Z)return Z.decode(e.subarray(t,i));for(var o=\"\";t>10,56320|1023&u)}}else o+=String.fromCharCode((31&a)<<6|s)}else o+=String.fromCharCode(a)}return o},te=(e,t)=>e?ee(_,e,t):\"\",ne=\"undefined\"!=typeof TextDecoder?new TextDecoder(\"utf-16le\"):void 0,re=(e,t)=>{for(var n=e,r=n>>1,i=r+t/2;!(r>=i)&&g[r];)++r;if((n=r<<1)-e>32&&ne)return ne.decode(_.subarray(e,n));for(var o=\"\",a=0;!(a>=t/2);++a){var s=d[e+2*a>>1];if(0==s)break;o+=String.fromCharCode(s)}return o},ie=(e,t,n)=>{if(void 0===n&&(n=2147483647),n<2)return 0;for(var r=t,i=(n-=2)<2*e.length?n/2:e.length,o=0;o>1]=a,t+=2}return d[t>>1]=0,t-r},oe=e=>2*e.length,ae=(e,t)=>{for(var n=0,r=\"\";!(n>=t/4);){var i=l[e+4*n>>2];if(0==i)break;if(++n,i>=65536){var o=i-65536;r+=String.fromCharCode(55296|o>>10,56320|1023&o)}else r+=String.fromCharCode(i)}return r},se=(e,t,n)=>{if(void 0===n&&(n=2147483647),n<4)return 0;for(var r=t,i=r+n-4,o=0;o=55296&&a<=57343&&(a=65536+((1023&a)<<10)|1023&e.charCodeAt(++o)),l[t>>2]=a,(t+=4)+4>i)break}return l[t>>2]=0,t-r},fe=e=>{for(var t=0,n=0;n=55296&&r<=57343&&++n,t+=4}return t};Q=()=>performance.now();var ue=e=>{var t=(e-s.buffer.byteLength+65535)/65536;try{return s.grow(t),m(),1}catch(e){}},ce=[null,[],[]];(()=>{for(var e=new Array(256),t=0;t<256;++t)e[t]=String.fromCharCode(t);B=e})(),x=r.BindingError=class extends Error{constructor(e){super(e),this.name=\"BindingError\"}},F=r.InternalError=class extends Error{constructor(e){super(e),this.name=\"InternalError\"}},Object.assign(H.prototype,{get(e){return this.allocated[e]},has(e){return void 0!==this.allocated[e]},allocate(e){var t=this.freelist.pop()||this.allocated.length;return this.allocated[t]=e,t},free(e){this.allocated[e]=void 0,this.freelist.push(e)}}),Y.allocated.push({value:void 0},{value:null},{value:!0},{value:!1}),Y.reserved=Y.allocated.length,r.count_emval_handles=j;var _e,de={_embind_register_bigint:(e,t,n,r,i)=>{},_embind_register_bool:(e,t,n,r)=>{k(e,{name:t=R(t),fromWireType:function(e){return!!e},toWireType:function(e,t){return t?n:r},argPackAdvance:8,readValueFromPointer:function(e){return this.fromWireType(_[e])},destructorFunction:null})},_embind_register_constant:(e,t,n)=>{e=R(e),X([],[t],(function(t){return t=t[0],r[e]=t.fromWireType(n),[]}))},_embind_register_emval:(e,t)=>{k(e,{name:t=R(t),fromWireType:e=>{var t=V(e);return(e=>{e>=Y.reserved&&0==--Y.get(e).refcount&&Y.free(e)})(e),t},toWireType:(e,t)=>$(t),argPackAdvance:8,readValueFromPointer:z,destructorFunction:null})},_embind_register_float:(e,t,n)=>{k(e,{name:t=R(t),fromWireType:e=>e,toWireType:(e,t)=>t,argPackAdvance:8,readValueFromPointer:q(t,n),destructorFunction:null})},_embind_register_integer:(e,t,n,r,i)=>{t=R(t),-1===i&&(i=4294967295);var o=e=>e;if(0===r){var a=32-8*n;o=e=>e<>>a}var s=t.includes(\"unsigned\");k(e,{name:t,fromWireType:o,toWireType:s?function(e,t){return this.name,t>>>0}:function(e,t){return this.name,t},argPackAdvance:8,readValueFromPointer:K(t,n,0!==r),destructorFunction:null})},_embind_register_memory_view:(e,t,n)=>{var r=[Int8Array,Uint8Array,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array][t];function i(e){var t=h[e>>2],n=h[e+4>>2];return new r(c.buffer,n,t)}k(e,{name:n=R(n),fromWireType:i,argPackAdvance:8,readValueFromPointer:i},{ignoreDuplicateRegistrations:!0})},_embind_register_std_string:(e,t)=>{var n=\"std::string\"===(t=R(t));k(e,{name:t,fromWireType:e=>{var t,r=h[e>>2],i=e+4;if(n)for(var o=i,a=0;a<=r;++a){var s=i+a;if(a==r||0==_[s]){var f=te(o,s-o);void 0===t?t=f:(t+=String.fromCharCode(0),t+=f),o=s+1}}else{var u=new Array(r);for(a=0;a{var r;t instanceof ArrayBuffer&&(t=new Uint8Array(t));var i=\"string\"==typeof t;i||t instanceof Uint8Array||t instanceof Uint8ClampedArray||t instanceof Int8Array||M(\"Cannot pass non-string to std::string\"),r=n&&i?(e=>{for(var t=0,n=0;n=55296&&r<=57343?(t+=4,++n):t+=3}return t})(t):t.length;var o=le(4+r+1),a=o+4;if(h[o>>2]=r,n&&i)((e,t,n,r)=>{if(!(r>0))return 0;for(var i=n,o=n+r-1,a=0;a=55296&&s<=57343&&(s=65536+((1023&s)<<10)|1023&e.charCodeAt(++a)),s<=127){if(n>=o)break;t[n++]=s}else if(s<=2047){if(n+1>=o)break;t[n++]=192|s>>6,t[n++]=128|63&s}else if(s<=65535){if(n+2>=o)break;t[n++]=224|s>>12,t[n++]=128|s>>6&63,t[n++]=128|63&s}else{if(n+3>=o)break;t[n++]=240|s>>18,t[n++]=128|s>>12&63,t[n++]=128|s>>6&63,t[n++]=128|63&s}}t[n]=0})(t,_,a,r+1);else if(i)for(var s=0;s255&&(he(a),M(\"String has UTF-16 code units that do not fit in 8 bits\")),_[a+s]=f}else for(s=0;she(e)})},_embind_register_std_wstring:(e,t,n)=>{var r,i,o,a,s;n=R(n),2===t?(r=re,i=ie,a=oe,o=()=>g,s=1):4===t&&(r=ae,i=se,a=fe,o=()=>h,s=2),k(e,{name:n,fromWireType:e=>{for(var n,i=h[e>>2],a=o(),f=e+4,u=0;u<=i;++u){var c=e+4+u*t;if(u==i||0==a[c>>s]){var _=r(f,c-f);void 0===n?n=_:(n+=String.fromCharCode(0),n+=_),f=c+t}}return he(e),n},toWireType:(e,r)=>{\"string\"!=typeof r&&M(`Cannot pass non-string to C++ string type ${n}`);var o=a(r),f=le(4+o+t);return h[f>>2]=o>>s,i(r,f+4,o+t),null!==e&&e.push(he,f),f},argPackAdvance:8,readValueFromPointer:z,destructorFunction:e=>he(e)})},_embind_register_void:(e,t)=>{k(e,{isVoid:!0,name:t=R(t),argPackAdvance:0,fromWireType:()=>{},toWireType:(e,t)=>{}})},emscripten_get_now:Q,emscripten_memcpy_big:(e,t,n)=>_.copyWithin(e,t,t+n),emscripten_resize_heap:e=>{var t=_.length,n=2147483648;if((e>>>=0)>n)return!1;for(var r,i=1;i<=4;i*=2){var o=t*(1+.2/i);o=Math.min(o,e+100663296);var a=Math.min(n,(r=Math.max(e,o))+(65536-r%65536)%65536);if(ue(a))return!0}return!1},fd_write:(e,t,n,r)=>{for(var i=0,o=0;o>2],s=h[t+4>>2];t+=8;for(var c=0;c>2]=i,0}},ge=function(){var e,t,i,o,f={env:de,wasi_snapshot_preview1:de};function c(e,t){var n,i=e.exports;return s=(ge=i).memory,m(),ge.__indirect_function_table,n=ge.__wasm_call_ctors,I.unshift(n),function(e){if(N--,r.monitorRunDependencies&&r.monitorRunDependencies(N),0==N&&(null!==A&&(clearInterval(A),A=null),S)){var t=S;S=null,t()}}(),i}if(N++,r.monitorRunDependencies&&r.monitorRunDependencies(N),r.instantiateWasm)try{return r.instantiateWasm(f,c)}catch(e){u(`Module.instantiateWasm callback failed with error: ${e}`),n(e)}return(e=a,t=E,i=f,o=function(e){c(e.instance)},e||\"function\"!=typeof WebAssembly.instantiateStreaming||b(t)||\"function\"!=typeof fetch?U(t,i,o):fetch(t,{credentials:\"same-origin\"}).then((e=>WebAssembly.instantiateStreaming(e,i).then(o,(function(e){return u(`wasm streaming compile failed: ${e}`),u(\"falling back to ArrayBuffer instantiation\"),U(t,i,o)}))))).catch(n),{}}(),le=e=>(le=ge.malloc)(e),he=e=>(he=ge.free)(e);function pe(){function e(){_e||(_e=!0,r.calledRun=!0,v||(G(I),t(r),r.onRuntimeInitialized&&r.onRuntimeInitialized(),function(){if(r.postRun)for(\"function\"==typeof r.postRun&&(r.postRun=[r.postRun]);r.postRun.length;)e=r.postRun.shift(),T.unshift(e);var e;G(T)}()))}N>0||(function(){if(r.preRun)for(\"function\"==typeof r.preRun&&(r.preRun=[r.preRun]);r.preRun.length;)e=r.preRun.shift(),y.unshift(e);var e;G(y)}(),N>0||(r.setStatus?(r.setStatus(\"Running...\"),setTimeout((function(){setTimeout((function(){r.setStatus(\"\")}),1),e()}),1)):e()))}if(r._omalloc=e=>(r._omalloc=ge.omalloc)(e),r._ofree=e=>(r._ofree=ge.ofree)(e),r._getLastOnigError=()=>(r._getLastOnigError=ge.getLastOnigError)(),r._createOnigScanner=(e,t,n,i,o)=>(r._createOnigScanner=ge.createOnigScanner)(e,t,n,i,o),r._freeOnigScanner=e=>(r._freeOnigScanner=ge.freeOnigScanner)(e),r._findNextOnigScannerMatch=(e,t,n,i,o,a)=>(r._findNextOnigScannerMatch=ge.findNextOnigScannerMatch)(e,t,n,i,o,a),r._findNextOnigScannerMatchDbg=(e,t,n,i,o,a)=>(r._findNextOnigScannerMatchDbg=ge.findNextOnigScannerMatchDbg)(e,t,n,i,o,a),r.__embind_initialize_bindings=()=>(r.__embind_initialize_bindings=ge._embind_initialize_bindings)(),r.dynCall_jiji=(e,t,n,i,o)=>(r.dynCall_jiji=ge.dynCall_jiji)(e,t,n,i,o),r.UTF8ToString=te,S=function e(){_e||pe(),_e||(S=e)},r.preInit)for(\"function\"==typeof r.preInit&&(r.preInit=[r.preInit]);r.preInit.length>0;)r.preInit.pop()();return pe(),e.ready});e.exports=t}},t={},function n(r){var i=t[r];if(void 0!==i)return i.exports;var o=t[r]={exports:{}};return e[r].call(o.exports,o,o.exports,n),o.exports}(770);var e,t}));","!function(e,t){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=t():\"function\"==typeof define&&define.amd?define([],t):\"object\"==typeof exports?exports.vscodetextmate=t():e.vscodetextmate=t()}(this,(()=>(()=>{\"use strict\";var e={185:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.UseOnigurumaFindOptions=t.DebugFlags=void 0,t.DebugFlags={InDebugMode:\"undefined\"!=typeof process&&!!process.env.VSCODE_TEXTMATE_DEBUG},t.UseOnigurumaFindOptions=!1},151:(e,t,n)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.applyStateStackDiff=t.diffStateStacksRefEq=void 0;const s=n(752);t.diffStateStacksRefEq=function(e,t){let n=0;const s=[];let r=e,i=t;for(;r!==i;)r&&(!i||r.depth>=i.depth)?(n++,r=r.parent):(s.push(i.toStateStackFrame()),i=i.parent);return{pops:n,newFrames:s.reverse()}},t.applyStateStackDiff=function(e,t){let n=e;for(let e=0;e{var n;Object.defineProperty(t,\"__esModule\",{value:!0}),t.toOptionalTokenType=t.EncodedTokenAttributes=void 0,(n=t.EncodedTokenAttributes||(t.EncodedTokenAttributes={})).toBinaryStr=function(e){return e.toString(2).padStart(32,\"0\")},n.print=function(e){const t=n.getLanguageId(e),s=n.getTokenType(e),r=n.getFontStyle(e),i=n.getForeground(e),o=n.getBackground(e);console.log({languageId:t,tokenType:s,fontStyle:r,foreground:i,background:o})},n.getLanguageId=function(e){return(255&e)>>>0},n.getTokenType=function(e){return(768&e)>>>8},n.containsBalancedBrackets=function(e){return!!(1024&e)},n.getFontStyle=function(e){return(30720&e)>>>11},n.getForeground=function(e){return(16744448&e)>>>15},n.getBackground=function(e){return(4278190080&e)>>>24},n.set=function(e,t,s,r,i,o,a){let c=n.getLanguageId(e),l=n.getTokenType(e),u=n.containsBalancedBrackets(e)?1:0,h=n.getFontStyle(e),p=n.getForeground(e),d=n.getBackground(e);return 0!==t&&(c=t),8!==s&&(l=s),null!==r&&(u=r?1:0),-1!==i&&(h=i),0!==o&&(p=o),0!==a&&(d=a),(c|l<<8|u<<10|h<<11|p<<15|d<<24)>>>0},t.toOptionalTokenType=function(e){return e}},214:(e,t,n)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.BasicScopeAttributesProvider=t.BasicScopeAttributes=void 0;const s=n(807);class r{constructor(e,t){this.languageId=e,this.tokenType=t}}t.BasicScopeAttributes=r;class i{constructor(e,t){this._getBasicScopeAttributes=new s.CachedFn((e=>{const t=this._scopeToLanguage(e),n=this._toStandardTokenType(e);return new r(t,n)})),this._defaultAttributes=new r(e,8),this._embeddedLanguagesMatcher=new o(Object.entries(t||{}))}getDefaultAttributes(){return this._defaultAttributes}getBasicScopeAttributes(e){return null===e?i._NULL_SCOPE_METADATA:this._getBasicScopeAttributes.get(e)}_scopeToLanguage(e){return this._embeddedLanguagesMatcher.match(e)||0}_toStandardTokenType(e){const t=e.match(i.STANDARD_TOKEN_TYPE_REGEXP);if(!t)return 8;switch(t[1]){case\"comment\":return 1;case\"string\":return 2;case\"regex\":return 3;case\"meta.embedded\":return 0}throw new Error(\"Unexpected match for standard token type!\")}}t.BasicScopeAttributesProvider=i,i._NULL_SCOPE_METADATA=new r(0,0),i.STANDARD_TOKEN_TYPE_REGEXP=/\\b(comment|string|regex|meta\\.embedded)\\b/;class o{constructor(e){if(0===e.length)this.values=null,this.scopesRegExp=null;else{this.values=new Map(e);const t=e.map((([e,t])=>s.escapeRegExpCharacters(e)));t.sort(),t.reverse(),this.scopesRegExp=new RegExp(`^((${t.join(\")|(\")}))($|\\\\.)`,\"\")}}match(e){if(!this.scopesRegExp)return;const t=e.match(this.scopesRegExp);return t?this.values.get(t[1]):void 0}}},929:(e,t,n)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.LineTokens=t.BalancedBracketSelectors=t.StateStackImpl=t.AttributedScopeStack=t.Grammar=t.createGrammar=void 0;const s=n(185),r=n(490),i=n(916),o=n(810),a=n(666),c=n(63),l=n(807),u=n(214),h=n(398);function p(e,t,n,s,r){const o=i.createMatchers(t,d),c=a.RuleFactory.getCompiledRuleId(n,s,r.repository);for(const n of o)e.push({debugSelector:t,matcher:n.matcher,ruleId:c,grammar:r,priority:n.priority})}function d(e,t){if(t.length{for(let s=n;sn&&e.substr(0,n)===t&&\".\"===e[n]}t.createGrammar=function(e,t,n,s,r,i,o,a){return new m(e,t,n,s,r,i,o,a)};class m{constructor(e,t,n,s,r,o,a,c){if(this._rootScopeName=e,this.balancedBracketSelectors=o,this._onigLib=c,this._basicScopeAttributesProvider=new u.BasicScopeAttributesProvider(n,s),this._rootId=-1,this._lastRuleId=0,this._ruleId2desc=[null],this._includedGrammars={},this._grammarRepository=a,this._grammar=g(t,null),this._injections=null,this._tokenTypeMatchers=[],r)for(const e of Object.keys(r)){const t=i.createMatchers(e,d);for(const n of t)this._tokenTypeMatchers.push({matcher:n.matcher,type:r[e]})}}get themeProvider(){return this._grammarRepository}dispose(){for(const e of this._ruleId2desc)e&&e.dispose()}createOnigScanner(e){return this._onigLib.createOnigScanner(e)}createOnigString(e){return this._onigLib.createOnigString(e)}getMetadataForScope(e){return this._basicScopeAttributesProvider.getBasicScopeAttributes(e)}_collectInjections(){const e=[],t=this._rootScopeName,n=(e=>e===this._rootScopeName?this._grammar:this.getExternalGrammar(e))(t);if(n){const s=n.injections;if(s)for(let t in s)p(e,t,s[t],this,n);const r=this._grammarRepository.injections(t);r&&r.forEach((t=>{const n=this.getExternalGrammar(t);if(n){const t=n.injectionSelector;t&&p(e,t,n,this,n)}}))}return e.sort(((e,t)=>e.priority-t.priority)),e}getInjections(){if(null===this._injections&&(this._injections=this._collectInjections(),s.DebugFlags.InDebugMode&&this._injections.length>0)){console.log(`Grammar ${this._rootScopeName} contains the following injections:`);for(const e of this._injections)console.log(` - ${e.debugSelector}`)}return this._injections}registerRule(e){const t=++this._lastRuleId,n=e(a.ruleIdFromNumber(t));return this._ruleId2desc[t]=n,n}getRule(e){return this._ruleId2desc[a.ruleIdToNumber(e)]}getExternalGrammar(e,t){if(this._includedGrammars[e])return this._includedGrammars[e];if(this._grammarRepository){const n=this._grammarRepository.lookup(e);if(n)return this._includedGrammars[e]=g(n,t&&t.$base),this._includedGrammars[e]}}tokenizeLine(e,t,n=0){const s=this._tokenize(e,t,!1,n);return{tokens:s.lineTokens.getResult(s.ruleStack,s.lineLength),ruleStack:s.ruleStack,stoppedEarly:s.stoppedEarly}}tokenizeLine2(e,t,n=0){const s=this._tokenize(e,t,!0,n);return{tokens:s.lineTokens.getBinaryResult(s.ruleStack,s.lineLength),ruleStack:s.ruleStack,stoppedEarly:s.stoppedEarly}}_tokenize(e,t,n,s){let i;if(-1===this._rootId&&(this._rootId=a.RuleFactory.getCompiledRuleId(this._grammar.repository.$self,this,this._grammar.repository),this.getInjections()),t&&t!==b.NULL)i=!1,t.reset();else{i=!0;const e=this._basicScopeAttributesProvider.getDefaultAttributes(),n=this.themeProvider.getDefaults(),s=r.EncodedTokenAttributes.set(0,e.languageId,e.tokenType,null,n.fontStyle,n.foregroundId,n.backgroundId),o=this.getRule(this._rootId).getName(null,null);let a;a=o?_.createRootAndLookUpScopeName(o,s,this):_.createRoot(\"unknown\",s),t=new b(null,this._rootId,-1,-1,!1,null,a,a)}e+=\"\\n\";const c=this.createOnigString(e),l=c.content.length,u=new y(n,e,this._tokenTypeMatchers,this.balancedBracketSelectors),p=h._tokenizeString(this,c,i,0,t,u,!0,s);return o.disposeOnigString(c),{lineLength:l,lineTokens:u,ruleStack:p.stack,stoppedEarly:p.stoppedEarly}}}function g(e,t){return(e=l.clone(e)).repository=e.repository||{},e.repository.$self={$vscodeTextmateLocation:e.$vscodeTextmateLocation,patterns:e.patterns,name:e.scopeName},e.repository.$base=t||e.repository.$self,e}t.Grammar=m;class _{constructor(e,t,n){this.parent=e,this.scopePath=t,this.tokenAttributes=n}static fromExtension(e,t){let n=e,s=e?.scopePath??null;for(const e of t)s=c.ScopeStack.push(s,e.scopeNames),n=new _(n,s,e.encodedTokenAttributes);return n}static createRoot(e,t){return new _(null,new c.ScopeStack(null,e),t)}static createRootAndLookUpScopeName(e,t,n){const s=n.getMetadataForScope(e),r=new c.ScopeStack(null,e),i=n.themeProvider.themeMatch(r),o=_.mergeAttributes(t,s,i);return new _(null,r,o)}get scopeName(){return this.scopePath.scopeName}toString(){return this.getScopeNames().join(\" \")}equals(e){return _.equals(this,e)}static equals(e,t){for(;;){if(e===t)return!0;if(!e&&!t)return!0;if(!e||!t)return!1;if(e.scopeName!==t.scopeName||e.tokenAttributes!==t.tokenAttributes)return!1;e=e.parent,t=t.parent}}static mergeAttributes(e,t,n){let s=-1,i=0,o=0;return null!==n&&(s=n.fontStyle,i=n.foregroundId,o=n.backgroundId),r.EncodedTokenAttributes.set(e,t.languageId,t.tokenType,null,s,i,o)}pushAttributed(e,t){if(null===e)return this;if(-1===e.indexOf(\" \"))return _._pushAttributed(this,e,t);const n=e.split(/ /g);let s=this;for(const e of n)s=_._pushAttributed(s,e,t);return s}static _pushAttributed(e,t,n){const s=n.getMetadataForScope(t),r=e.scopePath.push(t),i=n.themeProvider.themeMatch(r),o=_.mergeAttributes(e.tokenAttributes,s,i);return new _(e,r,o)}getScopeNames(){return this.scopePath.getSegments()}getExtensionIfDefined(e){const t=[];let n=this;for(;n&&n!==e;)t.push({encodedTokenAttributes:n.tokenAttributes,scopeNames:n.scopePath.getExtensionIfDefined(n.parent?.scopePath??null)}),n=n.parent;return n===e?t.reverse():void 0}}t.AttributedScopeStack=_;class b{constructor(e,t,n,s,r,i,o,a){this.parent=e,this.ruleId=t,this.beginRuleCapturedEOL=r,this.endRule=i,this.nameScopesList=o,this.contentNameScopesList=a,this._stackElementBrand=void 0,this.depth=this.parent?this.parent.depth+1:1,this._enterPos=n,this._anchorPos=s}equals(e){return null!==e&&b._equals(this,e)}static _equals(e,t){return e===t||!!this._structuralEquals(e,t)&&_.equals(e.contentNameScopesList,t.contentNameScopesList)}static _structuralEquals(e,t){for(;;){if(e===t)return!0;if(!e&&!t)return!0;if(!e||!t)return!1;if(e.depth!==t.depth||e.ruleId!==t.ruleId||e.endRule!==t.endRule)return!1;e=e.parent,t=t.parent}}clone(){return this}static _reset(e){for(;e;)e._enterPos=-1,e._anchorPos=-1,e=e.parent}reset(){b._reset(this)}pop(){return this.parent}safePop(){return this.parent?this.parent:this}push(e,t,n,s,r,i,o){return new b(this,e,t,n,s,r,i,o)}getEnterPos(){return this._enterPos}getAnchorPos(){return this._anchorPos}getRule(e){return e.getRule(this.ruleId)}toString(){const e=[];return this._writeString(e,0),\"[\"+e.join(\",\")+\"]\"}_writeString(e,t){return this.parent&&(t=this.parent._writeString(e,t)),e[t++]=`(${this.ruleId}, ${this.nameScopesList?.toString()}, ${this.contentNameScopesList?.toString()})`,t}withContentNameScopesList(e){return this.contentNameScopesList===e?this:this.parent.push(this.ruleId,this._enterPos,this._anchorPos,this.beginRuleCapturedEOL,this.endRule,this.nameScopesList,e)}withEndRule(e){return this.endRule===e?this:new b(this.parent,this.ruleId,this._enterPos,this._anchorPos,this.beginRuleCapturedEOL,e,this.nameScopesList,this.contentNameScopesList)}hasSameRuleAs(e){let t=this;for(;t&&t._enterPos===e._enterPos;){if(t.ruleId===e.ruleId)return!0;t=t.parent}return!1}toStateStackFrame(){return{ruleId:a.ruleIdToNumber(this.ruleId),beginRuleCapturedEOL:this.beginRuleCapturedEOL,endRule:this.endRule,nameScopesList:this.nameScopesList?.getExtensionIfDefined(this.parent?.nameScopesList??null)??[],contentNameScopesList:this.contentNameScopesList?.getExtensionIfDefined(this.nameScopesList)??[]}}static pushFrame(e,t){const n=_.fromExtension(e?.nameScopesList??null,t.nameScopesList);return new b(e,a.ruleIdFromNumber(t.ruleId),t.enterPos??-1,t.anchorPos??-1,t.beginRuleCapturedEOL,t.endRule,n,_.fromExtension(n,t.contentNameScopesList))}}t.StateStackImpl=b,b.NULL=new b(null,0,0,0,!1,null,null,null),t.BalancedBracketSelectors=class{constructor(e,t){this.allowAny=!1,this.balancedBracketScopes=e.flatMap((e=>\"*\"===e?(this.allowAny=!0,[]):i.createMatchers(e,d).map((e=>e.matcher)))),this.unbalancedBracketScopes=t.flatMap((e=>i.createMatchers(e,d).map((e=>e.matcher))))}get matchesAlways(){return this.allowAny&&0===this.unbalancedBracketScopes.length}get matchesNever(){return 0===this.balancedBracketScopes.length&&!this.allowAny}match(e){for(const t of this.unbalancedBracketScopes)if(t(e))return!1;for(const t of this.balancedBracketScopes)if(t(e))return!0;return this.allowAny}};class y{constructor(e,t,n,r){this.balancedBracketSelectors=r,this._emitBinaryTokens=e,this._tokenTypeOverrides=n,s.DebugFlags.InDebugMode?this._lineText=t:this._lineText=null,this._tokens=[],this._binaryTokens=[],this._lastTokenEndIndex=0}produce(e,t){this.produceFromScopes(e.contentNameScopesList,t)}produceFromScopes(e,t){if(this._lastTokenEndIndex>=t)return;if(this._emitBinaryTokens){let n=e?.tokenAttributes??0,i=!1;if(this.balancedBracketSelectors?.matchesAlways&&(i=!0),this._tokenTypeOverrides.length>0||this.balancedBracketSelectors&&!this.balancedBracketSelectors.matchesAlways&&!this.balancedBracketSelectors.matchesNever){const t=e?.getScopeNames()??[];for(const e of this._tokenTypeOverrides)e.matcher(t)&&(n=r.EncodedTokenAttributes.set(n,0,r.toOptionalTokenType(e.type),null,-1,0,0));this.balancedBracketSelectors&&(i=this.balancedBracketSelectors.match(t))}if(i&&(n=r.EncodedTokenAttributes.set(n,0,8,i,-1,0,0)),this._binaryTokens.length>0&&this._binaryTokens[this._binaryTokens.length-1]===n)return void(this._lastTokenEndIndex=t);if(s.DebugFlags.InDebugMode){const n=e?.getScopeNames()??[];console.log(\" token: |\"+this._lineText.substring(this._lastTokenEndIndex,t).replace(/\\n$/,\"\\\\n\")+\"|\");for(let e=0;e0&&this._tokens[this._tokens.length-1].startIndex===t-1&&this._tokens.pop(),0===this._tokens.length&&(this._lastTokenEndIndex=-1,this.produce(e,t),this._tokens[this._tokens.length-1].startIndex=0),this._tokens}getBinaryResult(e,t){this._binaryTokens.length>0&&this._binaryTokens[this._binaryTokens.length-2]===t-1&&(this._binaryTokens.pop(),this._binaryTokens.pop()),0===this._binaryTokens.length&&(this._lastTokenEndIndex=-1,this.produce(e,t),this._binaryTokens[this._binaryTokens.length-2]=0);const n=new Uint32Array(this._binaryTokens.length);for(let e=0,t=this._binaryTokens.length;e{Object.defineProperty(t,\"__esModule\",{value:!0}),t.parseInclude=t.TopLevelRepositoryReference=t.TopLevelReference=t.RelativeReference=t.SelfReference=t.BaseReference=t.ScopeDependencyProcessor=t.ExternalReferenceCollector=t.TopLevelRepositoryRuleReference=t.TopLevelRuleReference=void 0;const s=n(807);class r{constructor(e){this.scopeName=e}toKey(){return this.scopeName}}t.TopLevelRuleReference=r;class i{constructor(e,t){this.scopeName=e,this.ruleName=t}toKey(){return`${this.scopeName}#${this.ruleName}`}}t.TopLevelRepositoryRuleReference=i;class o{constructor(){this._references=[],this._seenReferenceKeys=new Set,this.visitedRule=new Set}get references(){return this._references}add(e){const t=e.toKey();this._seenReferenceKeys.has(t)||(this._seenReferenceKeys.add(t),this._references.push(e))}}function a(e,t,n,s){const i=n.lookup(e.scopeName);if(!i){if(e.scopeName===t)throw new Error(`No grammar provided for <${t}>`);return}const o=n.lookup(t);e instanceof r?l({baseGrammar:o,selfGrammar:i},s):c(e.ruleName,{baseGrammar:o,selfGrammar:i,repository:i.repository},s);const a=n.injections(e.scopeName);if(a)for(const e of a)s.add(new r(e))}function c(e,t,n){t.repository&&t.repository[e]&&u([t.repository[e]],t,n)}function l(e,t){e.selfGrammar.patterns&&Array.isArray(e.selfGrammar.patterns)&&u(e.selfGrammar.patterns,{...e,repository:e.selfGrammar.repository},t),e.selfGrammar.injections&&u(Object.values(e.selfGrammar.injections),{...e,repository:e.selfGrammar.repository},t)}function u(e,t,n){for(const o of e){if(n.visitedRule.has(o))continue;n.visitedRule.add(o);const e=o.repository?s.mergeObjects({},t.repository,o.repository):t.repository;Array.isArray(o.patterns)&&u(o.patterns,{...t,repository:e},n);const a=o.include;if(!a)continue;const h=g(a);switch(h.kind){case 0:l({...t,selfGrammar:t.baseGrammar},n);break;case 1:l(t,n);break;case 2:c(h.ruleName,{...t,repository:e},n);break;case 3:case 4:const s=h.scopeName===t.selfGrammar.scopeName?t.selfGrammar:h.scopeName===t.baseGrammar.scopeName?t.baseGrammar:void 0;if(s){const r={baseGrammar:t.baseGrammar,selfGrammar:s,repository:e};4===h.kind?c(h.ruleName,r,n):l(r,n)}else 4===h.kind?n.add(new i(h.scopeName,h.ruleName)):n.add(new r(h.scopeName))}}}t.ExternalReferenceCollector=o,t.ScopeDependencyProcessor=class{constructor(e,t){this.repo=e,this.initialScopeName=t,this.seenFullScopeRequests=new Set,this.seenPartialScopeRequests=new Set,this.seenFullScopeRequests.add(this.initialScopeName),this.Q=[new r(this.initialScopeName)]}processQueue(){const e=this.Q;this.Q=[];const t=new o;for(const n of e)a(n,this.initialScopeName,this.repo,t);for(const e of t.references)if(e instanceof r){if(this.seenFullScopeRequests.has(e.scopeName))continue;this.seenFullScopeRequests.add(e.scopeName),this.Q.push(e)}else{if(this.seenFullScopeRequests.has(e.scopeName))continue;if(this.seenPartialScopeRequests.has(e.toKey()))continue;this.seenPartialScopeRequests.add(e.toKey()),this.Q.push(e)}}};class h{constructor(){this.kind=0}}t.BaseReference=h;class p{constructor(){this.kind=1}}t.SelfReference=p;class d{constructor(e){this.ruleName=e,this.kind=2}}t.RelativeReference=d;class f{constructor(e){this.scopeName=e,this.kind=3}}t.TopLevelReference=f;class m{constructor(e,t){this.scopeName=e,this.ruleName=t,this.kind=4}}function g(e){if(\"$base\"===e)return new h;if(\"$self\"===e)return new p;const t=e.indexOf(\"#\");if(-1===t)return new f(e);if(0===t)return new d(e.substring(1));{const n=e.substring(0,t),s=e.substring(t+1);return new m(n,s)}}t.TopLevelRepositoryReference=m,t.parseInclude=g},752:function(e,t,n){var s=this&&this.__createBinding||(Object.create?function(e,t,n,s){void 0===s&&(s=n),Object.defineProperty(e,s,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,s){void 0===s&&(s=n),e[s]=t[n]}),r=this&&this.__exportStar||function(e,t){for(var n in e)\"default\"===n||Object.prototype.hasOwnProperty.call(t,n)||s(t,e,n)};Object.defineProperty(t,\"__esModule\",{value:!0}),r(n(929),t)},398:(e,t,n)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.LocalStackElement=t._tokenizeString=void 0;const s=n(185),r=n(810),i=n(666),o=n(807);class a{constructor(e,t){this.stack=e,this.stoppedEarly=t}}function c(e,t,n,r,c,h,d,f){const m=t.content.length;let g=!1,_=-1;if(d){const o=function(e,t,n,r,o,a){let c=o.beginRuleCapturedEOL?0:-1;const l=[];for(let t=o;t;t=t.pop()){const n=t.getRule(e);n instanceof i.BeginWhileRule&&l.push({rule:n,stack:t})}for(let h=l.pop();h;h=l.pop()){const{ruleScanner:l,findOptions:d}=u(h.rule,e,h.stack.endRule,n,r===c),f=l.findNextMatchSync(t,r,d);if(s.DebugFlags.InDebugMode&&(console.log(\" scanning for while rule\"),console.log(l.toString())),!f){s.DebugFlags.InDebugMode&&console.log(\" popping \"+h.rule.debugName+\" - \"+h.rule.debugWhileRegExp),o=h.stack.pop();break}if(f.ruleId!==i.whileRuleId){o=h.stack.pop();break}f.captureIndices&&f.captureIndices.length&&(a.produce(h.stack,f.captureIndices[0].start),p(e,t,n,h.stack,a,h.rule.whileCaptures,f.captureIndices),a.produce(h.stack,f.captureIndices[0].end),c=f.captureIndices[0].end,f.captureIndices[0].end>r&&(r=f.captureIndices[0].end,n=!1))}return{stack:o,linePos:r,anchorPosition:c,isFirstLine:n}}(e,t,n,r,c,h);c=o.stack,r=o.linePos,n=o.isFirstLine,_=o.anchorPosition}const b=Date.now();for(;!g;){if(0!==f&&Date.now()-b>f)return new a(c,!0);y()}return new a(c,!1);function y(){s.DebugFlags.InDebugMode&&(console.log(\"\"),console.log(`@@scanNext ${r}: |${t.content.substr(r).replace(/\\n$/,\"\\\\n\")}|`));const a=function(e,t,n,r,i,a){const c=function(e,t,n,r,i,a){const c=i.getRule(e),{ruleScanner:u,findOptions:h}=l(c,e,i.endRule,n,r===a);let p=0;s.DebugFlags.InDebugMode&&(p=o.performanceNow());const d=u.findNextMatchSync(t,r,h);if(s.DebugFlags.InDebugMode){const e=o.performanceNow()-p;e>5&&console.warn(`Rule ${c.debugName} (${c.id}) matching took ${e} against '${t}'`),console.log(` scanning for (linePos: ${r}, anchorPosition: ${a})`),console.log(u.toString()),d&&console.log(`matched rule id: ${d.ruleId} from ${d.captureIndices[0].start} to ${d.captureIndices[0].end}`)}return d?{captureIndices:d.captureIndices,matchedRuleId:d.ruleId}:null}(e,t,n,r,i,a),u=e.getInjections();if(0===u.length)return c;const h=function(e,t,n,r,i,o,a){let c,u=Number.MAX_VALUE,h=null,p=0;const d=o.contentNameScopesList.getScopeNames();for(let o=0,f=e.length;o=u)&&(u=y,h=b.captureIndices,c=b.ruleId,p=f.priority,u===i))break}return h?{priorityMatch:-1===p,captureIndices:h,matchedRuleId:c}:null}(u,e,t,n,r,i,a);if(!h)return c;if(!c)return h;const p=c.captureIndices[0].start,d=h.captureIndices[0].start;return d0)&&u[0].end>r;if(d===i.endRuleId){const i=c.getRule(e);s.DebugFlags.InDebugMode&&console.log(\" popping \"+i.debugName+\" - \"+i.debugEndRegExp),h.produce(c,u[0].start),c=c.withContentNameScopesList(c.nameScopesList),p(e,t,n,c,h,i.endCaptures,u),h.produce(c,u[0].end);const o=c;if(c=c.parent,_=o.getAnchorPos(),!f&&o.getEnterPos()===r)return s.DebugFlags.InDebugMode&&console.error(\"[1] - Grammar is in an endless loop - Grammar pushed & popped a rule without advancing\"),c=o,h.produce(c,m),void(g=!0)}else{const o=e.getRule(d);h.produce(c,u[0].start);const a=c,l=o.getName(t.content,u),b=c.contentNameScopesList.pushAttributed(l,e);if(c=c.push(d,r,_,u[0].end===m,null,b,b),o instanceof i.BeginEndRule){const r=o;s.DebugFlags.InDebugMode&&console.log(\" pushing \"+r.debugName+\" - \"+r.debugBeginRegExp),p(e,t,n,c,h,r.beginCaptures,u),h.produce(c,u[0].end),_=u[0].end;const i=r.getContentName(t.content,u),l=b.pushAttributed(i,e);if(c=c.withContentNameScopesList(l),r.endHasBackReferences&&(c=c.withEndRule(r.getEndWithResolvedBackReferences(t.content,u))),!f&&a.hasSameRuleAs(c))return s.DebugFlags.InDebugMode&&console.error(\"[2] - Grammar is in an endless loop - Grammar pushed the same rule without advancing\"),c=c.pop(),h.produce(c,m),void(g=!0)}else if(o instanceof i.BeginWhileRule){const r=o;s.DebugFlags.InDebugMode&&console.log(\" pushing \"+r.debugName),p(e,t,n,c,h,r.beginCaptures,u),h.produce(c,u[0].end),_=u[0].end;const i=r.getContentName(t.content,u),l=b.pushAttributed(i,e);if(c=c.withContentNameScopesList(l),r.whileHasBackReferences&&(c=c.withEndRule(r.getWhileWithResolvedBackReferences(t.content,u))),!f&&a.hasSameRuleAs(c))return s.DebugFlags.InDebugMode&&console.error(\"[3] - Grammar is in an endless loop - Grammar pushed the same rule without advancing\"),c=c.pop(),h.produce(c,m),void(g=!0)}else{const r=o;if(s.DebugFlags.InDebugMode&&console.log(\" matched \"+r.debugName+\" - \"+r.debugMatchRegExp),p(e,t,n,c,h,r.captures,u),h.produce(c,u[0].end),c=c.pop(),!f)return s.DebugFlags.InDebugMode&&console.error(\"[4] - Grammar is in an endless loop - Grammar is not advancing, nor is it pushing/popping\"),c=c.safePop(),h.produce(c,m),void(g=!0)}}u[0].end>r&&(r=u[0].end,n=!1)}}function l(e,t,n,r,i){return s.UseOnigurumaFindOptions?{ruleScanner:e.compile(t,n),findOptions:h(r,i)}:{ruleScanner:e.compileAG(t,n,r,i),findOptions:0}}function u(e,t,n,r,i){return s.UseOnigurumaFindOptions?{ruleScanner:e.compileWhile(t,n),findOptions:h(r,i)}:{ruleScanner:e.compileWhileAG(t,n,r,i),findOptions:0}}function h(e,t){let n=0;return e||(n|=1),t||(n|=4),n}function p(e,t,n,s,i,o,a){if(0===o.length)return;const l=t.content,u=Math.min(o.length,a.length),h=[],p=a[0].end;for(let t=0;tp)break;for(;h.length>0&&h[h.length-1].endPos<=f.start;)i.produceFromScopes(h[h.length-1].scopes,h[h.length-1].endPos),h.pop();if(h.length>0?i.produceFromScopes(h[h.length-1].scopes,f.start):i.produce(s,f.start),u.retokenizeCapturedWithRuleId){const t=u.getName(l,a),o=s.contentNameScopesList.pushAttributed(t,e),h=u.getContentName(l,a),p=o.pushAttributed(h,e),d=s.push(u.retokenizeCapturedWithRuleId,f.start,-1,!1,null,o,p),m=e.createOnigString(l.substring(0,f.end));c(e,m,n&&0===f.start,f.start,d,i,!1,0),r.disposeOnigString(m);continue}const m=u.getName(l,a);if(null!==m){const t=(h.length>0?h[h.length-1].scopes:s.contentNameScopesList).pushAttributed(m,e);h.push(new d(t,f.end))}}for(;h.length>0;)i.produceFromScopes(h[h.length-1].scopes,h[h.length-1].endPos),h.pop()}t._tokenizeString=c;class d{constructor(e,t){this.scopes=e,this.endPos=t}}t.LocalStackElement=d},726:(e,t)=>{function n(e,t){throw new Error(\"Near offset \"+e.pos+\": \"+t+\" ~~~\"+e.source.substr(e.pos,50)+\"~~~\")}Object.defineProperty(t,\"__esModule\",{value:!0}),t.parseJSON=void 0,t.parseJSON=function(e,t,o){let a=new s(e),c=new r,l=0,u=null,h=[],p=[];function d(){h.push(l),p.push(u)}function f(){l=h.pop(),u=p.pop()}function m(e){n(a,e)}for(;i(a,c);){if(0===l){if(null!==u&&m(\"too many constructs in root\"),3===c.type){u={},o&&(u.$vscodeTextmateLocation=c.toLocation(t)),d(),l=1;continue}if(2===c.type){u=[],d(),l=4;continue}m(\"unexpected token in root\")}if(2===l){if(5===c.type){f();continue}if(7===c.type){l=3;continue}m(\"expected , or }\")}if(1===l||3===l){if(1===l&&5===c.type){f();continue}if(1===c.type){let e=c.value;if(i(a,c)&&6===c.type||m(\"expected colon\"),i(a,c)||m(\"expected value\"),l=2,1===c.type){u[e]=c.value;continue}if(8===c.type){u[e]=null;continue}if(9===c.type){u[e]=!0;continue}if(10===c.type){u[e]=!1;continue}if(11===c.type){u[e]=parseFloat(c.value);continue}if(2===c.type){let t=[];u[e]=t,d(),l=4,u=t;continue}if(3===c.type){let n={};o&&(n.$vscodeTextmateLocation=c.toLocation(t)),u[e]=n,d(),l=1,u=n;continue}}m(\"unexpected token in dict\")}if(5===l){if(4===c.type){f();continue}if(7===c.type){l=6;continue}m(\"expected , or ]\")}if(4===l||6===l){if(4===l&&4===c.type){f();continue}if(l=5,1===c.type){u.push(c.value);continue}if(8===c.type){u.push(null);continue}if(9===c.type){u.push(!0);continue}if(10===c.type){u.push(!1);continue}if(11===c.type){u.push(parseFloat(c.value));continue}if(2===c.type){let e=[];u.push(e),d(),l=4,u=e;continue}if(3===c.type){let e={};o&&(e.$vscodeTextmateLocation=c.toLocation(t)),u.push(e),d(),l=1,u=e;continue}m(\"unexpected token in array\")}m(\"unknown state\")}return 0!==p.length&&m(\"unclosed constructs\"),u};class s{constructor(e){this.source=e,this.pos=0,this.len=e.length,this.line=1,this.char=0}}class r{constructor(){this.value=null,this.type=0,this.offset=-1,this.len=-1,this.line=-1,this.char=-1}toLocation(e){return{filename:e,line:this.line,char:this.char}}}function i(e,t){t.value=null,t.type=0,t.offset=-1,t.len=-1,t.line=-1,t.char=-1;let s,r=e.source,i=e.pos,o=e.len,a=e.line,c=e.char;for(;;){if(i>=o)return!1;if(s=r.charCodeAt(i),32!==s&&9!==s&&13!==s){if(10!==s)break;i++,a++,c=0}else i++,c++}if(t.offset=i,t.line=a,t.char=c,34===s){for(t.type=1,i++,c++;;){if(i>=o)return!1;if(s=r.charCodeAt(i),i++,c++,92!==s){if(34===s)break}else i++,c++}t.value=r.substring(t.offset+1,i-1).replace(/\\\\u([0-9A-Fa-f]{4})/g,((e,t)=>String.fromCodePoint(parseInt(t,16)))).replace(/\\\\(.)/g,((t,s)=>{switch(s){case'\"':return'\"';case\"\\\\\":return\"\\\\\";case\"/\":return\"/\";case\"b\":return\"\\b\";case\"f\":return\"\\f\";case\"n\":return\"\\n\";case\"r\":return\"\\r\";case\"t\":return\"\\t\";default:n(e,\"invalid escape sequence\")}throw new Error(\"unreachable\")}))}else if(91===s)t.type=2,i++,c++;else if(123===s)t.type=3,i++,c++;else if(93===s)t.type=4,i++,c++;else if(125===s)t.type=5,i++,c++;else if(58===s)t.type=6,i++,c++;else if(44===s)t.type=7,i++,c++;else if(110===s){if(t.type=8,i++,c++,s=r.charCodeAt(i),117!==s)return!1;if(i++,c++,s=r.charCodeAt(i),108!==s)return!1;if(i++,c++,s=r.charCodeAt(i),108!==s)return!1;i++,c++}else if(116===s){if(t.type=9,i++,c++,s=r.charCodeAt(i),114!==s)return!1;if(i++,c++,s=r.charCodeAt(i),117!==s)return!1;if(i++,c++,s=r.charCodeAt(i),101!==s)return!1;i++,c++}else if(102===s){if(t.type=10,i++,c++,s=r.charCodeAt(i),97!==s)return!1;if(i++,c++,s=r.charCodeAt(i),108!==s)return!1;if(i++,c++,s=r.charCodeAt(i),115!==s)return!1;if(i++,c++,s=r.charCodeAt(i),101!==s)return!1;i++,c++}else for(t.type=11;;){if(i>=o)return!1;if(s=r.charCodeAt(i),!(46===s||s>=48&&s<=57||101===s||69===s||45===s||43===s))break;i++,c++}return t.len=i-t.offset,null===t.value&&(t.value=r.substr(t.offset,t.len)),e.pos=i,e.line=a,e.char=c,!0}},625:function(e,t,n){var s=this&&this.__createBinding||(Object.create?function(e,t,n,s){void 0===s&&(s=n),Object.defineProperty(e,s,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,s){void 0===s&&(s=n),e[s]=t[n]}),r=this&&this.__exportStar||function(e,t){for(var n in e)\"default\"===n||Object.prototype.hasOwnProperty.call(t,n)||s(t,e,n)};Object.defineProperty(t,\"__esModule\",{value:!0}),t.applyStateStackDiff=t.diffStateStacksRefEq=t.parseRawGrammar=t.INITIAL=t.Registry=void 0;const i=n(752),o=n(150),a=n(583),c=n(63),l=n(784),u=n(151);Object.defineProperty(t,\"applyStateStackDiff\",{enumerable:!0,get:function(){return u.applyStateStackDiff}}),Object.defineProperty(t,\"diffStateStacksRefEq\",{enumerable:!0,get:function(){return u.diffStateStacksRefEq}}),r(n(810),t),t.Registry=class{constructor(e){this._options=e,this._syncRegistry=new a.SyncRegistry(c.Theme.createFromRawTheme(e.theme,e.colorMap),e.onigLib),this._ensureGrammarCache=new Map}dispose(){this._syncRegistry.dispose()}setTheme(e,t){this._syncRegistry.setTheme(c.Theme.createFromRawTheme(e,t))}getColorMap(){return this._syncRegistry.getColorMap()}loadGrammarWithEmbeddedLanguages(e,t,n){return this.loadGrammarWithConfiguration(e,t,{embeddedLanguages:n})}loadGrammarWithConfiguration(e,t,n){return this._loadGrammar(e,t,n.embeddedLanguages,n.tokenTypes,new i.BalancedBracketSelectors(n.balancedBracketSelectors||[],n.unbalancedBracketSelectors||[]))}loadGrammar(e){return this._loadGrammar(e,0,null,null,null)}async _loadGrammar(e,t,n,s,r){const i=new l.ScopeDependencyProcessor(this._syncRegistry,e);for(;i.Q.length>0;)await Promise.all(i.Q.map((e=>this._loadSingleGrammar(e.scopeName)))),i.processQueue();return this._grammarForScopeName(e,t,n,s,r)}async _loadSingleGrammar(e){return this._ensureGrammarCache.has(e)||this._ensureGrammarCache.set(e,this._doLoadSingleGrammar(e)),this._ensureGrammarCache.get(e)}async _doLoadSingleGrammar(e){const t=await this._options.loadGrammar(e);if(t){const n=\"function\"==typeof this._options.getInjections?this._options.getInjections(e):void 0;this._syncRegistry.addGrammar(t,n)}}async addGrammar(e,t=[],n=0,s=null){return this._syncRegistry.addGrammar(e,t),await this._grammarForScopeName(e.scopeName,n,s)}_grammarForScopeName(e,t=0,n=null,s=null,r=null){return this._syncRegistry.grammarForScopeName(e,t,n,s,r)}},t.INITIAL=i.StateStackImpl.NULL,t.parseRawGrammar=o.parseRawGrammar},916:(e,t)=>{function n(e){return!!e&&!!e.match(/[\\w\\.:]+/)}Object.defineProperty(t,\"__esModule\",{value:!0}),t.createMatchers=void 0,t.createMatchers=function(e,t){const s=[],r=function(e){let t=/([LR]:|[\\w\\.:][\\w\\.:\\-]*|[\\,\\|\\-\\(\\)])/g,n=t.exec(e);return{next:()=>{if(!n)return null;const s=n[0];return n=t.exec(e),s}}}(e);let i=r.next();for(;null!==i;){let e=0;if(2===i.length&&\":\"===i.charAt(1)){switch(i.charAt(0)){case\"R\":e=1;break;case\"L\":e=-1;break;default:console.log(`Unknown priority ${i} in scope selector`)}i=r.next()}let t=a();if(s.push({matcher:t,priority:e}),\",\"!==i)break;i=r.next()}return s;function o(){if(\"-\"===i){i=r.next();const e=o();return t=>!!e&&!e(t)}if(\"(\"===i){i=r.next();const e=function(){const e=[];let t=a();for(;t&&(e.push(t),\"|\"===i||\",\"===i);){do{i=r.next()}while(\"|\"===i||\",\"===i);t=a()}return t=>e.some((e=>e(t)))}();return\")\"===i&&(i=r.next()),e}if(n(i)){const e=[];do{e.push(i),i=r.next()}while(n(i));return n=>t(e,n)}return null}function a(){const e=[];let t=o();for(;t;)e.push(t),t=o();return t=>e.every((e=>e(t)))}}},810:(e,t)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.disposeOnigString=void 0,t.disposeOnigString=function(e){\"function\"==typeof e.dispose&&e.dispose()}},150:(e,t,n)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.parseRawGrammar=void 0;const s=n(578),r=n(185),i=n(726);t.parseRawGrammar=function(e,t=null){return null!==t&&/\\.json$/.test(t)?(n=e,o=t,r.DebugFlags.InDebugMode?i.parseJSON(n,o,!0):JSON.parse(n)):function(e,t){return r.DebugFlags.InDebugMode?s.parseWithLocation(e,t,\"$vscodeTextmateLocation\"):s.parsePLIST(e)}(e,t);var n,o}},578:(e,t)=>{function n(e,t,n){const s=e.length;let r=0,i=1,o=0;function a(t){if(null===n)r+=t;else for(;t>0;)10===e.charCodeAt(r)?(r++,i++,o=0):(r++,o++),t--}function c(e){null===n?r=e:a(e-r)}function l(){for(;r0&&65279===e.charCodeAt(0)&&(r=1);let d=0,f=null,m=[],g=[],_=null;function b(e,t){m.push(d),g.push(f),d=e,f=t}function y(){if(0===m.length)return S(\"illegal state stack\");d=m.pop(),f=g.pop()}function S(t){throw new Error(\"Near offset \"+r+\": \"+t+\" ~~~\"+e.substr(r,50)+\"~~~\")}const k=function(){if(null===_)return S(\"missing \");let e={};null!==n&&(e[n]={filename:t,line:i,char:o}),f[_]=e,_=null,b(1,e)},C=function(){if(null===_)return S(\"missing \");let e=[];f[_]=e,_=null,b(2,e)},R=function(){let e={};null!==n&&(e[n]={filename:t,line:i,char:o}),f.push(e),b(1,e)},A=function(){let e=[];f.push(e),b(2,e)};function w(){if(1!==d)return S(\"unexpected \");y()}function P(){return 1===d||2!==d?S(\"unexpected \"):void y()}function I(e){if(1===d){if(null===_)return S(\"missing \");f[_]=e,_=null}else 2===d?f.push(e):f=e}function v(e){if(isNaN(e))return S(\"cannot parse float\");if(1===d){if(null===_)return S(\"missing \");f[_]=e,_=null}else 2===d?f.push(e):f=e}function N(e){if(isNaN(e))return S(\"cannot parse integer\");if(1===d){if(null===_)return S(\"missing \");f[_]=e,_=null}else 2===d?f.push(e):f=e}function x(e){if(1===d){if(null===_)return S(\"missing \");f[_]=e,_=null}else 2===d?f.push(e):f=e}function T(e){if(1===d){if(null===_)return S(\"missing \");f[_]=e,_=null}else 2===d?f.push(e):f=e}function G(e){if(1===d){if(null===_)return S(\"missing \");f[_]=e,_=null}else 2===d?f.push(e):f=e}function E(){let e=p(\">\"),t=!1;return 47===e.charCodeAt(e.length-1)&&(t=!0,e=e.substring(0,e.length-1)),{name:e.trim(),isClosed:t}}function L(e){if(e.isClosed)return\"\";let t=p(\"\"),t.replace(/&#([0-9]+);/g,(function(e,t){return String.fromCodePoint(parseInt(t,10))})).replace(/&#x([0-9a-f]+);/g,(function(e,t){return String.fromCodePoint(parseInt(t,16))})).replace(/&|<|>|"|'/g,(function(e){switch(e){case\"&\":return\"&\";case\"<\":return\"<\";case\">\":return\">\";case\""\":return'\"';case\"'\":return\"'\"}return e}))}for(;r=s));){const c=e.charCodeAt(r);if(a(1),60!==c)return S(\"expected <\");if(r>=s)return S(\"unexpected end of input\");const p=e.charCodeAt(r);if(63===p){a(1),h(\"?>\");continue}if(33===p){if(a(1),u(\"--\")){h(\"--\\x3e\");continue}h(\">\");continue}if(47===p){if(a(1),l(),u(\"plist\")){h(\">\");continue}if(u(\"dict\")){h(\">\"),w();continue}if(u(\"array\")){h(\">\"),P();continue}return S(\"unexpected closed tag\")}let m=E();switch(m.name){case\"dict\":1===d?k():2===d?R():(f={},null!==n&&(f[n]={filename:t,line:i,char:o}),b(1,f)),m.isClosed&&w();continue;case\"array\":1===d?C():2===d?A():(f=[],b(2,f)),m.isClosed&&P();continue;case\"key\":M=L(m),1!==d?S(\"unexpected \"):null!==_?S(\"too many \"):_=M;continue;case\"string\":I(L(m));continue;case\"real\":v(parseFloat(L(m)));continue;case\"integer\":N(parseInt(L(m),10));continue;case\"date\":x(new Date(L(m)));continue;case\"data\":T(L(m));continue;case\"true\":L(m),G(!0);continue;case\"false\":L(m),G(!1);continue}if(!/^plist/.test(m.name))return S(\"unexpected opened tag \"+m.name)}var M;return f}Object.defineProperty(t,\"__esModule\",{value:!0}),t.parsePLIST=t.parseWithLocation=void 0,t.parseWithLocation=function(e,t,s){return n(e,t,s)},t.parsePLIST=function(e){return n(e,null,null)}},583:(e,t,n)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.SyncRegistry=void 0;const s=n(752);t.SyncRegistry=class{constructor(e,t){this._onigLibPromise=t,this._grammars=new Map,this._rawGrammars=new Map,this._injectionGrammars=new Map,this._theme=e}dispose(){for(const e of this._grammars.values())e.dispose()}setTheme(e){this._theme=e}getColorMap(){return this._theme.getColorMap()}addGrammar(e,t){this._rawGrammars.set(e.scopeName,e),t&&this._injectionGrammars.set(e.scopeName,t)}lookup(e){return this._rawGrammars.get(e)}injections(e){return this._injectionGrammars.get(e)}getDefaults(){return this._theme.getDefaults()}themeMatch(e){return this._theme.match(e)}async grammarForScopeName(e,t,n,r,i){if(!this._grammars.has(e)){let o=this._rawGrammars.get(e);if(!o)return null;this._grammars.set(e,s.createGrammar(e,o,t,n,r,i,this,await this._onigLibPromise))}return this._grammars.get(e)}}},666:(e,t,n)=>{Object.defineProperty(t,\"__esModule\",{value:!0}),t.CompiledRule=t.RegExpSourceList=t.RegExpSource=t.RuleFactory=t.BeginWhileRule=t.BeginEndRule=t.IncludeOnlyRule=t.MatchRule=t.CaptureRule=t.Rule=t.ruleIdToNumber=t.ruleIdFromNumber=t.whileRuleId=t.endRuleId=void 0;const s=n(807),r=n(784),i=/\\\\(\\d+)/,o=/\\\\(\\d+)/g;Symbol(\"RuleId\"),t.endRuleId=-1,t.whileRuleId=-2,t.ruleIdFromNumber=function(e){return e},t.ruleIdToNumber=function(e){return e};class a{constructor(e,t,n,r){this.$location=e,this.id=t,this._name=n||null,this._nameIsCapturing=s.RegexSource.hasCaptures(this._name),this._contentName=r||null,this._contentNameIsCapturing=s.RegexSource.hasCaptures(this._contentName)}get debugName(){const e=this.$location?`${s.basename(this.$location.filename)}:${this.$location.line}`:\"unknown\";return`${this.constructor.name}#${this.id} @ ${e}`}getName(e,t){return this._nameIsCapturing&&null!==this._name&&null!==e&&null!==t?s.RegexSource.replaceCaptures(this._name,e,t):this._name}getContentName(e,t){return this._contentNameIsCapturing&&null!==this._contentName?s.RegexSource.replaceCaptures(this._contentName,e,t):this._contentName}}t.Rule=a;class c extends a{constructor(e,t,n,s,r){super(e,t,n,s),this.retokenizeCapturedWithRuleId=r}dispose(){}collectPatterns(e,t){throw new Error(\"Not supported!\")}compile(e,t){throw new Error(\"Not supported!\")}compileAG(e,t,n,s){throw new Error(\"Not supported!\")}}t.CaptureRule=c;class l extends a{constructor(e,t,n,s,r){super(e,t,n,null),this._match=new f(s,this.id),this.captures=r,this._cachedCompiledPatterns=null}dispose(){this._cachedCompiledPatterns&&(this._cachedCompiledPatterns.dispose(),this._cachedCompiledPatterns=null)}get debugMatchRegExp(){return`${this._match.source}`}collectPatterns(e,t){t.push(this._match)}compile(e,t){return this._getCachedCompiledPatterns(e).compile(e)}compileAG(e,t,n,s){return this._getCachedCompiledPatterns(e).compileAG(e,n,s)}_getCachedCompiledPatterns(e){return this._cachedCompiledPatterns||(this._cachedCompiledPatterns=new m,this.collectPatterns(e,this._cachedCompiledPatterns)),this._cachedCompiledPatterns}}t.MatchRule=l;class u extends a{constructor(e,t,n,s,r){super(e,t,n,s),this.patterns=r.patterns,this.hasMissingPatterns=r.hasMissingPatterns,this._cachedCompiledPatterns=null}dispose(){this._cachedCompiledPatterns&&(this._cachedCompiledPatterns.dispose(),this._cachedCompiledPatterns=null)}collectPatterns(e,t){for(const n of this.patterns)e.getRule(n).collectPatterns(e,t)}compile(e,t){return this._getCachedCompiledPatterns(e).compile(e)}compileAG(e,t,n,s){return this._getCachedCompiledPatterns(e).compileAG(e,n,s)}_getCachedCompiledPatterns(e){return this._cachedCompiledPatterns||(this._cachedCompiledPatterns=new m,this.collectPatterns(e,this._cachedCompiledPatterns)),this._cachedCompiledPatterns}}t.IncludeOnlyRule=u;class h extends a{constructor(e,t,n,s,r,i,o,a,c,l){super(e,t,n,s),this._begin=new f(r,this.id),this.beginCaptures=i,this._end=new f(o||\"￿\",-1),this.endHasBackReferences=this._end.hasBackReferences,this.endCaptures=a,this.applyEndPatternLast=c||!1,this.patterns=l.patterns,this.hasMissingPatterns=l.hasMissingPatterns,this._cachedCompiledPatterns=null}dispose(){this._cachedCompiledPatterns&&(this._cachedCompiledPatterns.dispose(),this._cachedCompiledPatterns=null)}get debugBeginRegExp(){return`${this._begin.source}`}get debugEndRegExp(){return`${this._end.source}`}getEndWithResolvedBackReferences(e,t){return this._end.resolveBackReferences(e,t)}collectPatterns(e,t){t.push(this._begin)}compile(e,t){return this._getCachedCompiledPatterns(e,t).compile(e)}compileAG(e,t,n,s){return this._getCachedCompiledPatterns(e,t).compileAG(e,n,s)}_getCachedCompiledPatterns(e,t){if(!this._cachedCompiledPatterns){this._cachedCompiledPatterns=new m;for(const t of this.patterns)e.getRule(t).collectPatterns(e,this._cachedCompiledPatterns);this.applyEndPatternLast?this._cachedCompiledPatterns.push(this._end.hasBackReferences?this._end.clone():this._end):this._cachedCompiledPatterns.unshift(this._end.hasBackReferences?this._end.clone():this._end)}return this._end.hasBackReferences&&(this.applyEndPatternLast?this._cachedCompiledPatterns.setSource(this._cachedCompiledPatterns.length()-1,t):this._cachedCompiledPatterns.setSource(0,t)),this._cachedCompiledPatterns}}t.BeginEndRule=h;class p extends a{constructor(e,n,s,r,i,o,a,c,l){super(e,n,s,r),this._begin=new f(i,this.id),this.beginCaptures=o,this.whileCaptures=c,this._while=new f(a,t.whileRuleId),this.whileHasBackReferences=this._while.hasBackReferences,this.patterns=l.patterns,this.hasMissingPatterns=l.hasMissingPatterns,this._cachedCompiledPatterns=null,this._cachedCompiledWhilePatterns=null}dispose(){this._cachedCompiledPatterns&&(this._cachedCompiledPatterns.dispose(),this._cachedCompiledPatterns=null),this._cachedCompiledWhilePatterns&&(this._cachedCompiledWhilePatterns.dispose(),this._cachedCompiledWhilePatterns=null)}get debugBeginRegExp(){return`${this._begin.source}`}get debugWhileRegExp(){return`${this._while.source}`}getWhileWithResolvedBackReferences(e,t){return this._while.resolveBackReferences(e,t)}collectPatterns(e,t){t.push(this._begin)}compile(e,t){return this._getCachedCompiledPatterns(e).compile(e)}compileAG(e,t,n,s){return this._getCachedCompiledPatterns(e).compileAG(e,n,s)}_getCachedCompiledPatterns(e){if(!this._cachedCompiledPatterns){this._cachedCompiledPatterns=new m;for(const t of this.patterns)e.getRule(t).collectPatterns(e,this._cachedCompiledPatterns)}return this._cachedCompiledPatterns}compileWhile(e,t){return this._getCachedCompiledWhilePatterns(e,t).compile(e)}compileWhileAG(e,t,n,s){return this._getCachedCompiledWhilePatterns(e,t).compileAG(e,n,s)}_getCachedCompiledWhilePatterns(e,t){return this._cachedCompiledWhilePatterns||(this._cachedCompiledWhilePatterns=new m,this._cachedCompiledWhilePatterns.push(this._while.hasBackReferences?this._while.clone():this._while)),this._while.hasBackReferences&&this._cachedCompiledWhilePatterns.setSource(0,t||\"￿\"),this._cachedCompiledWhilePatterns}}t.BeginWhileRule=p;class d{static createCaptureRule(e,t,n,s,r){return e.registerRule((e=>new c(t,e,n,s,r)))}static getCompiledRuleId(e,t,n){return e.id||t.registerRule((r=>{if(e.id=r,e.match)return new l(e.$vscodeTextmateLocation,e.id,e.name,e.match,d._compileCaptures(e.captures,t,n));if(void 0===e.begin){e.repository&&(n=s.mergeObjects({},n,e.repository));let r=e.patterns;return void 0===r&&e.include&&(r=[{include:e.include}]),new u(e.$vscodeTextmateLocation,e.id,e.name,e.contentName,d._compilePatterns(r,t,n))}return e.while?new p(e.$vscodeTextmateLocation,e.id,e.name,e.contentName,e.begin,d._compileCaptures(e.beginCaptures||e.captures,t,n),e.while,d._compileCaptures(e.whileCaptures||e.captures,t,n),d._compilePatterns(e.patterns,t,n)):new h(e.$vscodeTextmateLocation,e.id,e.name,e.contentName,e.begin,d._compileCaptures(e.beginCaptures||e.captures,t,n),e.end,d._compileCaptures(e.endCaptures||e.captures,t,n),e.applyEndPatternLast,d._compilePatterns(e.patterns,t,n))})),e.id}static _compileCaptures(e,t,n){let s=[];if(e){let r=0;for(const t in e){if(\"$vscodeTextmateLocation\"===t)continue;const e=parseInt(t,10);e>r&&(r=e)}for(let e=0;e<=r;e++)s[e]=null;for(const r in e){if(\"$vscodeTextmateLocation\"===r)continue;const i=parseInt(r,10);let o=0;e[r].patterns&&(o=d.getCompiledRuleId(e[r],t,n)),s[i]=d.createCaptureRule(t,e[r].$vscodeTextmateLocation,e[r].name,e[r].contentName,o)}}return s}static _compilePatterns(e,t,n){let s=[];if(e)for(let i=0,o=e.length;ie.substring(t.start,t.end)));return o.lastIndex=0,this.source.replace(o,((e,t)=>s.escapeRegExpCharacters(n[parseInt(t,10)]||\"\")))}_buildAnchorCache(){let e,t,n,s,r=[],i=[],o=[],a=[];for(e=0,t=this.source.length;ee.source));this._cached=new g(e,t,this._items.map((e=>e.ruleId)))}return this._cached}compileAG(e,t,n){return this._hasAnchors?t?n?(this._anchorCache.A1_G1||(this._anchorCache.A1_G1=this._resolveAnchors(e,t,n)),this._anchorCache.A1_G1):(this._anchorCache.A1_G0||(this._anchorCache.A1_G0=this._resolveAnchors(e,t,n)),this._anchorCache.A1_G0):n?(this._anchorCache.A0_G1||(this._anchorCache.A0_G1=this._resolveAnchors(e,t,n)),this._anchorCache.A0_G1):(this._anchorCache.A0_G0||(this._anchorCache.A0_G0=this._resolveAnchors(e,t,n)),this._anchorCache.A0_G0):this.compile(e)}_resolveAnchors(e,t,n){let s=this._items.map((e=>e.resolveAnchors(t,n)));return new g(e,s,this._items.map((e=>e.ruleId)))}}t.RegExpSourceList=m;class g{constructor(e,t,n){this.regExps=t,this.rules=n,this.scanner=e.createOnigScanner(t)}dispose(){\"function\"==typeof this.scanner.dispose&&this.scanner.dispose()}toString(){const e=[];for(let t=0,n=this.rules.length;t{Object.defineProperty(t,\"__esModule\",{value:!0}),t.ThemeTrieElement=t.ThemeTrieElementRule=t.ColorMap=t.fontStyleToString=t.ParsedThemeRule=t.parseTheme=t.StyleAttributes=t.ScopeStack=t.Theme=void 0;const s=n(807);class r{constructor(e,t,n){this._colorMap=e,this._defaults=t,this._root=n,this._cachedMatchRoot=new s.CachedFn((e=>this._root.match(e)))}static createFromRawTheme(e,t){return this.createFromParsedTheme(c(e),t)}static createFromParsedTheme(e,t){return function(e,t){e.sort(((e,t)=>{let n=s.strcmp(e.scope,t.scope);return 0!==n?n:(n=s.strArrCmp(e.parentScopes,t.parentScopes),0!==n?n:e.index-t.index)}));let n=0,i=\"#000000\",o=\"#ffffff\";for(;e.length>=1&&\"\"===e[0].scope;){let t=e.shift();-1!==t.fontStyle&&(n=t.fontStyle),null!==t.foreground&&(i=t.foreground),null!==t.background&&(o=t.background)}let c=new u(t),l=new a(n,c.getId(i),c.getId(o)),h=new d(new p(0,null,-1,0,0),[]);for(let t=0,n=e.length;tfunction(e,t){if(0===t.length)return!0;for(let n=0;n\"===s){if(n===t.length-1)return!1;s=t[++n],r=!0}for(;e&&!o(e.scopeName,s);){if(r)return!1;e=e.parent}if(!e)return!1;e=e.parent}return!0}(e.parent,t.parentScopes)));return n?new a(n.fontStyle,n.foreground,n.background):null}}t.Theme=r;class i{constructor(e,t){this.parent=e,this.scopeName=t}static push(e,t){for(const n of t)e=new i(e,n);return e}static from(...e){let t=null;for(let n=0;n1&&(h=s.slice(0,s.length-1),h.reverse()),n[r++]=new l(o,h,e,a,c,u)}}return n}t.StyleAttributes=a,t.parseTheme=c;class l{constructor(e,t,n,s,r,i){this.scope=e,this.parentScopes=t,this.index=n,this.fontStyle=s,this.foreground=r,this.background=i}}t.ParsedThemeRule=l,t.fontStyleToString=function(e){if(-1===e)return\"not set\";let t=\"\";return 1&e&&(t+=\"italic \"),2&e&&(t+=\"bold \"),4&e&&(t+=\"underline \"),8&e&&(t+=\"strikethrough \"),\"\"===t&&(t=\"none\"),t.trim()};class u{constructor(e){if(this._lastColorId=0,this._id2color=[],this._color2id=Object.create(null),Array.isArray(e)){this._isFrozen=!0;for(let t=0,n=e.length;te?console.log(\"how did this happen?\"):this.scopeDepth=e,-1!==t&&(this.fontStyle=t),0!==n&&(this.foreground=n),0!==s&&(this.background=s)}}t.ThemeTrieElementRule=p;class d{constructor(e,t=[],n={}){this._mainRule=e,this._children=n,this._rulesWithParentScopes=t}static _cmpBySpecificity(e,t){if(e.scopeDepth!==t.scopeDepth)return t.scopeDepth-e.scopeDepth;let n=0,s=0;for(;\">\"===e.parentScopes[n]&&n++,\">\"===t.parentScopes[s]&&s++,!(n>=e.parentScopes.length||s>=t.parentScopes.length);){const r=t.parentScopes[s].length-e.parentScopes[n].length;if(0!==r)return r;n++,s++}return t.parentScopes.length-e.parentScopes.length}match(e){if(\"\"!==e){let t,n,s=e.indexOf(\".\");if(-1===s?(t=e,n=\"\"):(t=e.substring(0,s),n=e.substring(s+1)),this._children.hasOwnProperty(t))return this._children[t].match(n)}const t=this._rulesWithParentScopes.concat(this._mainRule);return t.sort(d._cmpBySpecificity),t}insert(e,t,n,s,r,i){if(\"\"===t)return void this._doInsertHere(e,n,s,r,i);let o,a,c,l=t.indexOf(\".\");-1===l?(o=t,a=\"\"):(o=t.substring(0,l),a=t.substring(l+1)),this._children.hasOwnProperty(o)?c=this._children[o]:(c=new d(this._mainRule.clone(),p.cloneArr(this._rulesWithParentScopes)),this._children[o]=c),c.insert(e+1,a,n,s,r,i)}_doInsertHere(e,t,n,r,i){if(null!==t){for(let o=0,a=this._rulesWithParentScopes.length;o{function n(e){return Array.isArray(e)?function(e){let t=[];for(let s=0,r=e.length;s{for(let n in t)e[n]=t[n]})),e},t.basename=function e(t){const n=~t.lastIndexOf(\"/\")||~t.lastIndexOf(\"\\\\\");return 0===n?t:~n==t.length-1?e(t.substring(0,t.length-1)):t.substr(1+~n)};let s=/\\$(\\d+)|\\${(\\d+):\\/(downcase|upcase)}/g;function r(e,t){return et?1:0}t.RegexSource=class{static hasCaptures(e){return null!==e&&(s.lastIndex=0,s.test(e))}static replaceCaptures(e,t,n){return e.replace(s,((e,s,r,i)=>{let o=n[parseInt(s||r,10)];if(!o)return e;{let e=t.substring(o.start,o.end);for(;\".\"===e[0];)e=e.substring(1);switch(i){case\"downcase\":return e.toLowerCase();case\"upcase\":return e.toUpperCase();default:return e}}}))}},t.strcmp=r,t.strArrCmp=function(e,t){if(null===e&&null===t)return 0;if(!e)return-1;if(!t)return 1;let n=e.length,s=t.length;if(n===s){for(let s=0;s\n/** @type {Record} */\nconst scopeToClassGithub = {\n 'brackethighlighter.angle': 'pl-ba',\n 'brackethighlighter.curly': 'pl-ba',\n 'brackethighlighter.quote': 'pl-ba',\n 'brackethighlighter.round': 'pl-ba',\n 'brackethighlighter.square': 'pl-ba',\n 'brackethighlighter.tag': 'pl-ba',\n 'brackethighlighter.unmatched': 'pl-bu',\n 'carriage-return': 'pl-c2',\n comment: 'pl-c',\n constant: 'pl-c1',\n 'constant.character.escape': 'pl-cce',\n 'constant.other.reference.link': 'pl-corl',\n entity: 'pl-e',\n 'entity.name': 'pl-en',\n 'entity.name.constant': 'pl-c1',\n 'entity.name.tag': 'pl-ent',\n 'invalid.broken': 'pl-bu',\n 'invalid.deprecated': 'pl-bu',\n 'invalid.illegal': 'pl-ii',\n 'invalid.unimplemented': 'pl-bu',\n keyword: 'pl-k',\n // Note: this is included as `symbole` by GH, which is not included in any\n // grammar.\n // Should likely be `symbol`.\n 'keyword.operator.symbol': 'pl-kos',\n 'keyword.other.mark': 'pl-kos',\n 'markup.bold': 'pl-mb',\n 'markup.changed': 'pl-mc',\n 'markup.deleted': 'pl-md',\n 'markup.heading': 'pl-mh',\n 'markup.ignored': 'pl-mi2',\n 'markup.inserted': 'pl-mi1',\n 'markup.italic': 'pl-mi',\n 'markup.list': 'pl-ml',\n 'markup.quote': 'pl-ent',\n 'markup.raw': 'pl-c1',\n 'markup.untracked': 'pl-mi2',\n 'message.error': 'pl-bu',\n 'meta.diff.header': 'pl-c1',\n 'meta.diff.header.from-file': 'pl-md',\n 'meta.diff.header.to-file': 'pl-mi1',\n 'meta.diff.range': 'pl-mdr',\n 'meta.module-reference': 'pl-c1',\n 'meta.output': 'pl-c1',\n 'meta.property-name': 'pl-c1',\n 'meta.separator': 'pl-ms',\n 'punctuation.definition.changed': 'pl-mc',\n 'punctuation.definition.comment': 'pl-c',\n 'punctuation.definition.deleted': 'pl-md',\n 'punctuation.definition.inserted': 'pl-mi1',\n 'punctuation.definition.string': 'pl-pds',\n 'punctuation.section.embedded': 'pl-pse',\n\n // Note: orignally this is listed as `source` on GH.\n // However, every `source*` scope matches that in `vscode-textmate`, making it\n // useless because everything inside strings again matches it, meaning strings\n // aren’t colored.\n // For now, I instead looked for `\\.source'` in `lang/`, and listed them below:\n 'source.coffee.embedded.source': 'pl-s1',\n 'source.groovy.embedded.source': 'pl-s1',\n 'source.jq.embedded.source': 'pl-s1',\n 'source.js.embedded.source': 'pl-s1',\n 'source.livescript.embedded.source': 'pl-s1',\n 'support.mnemonic.operand.source': 'pl-s1',\n 'source.nu.embedded.source': 'pl-s1',\n 'source.prisma.embedded.source': 'pl-s1',\n 'source.scala.embedded.source': 'pl-s1',\n 'stylus.embedded.source': 'pl-s1',\n\n 'source.regexp': 'pl-pds',\n 'source.ruby.embedded': 'pl-sre',\n storage: 'pl-k',\n 'storage.modifier.import': 'pl-smi',\n 'storage.modifier.package': 'pl-smi',\n 'storage.type': 'pl-k',\n 'storage.type.java': 'pl-smi',\n string: 'pl-s',\n 'string.comment': 'pl-c',\n 'string.other.link': 'pl-corl',\n 'string.regexp': 'pl-sr',\n 'string.regexp.arbitrary-repitition': 'pl-sra',\n 'string.regexp.character-class': 'pl-pds',\n 'string.unquoted.import.ada': 'pl-kos',\n 'sublimelinter.gutter-mark': 'pl-sg',\n 'sublimelinter.mark.error': 'pl-bu',\n 'sublimelinter.mark.warning': 'pl-smw',\n support: 'pl-c1',\n 'support.constant': 'pl-c1',\n 'support.variable': 'pl-c1',\n variable: 'pl-v',\n 'variable.language': 'pl-c1',\n 'variable.other': 'pl-smi',\n 'variable.other.constant': 'pl-c1',\n 'variable.parameter.function': 'pl-smi'\n}\n\n/**\n * List of classes.\n * Their index is important.\n */\nexport const classes = [...new Set(Object.values(scopeToClassGithub))].sort()\n\n/**\n * There is a single grandchild selector:\n *\n * ```css\n * .pl-s .pl-pse .pl-s1 // string punctuation.section.embedded source\n * ```\n *\n * …which is needed to “revert” the color of code when embedded in strings.\n *\n * We currently encode grandparents in `fontStyle`, which is a tiny space.\n * But that’s fine for 1 value.\n * On the receiving end (`parse`), any `fontStyle` is treated as\n * `grandparents[0]`.\n */\nexport const grandparents = ['pl-s']\n\n/**\n * There are several child selectors:\n *\n * ```css\n * .pl-s .pl-v // string variable\n * .pl-s .pl-s1 // string source\n * .pl-s .pl-pse .pl-s1 // string punctuation.section.embedded source\n * .pl-sr .pl-cce // string.regexp constant.character.escape\n * .pl-sr .pl-sre // string.regexp source.ruby.embedded\n * .pl-sr .pl-sra // string.regexp string.regexp.arbitrary-repitition\n * .pl-mh .pl-en // markup.heading entity.name\n * ```\n */\nconst parents = new Set([\n // 'pl-s', // Ignore, it’s also a grandparent.\n 'pl-pse',\n 'pl-sr',\n 'pl-mh'\n])\n\n/**\n * The color we ignore.\n */\nexport const transparent = '#FFFFFF'\n\n/**\n * Our ✨ magic ✨ theme so we can sort of recreate the nested markup that GH\n * uses.\n */\nexport const theme = {\n name: 'custom',\n settings: [\n // Make sure there’s always a fore/background.\n {settings: {background: transparent, foreground: transparent}},\n // Add scopes.\n ...Object.keys(scopeToClassGithub).map(function (scope) {\n const className = scopeToClassGithub[scope]\n /** @type {string} */\n let field\n /** @type {string} */\n let value\n\n if (grandparents.includes(className)) {\n field = 'fontStyle'\n value = 'italic'\n } else {\n field = parents.has(className) ? 'background' : 'foreground'\n value = '#' + String(classes.indexOf(className)).padStart(6, '0')\n }\n\n return {scope: [scope], settings: {[field]: value}}\n })\n ]\n}\n","/**\n * @import {Element, Root} from 'hast'\n * @import {IGrammar, StateStack} from 'vscode-textmate'\n */\n\nimport {classes, grandparents, transparent} from './theme.js'\n\n// Source: \n// Also: \nconst FONT_STYLE_MASK = 0b0000_0000_0000_0000_0111_1000_0000_0000\nconst FOREGROUND_MASK = 0b0000_0000_1111_1111_1000_0000_0000_0000\nconst BACKGROUND_MASK = 0b1111_1111_0000_0000_0000_0000_0000_0000\n\n// Source: \n// Also: \nconst FONT_STYLE_OFFSET = 11\nconst FOREGROUND_OFFSET = 15\nconst BACKGROUND_OFFSET = 24\n\n/**\n * @param {string} value\n * Code to highlight.\n * @param {Readonly} grammar\n * Grammar instance to use.\n * @param {ReadonlyArray} colors\n * Colors that are in the theme.\n * @returns {Root}\n * A hast root that includes basic ``s and text nodes.\n */\nexport function parse(value, grammar, colors) {\n /** @type {Root} */\n const tree = {type: 'root', children: []}\n const search = /\\r?\\n|\\r/g\n /** @type {StateStack | null} */\n let stack = null\n let start = 0\n\n while (start < value.length) {\n const match = search.exec(value)\n const end = match ? match.index : value.length\n\n // > 👉 **Important**: empty lines have to be tokenized, as some patterns\n // > look for them.\n const {ruleStack, tokens} = grammar.tokenizeLine2(\n value.slice(start, end),\n stack\n )\n let index = 0\n\n while (index < tokens.length) {\n const tokenStart = start + tokens[index++]\n const metadata = tokens[index++]\n const tokenEnd = index < tokens.length ? start + tokens[index] : end\n // Source: \n const fg = (metadata & FOREGROUND_MASK) >>> FOREGROUND_OFFSET\n const bg = (metadata & BACKGROUND_MASK) >>> BACKGROUND_OFFSET\n const fs = (metadata & FONT_STYLE_MASK) >>> FONT_STYLE_OFFSET\n\n /** @type {Element | Root} */\n let scope = tree\n scope = delveIfClassName(scope, fontStyleToClass(fs))\n scope = delveIfClassName(scope, colorToClass(colors[bg]))\n scope = delveIfClassName(scope, colorToClass(colors[fg]))\n appendText(scope, value.slice(tokenStart, tokenEnd))\n }\n\n stack = ruleStack\n\n start = end\n\n if (match) {\n appendText(tree, match[0])\n start += match[0].length\n }\n }\n\n return tree\n}\n\n/**\n * @param {Element | Root} scope\n * Node to work in.\n * @param {string | undefined} className\n * Class to add.\n * @returns {Element | Root}\n * The new element, if with `className`, or the given `scope`.\n */\nfunction delveIfClassName(scope, className) {\n if (!className) return scope\n\n let tail = scope.children[scope.children.length - 1]\n\n if (\n !tail ||\n tail.type !== 'element' ||\n !tail.properties ||\n !Array.isArray(tail.properties.className) ||\n !tail.properties.className.includes(className)\n ) {\n tail = {\n type: 'element',\n tagName: 'span',\n properties: {className: [className]},\n children: []\n }\n scope.children.push(tail)\n }\n\n return tail\n}\n\n/**\n * @param {Element | Root} scope\n * Node to work in.\n * @param {string} value\n * Text to add.\n * @returns {undefined}\n * Nothing.\n */\nfunction appendText(scope, value) {\n let tail = scope.children[scope.children.length - 1]\n\n if (!tail || tail.type !== 'text') {\n tail = {type: 'text', value: ''}\n scope.children.push(tail)\n }\n\n tail.value += value\n}\n\n/**\n * Note: there’s only one grandparent.\n * We could encode more grandparents in `fontStyle` if needed.\n *\n * @param {number} fontStyle\n * Font style to convert..\n * @returns {string | undefined}\n * Class name.\n */\nfunction fontStyleToClass(fontStyle) {\n return fontStyle ? grandparents[0] : undefined\n}\n\n/**\n * @param {string} color\n * Color to convert.\n * @returns {string | undefined}\n * Class name.\n */\nfunction colorToClass(color) {\n if (color === transparent) return undefined\n return classes[Number.parseInt(color.slice(1), 10)]\n}\n","/// \n/* eslint-env browser */\n\n/**\n * @import {Options} from './types.js'\n */\n\n/**\n * Browser (and Node 18+) WASM loader.\n *\n * @param {Readonly | undefined} [options]\n * Configuration (optional).\n * @returns {Promise}\n * Fetch response.\n */\nexport async function getOniguruma(options) {\n const url =\n options && options.getOnigurumaUrlFetch\n ? await options.getOnigurumaUrlFetch()\n : new URL('https://esm.sh/vscode-oniguruma@2/release/onig.wasm')\n\n return fetch(url)\n}\n","/**\n * @import {Root} from 'hast'\n * @import {IGrammar, IRawGrammar} from 'vscode-textmate'\n * @import {Grammar, Options} from './types.js'\n */\n\nimport vscodeOniguruma from 'vscode-oniguruma'\nimport vscodeTextmate from 'vscode-textmate'\nimport {parse} from './parse.js'\nimport {theme} from './theme.js'\nimport {getOniguruma} from '#get-oniguruma'\n\n/**\n * Create a `StarryNight` that can highlight things with the given\n * `grammars`.\n * This is async to allow async loading and registering, which is currently\n * only used for WASM.\n *\n * @param {ReadonlyArray} grammars\n * Grammars to support.\n * @param {Readonly | null | undefined} [options]\n * Configuration (optional).\n * @returns\n * Promise that resolves to an instance which highlights with the bound\n * grammars.\n */\nexport async function createStarryNight(grammars, options) {\n /** @type {Map>} */\n const registered = new Map()\n /** @type {Map} */\n const names = new Map()\n /** @type {Map} */\n const extensions = new Map()\n /** @type {Map} */\n const extensionsWithDot = new Map()\n let currentRegistry = await createRegistry(grammars, options)\n\n return {flagToScope, highlight, missingScopes, register, scopes}\n\n /**\n * Get the grammar scope (such as `text.md`) associated with a grammar name\n * (such as `markdown`) or grammar extension (such as `.mdwn`).\n *\n * This function uses the first word (when splitting on spaces and tabs) that\n * is used after the opening of a fenced code block:\n *\n * ````markdown\n * ```js\n * console.log(1)\n * ```\n * ````\n *\n * To match GitHub, this also accepts entire paths:\n *\n * ````markdown\n * ```path/to/example.js\n * console.log(1)\n * ```\n * ````\n *\n * > **Note**: languages can use the same extensions.\n * > For example, `.h` is reused by many languages.\n * > In those cases, you will get one scope back, but it might not be the\n * > most popular language associated with an extension.\n *\n * @param {string} flag\n * Grammar name (such as `'markdown'`), grammar extension (such as\n * `'.mdwn'`), or path ending in extension.\n * @returns {string | undefined}\n * Grammar scope (such as `'text.md'`).\n * @example\n * ```js\n * import {common, createStarryNight} from '@wooorm/starry-night'\n *\n * const starryNight = await createStarryNight(common)\n *\n * console.log(starryNight.flagToScope('pandoc')) // `'text.md'`\n * console.log(starryNight.flagToScope('workbook')) // `'text.md'`\n * console.log(starryNight.flagToScope('.workbook')) // `'text.md'`\n * console.log(starryNight.flagToScope('path/to/example.js')) // `'source.js'`\n * console.log(starryNight.flagToScope('whatever')) // `undefined`\n * ```\n */\n function flagToScope(flag) {\n if (typeof flag !== 'string') {\n throw new TypeError('Expected `string` for `flag`, got `' + flag + '`')\n }\n\n const normal = flag\n .toLowerCase()\n .replace(/^[ \\t]+/, '')\n .replace(/\\/*[ \\t]*$/g, '')\n\n const scopeByName = names.get(normal)\n\n if (scopeByName) {\n return scopeByName\n }\n\n const dot = normal.lastIndexOf('.')\n\n if (dot === -1) {\n return extensions.get('.' + normal)\n }\n\n const extension = normal.slice(dot)\n return extensions.get(extension) || extensionsWithDot.get(extension)\n }\n\n /**\n * Highlight programming code.\n *\n * @param {string} value\n * Code to highlight.\n * @param {string} scope\n * Registered grammar scope to highlight as (such as `'text.md'`).\n * @returns {Root}\n * Node representing highlighted code.\n * @example\n * ```js\n * import {createStarryNight} from '@wooorm/starry-night'\n * import sourceCss from '@wooorm/starry-night/source.css'\n *\n * const starryNight = await createStarryNight([sourceCss])\n *\n * console.log(starryNight.highlight('em { color: red }', 'source.css'))\n * ```\n *\n * Yields:\n *\n * ```js\n * {\n * type: 'root',\n * children: [\n * {type: 'element', tagName: 'span', properties: [Object], children: [Array]},\n * {type: 'text', value: ' { '},\n * {type: 'element', tagName: 'span', properties: [Object], children: [Array]},\n * {type: 'text', value: ': '},\n * {type: 'element', tagName: 'span', properties: [Object], children: [Array]},\n * {type: 'text', value: ' }'}\n * ]\n * }\n * ```\n */\n function highlight(value, scope) {\n if (typeof value !== 'string') {\n throw new TypeError('Expected `string` for `value`, got `' + value + '`')\n }\n\n if (typeof scope !== 'string') {\n throw new TypeError('Expected `string` for `scope`, got `' + scope + '`')\n }\n\n // Use the private API so we don’t need to cache again.\n /** @type {unknown} */\n // @ts-expect-error: untyped internals of `vscode-textmate`.\n // type-coverage:ignore-next-line\n const map = currentRegistry._syncRegistry._grammars\n /** @type {IGrammar} */\n // @ts-expect-error: untyped internals of `vscode-textmate`.\n const grammar = map.get(scope)\n\n if (!grammar) {\n throw new Error('Expected grammar `' + scope + '` to be registered')\n }\n\n return parse(value, grammar, currentRegistry.getColorMap())\n }\n\n /**\n * List scopes that are needed by the registered grammars but that are\n * missing.\n *\n * To illustrate, the `text.xml.svg` grammar needs the `text.xml` grammar.\n * When you register `text.xml.svg` without `text.xml`, it will be listed\n * here.\n *\n * @returns {ReadonlyArray}\n * List of grammar scopes, such as `'text.md'`.\n * @example\n * ```js\n * import {createStarryNight} from '@wooorm/starry-night'\n * import textXml from '@wooorm/starry-night/text.xml'\n * import textXmlSvg from '@wooorm/starry-night/text.xml.svg'\n *\n * const svg = await createStarryNight([textXmlSvg])\n * console.log(svg.missingScopes()) //=> ['text.xml']\n *\n * const svgAndXml = await createStarryNight([textXmlSvg, textXml])\n * console.log(svgAndXml.missingScopes()) //=> []\n * ```\n */\n function missingScopes() {\n /** @type {Set} */\n const available = new Set()\n /** @type {Set} */\n const needed = new Set()\n\n for (const [scopeName, grammar] of registered) {\n available.add(scopeName)\n if (grammar.dependencies) {\n for (const dep of grammar.dependencies) {\n needed.add(dep)\n }\n }\n }\n\n return [...needed]\n .filter(function (d) {\n return !available.has(d)\n })\n .sort()\n }\n\n /**\n * Add more grammars.\n *\n * @param {ReadonlyArray>} grammars\n * Grammars to support.\n * @returns {Promise}\n * Promise resolving to nothing.\n * @example\n * ````js\n * import {createStarryNight} from '@wooorm/starry-night'\n * import sourceCss from '@wooorm/starry-night/source.css'\n * import textMd from '@wooorm/starry-night/text.md'\n * import {toHtml} from 'hast-util-to-html'\n *\n * const markdown = '```css\\nem { color: red }\\n```'\n *\n * const starryNight = await createStarryNight([textMd])\n *\n * console.log(toHtml(starryNight.highlight(markdown, 'text.md')))\n *\n * await starryNight.register([sourceCss])\n *\n * console.log(toHtml(starryNight.highlight(markdown, 'text.md')))\n * ````\n *\n * Yields:\n *\n * ````html\n * ```css\n * em { color: red }\n * ```\n * ````\n *\n * ````html\n * ```css\n * em { color: red }\n * ```\n * ````\n */\n async function register(grammars) {\n currentRegistry = await createRegistry(grammars)\n }\n\n /**\n * List all registered scopes.\n *\n * @returns {ReadonlyArray}\n * List of grammar scopes, such as `'text.md'`.\n * @example\n * ```js\n * import {common, createStarryNight} from '@wooorm/starry-night'\n *\n * const starryNight = await createStarryNight(common)\n *\n * console.log(starryNight.scopes())\n * ```\n *\n * Yields:\n *\n * ```js\n * [\n * 'source.c',\n * 'source.c++',\n * // …\n * 'text.xml',\n * 'text.xml.svg'\n * ]\n * ```\n */\n function scopes() {\n return [...registered.keys()].sort()\n }\n\n /**\n * @param {ReadonlyArray>} grammars\n * Grammars.\n * @param {Readonly | null | undefined} [options]\n * Configuration (optional).\n * @returns\n * Registry.\n */\n async function createRegistry(grammars, options) {\n for (const grammar of grammars) {\n const scope = grammar.scopeName\n for (const d of grammar.extensions) extensions.set(d, scope)\n if (grammar.extensionsWithDot)\n for (const d of grammar.extensionsWithDot)\n extensionsWithDot.set(d, scope)\n for (const d of grammar.names) names.set(d, scope)\n registered.set(scope, grammar)\n }\n\n const registry = new vscodeTextmate.Registry({\n async loadGrammar(scopeName) {\n // Cast because `vscode-textmate` has much stricter types that needed by\n // textmate, or by what they actually support.\n // Given that we can’t fix the grammars provided by the world here, and\n // given that `vscode-textmate` is crying without a reason, we tell it to\n // shut up instead.\n const grammar = /** @type {IRawGrammar | undefined} */ (\n registered.get(scopeName)\n )\n return grammar\n },\n onigLib: createOniguruma(options)\n })\n\n registry.setTheme(theme)\n\n await Promise.all(\n [...registered.keys()].map(function (d) {\n return registry.loadGrammar(d)\n })\n )\n\n return registry\n }\n}\n\n/**\n * Small function needed for oniguruma to work.\n *\n * Idea: as this seems to be a singleton, would it help if we call it once and\n * keep the promise?\n *\n * @param {Readonly | null | undefined} [options]\n * Configuration (optional).\n * @returns\n * `vscode-oniguruma`.\n */\nasync function createOniguruma(options) {\n const wasmBinary = await getOniguruma(options || undefined)\n await vscodeOniguruma.loadWASM(wasmBinary)\n return vscodeOniguruma\n}\n","/**\n * @import {Schema as SchemaType, Space} from 'property-information'\n */\n\n/** @type {SchemaType} */\nexport class Schema {\n /**\n * @param {SchemaType['property']} property\n * Property.\n * @param {SchemaType['normal']} normal\n * Normal.\n * @param {Space | undefined} [space]\n * Space.\n * @returns\n * Schema.\n */\n constructor(property, normal, space) {\n this.normal = normal\n this.property = property\n\n if (space) {\n this.space = space\n }\n }\n}\n\nSchema.prototype.normal = {}\nSchema.prototype.property = {}\nSchema.prototype.space = undefined\n","/**\n * @import {Info, Space} from 'property-information'\n */\n\nimport {Schema} from './schema.js'\n\n/**\n * @param {ReadonlyArray} definitions\n * Definitions.\n * @param {Space | undefined} [space]\n * Space.\n * @returns {Schema}\n * Schema.\n */\nexport function merge(definitions, space) {\n /** @type {Record} */\n const property = {}\n /** @type {Record} */\n const normal = {}\n\n for (const definition of definitions) {\n Object.assign(property, definition.property)\n Object.assign(normal, definition.normal)\n }\n\n return new Schema(property, normal, space)\n}\n","/**\n * Get the cleaned case insensitive form of an attribute or property.\n *\n * @param {string} value\n * An attribute-like or property-like name.\n * @returns {string}\n * Value that can be used to look up the properly cased property on a\n * `Schema`.\n */\nexport function normalize(value) {\n return value.toLowerCase()\n}\n","/**\n * @import {Info as InfoType} from 'property-information'\n */\n\n/** @type {InfoType} */\nexport class Info {\n /**\n * @param {string} property\n * Property.\n * @param {string} attribute\n * Attribute.\n * @returns\n * Info.\n */\n constructor(property, attribute) {\n this.attribute = attribute\n this.property = property\n }\n}\n\nInfo.prototype.attribute = ''\nInfo.prototype.booleanish = false\nInfo.prototype.boolean = false\nInfo.prototype.commaOrSpaceSeparated = false\nInfo.prototype.commaSeparated = false\nInfo.prototype.defined = false\nInfo.prototype.mustUseProperty = false\nInfo.prototype.number = false\nInfo.prototype.overloadedBoolean = false\nInfo.prototype.property = ''\nInfo.prototype.spaceSeparated = false\nInfo.prototype.space = undefined\n","let powers = 0\n\nexport const boolean = increment()\nexport const booleanish = increment()\nexport const overloadedBoolean = increment()\nexport const number = increment()\nexport const spaceSeparated = increment()\nexport const commaSeparated = increment()\nexport const commaOrSpaceSeparated = increment()\n\nfunction increment() {\n return 2 ** ++powers\n}\n","/**\n * @import {Space} from 'property-information'\n */\n\nimport {Info} from './info.js'\nimport * as types from './types.js'\n\nconst checks = /** @type {ReadonlyArray} */ (\n Object.keys(types)\n)\n\nexport class DefinedInfo extends Info {\n /**\n * @constructor\n * @param {string} property\n * Property.\n * @param {string} attribute\n * Attribute.\n * @param {number | null | undefined} [mask]\n * Mask.\n * @param {Space | undefined} [space]\n * Space.\n * @returns\n * Info.\n */\n constructor(property, attribute, mask, space) {\n let index = -1\n\n super(property, attribute)\n\n mark(this, 'space', space)\n\n if (typeof mask === 'number') {\n while (++index < checks.length) {\n const check = checks[index]\n mark(this, checks[index], (mask & types[check]) === types[check])\n }\n }\n }\n}\n\nDefinedInfo.prototype.defined = true\n\n/**\n * @template {keyof DefinedInfo} Key\n * Key type.\n * @param {DefinedInfo} values\n * Info.\n * @param {Key} key\n * Key.\n * @param {DefinedInfo[Key]} value\n * Value.\n * @returns {undefined}\n * Nothing.\n */\nfunction mark(values, key, value) {\n if (value) {\n values[key] = value\n }\n}\n","/**\n * @import {Info, Space} from 'property-information'\n */\n\n/**\n * @typedef Definition\n * Definition of a schema.\n * @property {Record | undefined} [attributes]\n * Normalzed names to special attribute case.\n * @property {ReadonlyArray | undefined} [mustUseProperty]\n * Normalized names that must be set as properties.\n * @property {Record} properties\n * Property names to their types.\n * @property {Space | undefined} [space]\n * Space.\n * @property {Transform} transform\n * Transform a property name.\n */\n\n/**\n * @callback Transform\n * Transform.\n * @param {Record} attributes\n * Attributes.\n * @param {string} property\n * Property.\n * @returns {string}\n * Attribute.\n */\n\nimport {normalize} from '../normalize.js'\nimport {DefinedInfo} from './defined-info.js'\nimport {Schema} from './schema.js'\n\n/**\n * @param {Definition} definition\n * Definition.\n * @returns {Schema}\n * Schema.\n */\nexport function create(definition) {\n /** @type {Record} */\n const properties = {}\n /** @type {Record} */\n const normals = {}\n\n for (const [property, value] of Object.entries(definition.properties)) {\n const info = new DefinedInfo(\n property,\n definition.transform(definition.attributes || {}, property),\n value,\n definition.space\n )\n\n if (\n definition.mustUseProperty &&\n definition.mustUseProperty.includes(property)\n ) {\n info.mustUseProperty = true\n }\n\n properties[property] = info\n\n normals[normalize(property)] = property\n normals[normalize(info.attribute)] = property\n }\n\n return new Schema(properties, normals, definition.space)\n}\n","import {create} from './util/create.js'\nimport {booleanish, number, spaceSeparated} from './util/types.js'\n\nexport const aria = create({\n properties: {\n ariaActiveDescendant: null,\n ariaAtomic: booleanish,\n ariaAutoComplete: null,\n ariaBusy: booleanish,\n ariaChecked: booleanish,\n ariaColCount: number,\n ariaColIndex: number,\n ariaColSpan: number,\n ariaControls: spaceSeparated,\n ariaCurrent: null,\n ariaDescribedBy: spaceSeparated,\n ariaDetails: null,\n ariaDisabled: booleanish,\n ariaDropEffect: spaceSeparated,\n ariaErrorMessage: null,\n ariaExpanded: booleanish,\n ariaFlowTo: spaceSeparated,\n ariaGrabbed: booleanish,\n ariaHasPopup: null,\n ariaHidden: booleanish,\n ariaInvalid: null,\n ariaKeyShortcuts: null,\n ariaLabel: null,\n ariaLabelledBy: spaceSeparated,\n ariaLevel: number,\n ariaLive: null,\n ariaModal: booleanish,\n ariaMultiLine: booleanish,\n ariaMultiSelectable: booleanish,\n ariaOrientation: null,\n ariaOwns: spaceSeparated,\n ariaPlaceholder: null,\n ariaPosInSet: number,\n ariaPressed: booleanish,\n ariaReadOnly: booleanish,\n ariaRelevant: null,\n ariaRequired: booleanish,\n ariaRoleDescription: spaceSeparated,\n ariaRowCount: number,\n ariaRowIndex: number,\n ariaRowSpan: number,\n ariaSelected: booleanish,\n ariaSetSize: number,\n ariaSort: null,\n ariaValueMax: number,\n ariaValueMin: number,\n ariaValueNow: number,\n ariaValueText: null,\n role: null\n },\n transform(_, property) {\n return property === 'role'\n ? property\n : 'aria-' + property.slice(4).toLowerCase()\n }\n})\n","/**\n * @param {Record} attributes\n * Attributes.\n * @param {string} attribute\n * Attribute.\n * @returns {string}\n * Transformed attribute.\n */\nexport function caseSensitiveTransform(attributes, attribute) {\n return attribute in attributes ? attributes[attribute] : attribute\n}\n","import {caseSensitiveTransform} from './case-sensitive-transform.js'\n\n/**\n * @param {Record} attributes\n * Attributes.\n * @param {string} property\n * Property.\n * @returns {string}\n * Transformed property.\n */\nexport function caseInsensitiveTransform(attributes, property) {\n return caseSensitiveTransform(attributes, property.toLowerCase())\n}\n","import {caseInsensitiveTransform} from './util/case-insensitive-transform.js'\nimport {create} from './util/create.js'\nimport {\n booleanish,\n boolean,\n commaSeparated,\n number,\n overloadedBoolean,\n spaceSeparated\n} from './util/types.js'\n\nexport const html = create({\n attributes: {\n acceptcharset: 'accept-charset',\n classname: 'class',\n htmlfor: 'for',\n httpequiv: 'http-equiv'\n },\n mustUseProperty: ['checked', 'multiple', 'muted', 'selected'],\n properties: {\n // Standard Properties.\n abbr: null,\n accept: commaSeparated,\n acceptCharset: spaceSeparated,\n accessKey: spaceSeparated,\n action: null,\n allow: null,\n allowFullScreen: boolean,\n allowPaymentRequest: boolean,\n allowUserMedia: boolean,\n alt: null,\n as: null,\n async: boolean,\n autoCapitalize: null,\n autoComplete: spaceSeparated,\n autoFocus: boolean,\n autoPlay: boolean,\n blocking: spaceSeparated,\n capture: null,\n charSet: null,\n checked: boolean,\n cite: null,\n className: spaceSeparated,\n cols: number,\n colSpan: null,\n content: null,\n contentEditable: booleanish,\n controls: boolean,\n controlsList: spaceSeparated,\n coords: number | commaSeparated,\n crossOrigin: null,\n data: null,\n dateTime: null,\n decoding: null,\n default: boolean,\n defer: boolean,\n dir: null,\n dirName: null,\n disabled: boolean,\n download: overloadedBoolean,\n draggable: booleanish,\n encType: null,\n enterKeyHint: null,\n fetchPriority: null,\n form: null,\n formAction: null,\n formEncType: null,\n formMethod: null,\n formNoValidate: boolean,\n formTarget: null,\n headers: spaceSeparated,\n height: number,\n hidden: boolean,\n high: number,\n href: null,\n hrefLang: null,\n htmlFor: spaceSeparated,\n httpEquiv: spaceSeparated,\n id: null,\n imageSizes: null,\n imageSrcSet: null,\n inert: boolean,\n inputMode: null,\n integrity: null,\n is: null,\n isMap: boolean,\n itemId: null,\n itemProp: spaceSeparated,\n itemRef: spaceSeparated,\n itemScope: boolean,\n itemType: spaceSeparated,\n kind: null,\n label: null,\n lang: null,\n language: null,\n list: null,\n loading: null,\n loop: boolean,\n low: number,\n manifest: null,\n max: null,\n maxLength: number,\n media: null,\n method: null,\n min: null,\n minLength: number,\n multiple: boolean,\n muted: boolean,\n name: null,\n nonce: null,\n noModule: boolean,\n noValidate: boolean,\n onAbort: null,\n onAfterPrint: null,\n onAuxClick: null,\n onBeforeMatch: null,\n onBeforePrint: null,\n onBeforeToggle: null,\n onBeforeUnload: null,\n onBlur: null,\n onCancel: null,\n onCanPlay: null,\n onCanPlayThrough: null,\n onChange: null,\n onClick: null,\n onClose: null,\n onContextLost: null,\n onContextMenu: null,\n onContextRestored: null,\n onCopy: null,\n onCueChange: null,\n onCut: null,\n onDblClick: null,\n onDrag: null,\n onDragEnd: null,\n onDragEnter: null,\n onDragExit: null,\n onDragLeave: null,\n onDragOver: null,\n onDragStart: null,\n onDrop: null,\n onDurationChange: null,\n onEmptied: null,\n onEnded: null,\n onError: null,\n onFocus: null,\n onFormData: null,\n onHashChange: null,\n onInput: null,\n onInvalid: null,\n onKeyDown: null,\n onKeyPress: null,\n onKeyUp: null,\n onLanguageChange: null,\n onLoad: null,\n onLoadedData: null,\n onLoadedMetadata: null,\n onLoadEnd: null,\n onLoadStart: null,\n onMessage: null,\n onMessageError: null,\n onMouseDown: null,\n onMouseEnter: null,\n onMouseLeave: null,\n onMouseMove: null,\n onMouseOut: null,\n onMouseOver: null,\n onMouseUp: null,\n onOffline: null,\n onOnline: null,\n onPageHide: null,\n onPageShow: null,\n onPaste: null,\n onPause: null,\n onPlay: null,\n onPlaying: null,\n onPopState: null,\n onProgress: null,\n onRateChange: null,\n onRejectionHandled: null,\n onReset: null,\n onResize: null,\n onScroll: null,\n onScrollEnd: null,\n onSecurityPolicyViolation: null,\n onSeeked: null,\n onSeeking: null,\n onSelect: null,\n onSlotChange: null,\n onStalled: null,\n onStorage: null,\n onSubmit: null,\n onSuspend: null,\n onTimeUpdate: null,\n onToggle: null,\n onUnhandledRejection: null,\n onUnload: null,\n onVolumeChange: null,\n onWaiting: null,\n onWheel: null,\n open: boolean,\n optimum: number,\n pattern: null,\n ping: spaceSeparated,\n placeholder: null,\n playsInline: boolean,\n popover: null,\n popoverTarget: null,\n popoverTargetAction: null,\n poster: null,\n preload: null,\n readOnly: boolean,\n referrerPolicy: null,\n rel: spaceSeparated,\n required: boolean,\n reversed: boolean,\n rows: number,\n rowSpan: number,\n sandbox: spaceSeparated,\n scope: null,\n scoped: boolean,\n seamless: boolean,\n selected: boolean,\n shadowRootClonable: boolean,\n shadowRootDelegatesFocus: boolean,\n shadowRootMode: null,\n shape: null,\n size: number,\n sizes: null,\n slot: null,\n span: number,\n spellCheck: booleanish,\n src: null,\n srcDoc: null,\n srcLang: null,\n srcSet: null,\n start: number,\n step: null,\n style: null,\n tabIndex: number,\n target: null,\n title: null,\n translate: null,\n type: null,\n typeMustMatch: boolean,\n useMap: null,\n value: booleanish,\n width: number,\n wrap: null,\n writingSuggestions: null,\n\n // Legacy.\n // See: https://html.spec.whatwg.org/#other-elements,-attributes-and-apis\n align: null, // Several. Use CSS `text-align` instead,\n aLink: null, // ``. Use CSS `a:active {color}` instead\n archive: spaceSeparated, // ``. List of URIs to archives\n axis: null, // `` and ``. Use `scope` on ``\n background: null, // ``. Use CSS `background-image` instead\n bgColor: null, // `` and table elements. Use CSS `background-color` instead\n border: number, // ``. Use CSS `border-width` instead,\n borderColor: null, // `
`. Use CSS `border-color` instead,\n bottomMargin: number, // ``\n cellPadding: null, // `
`\n cellSpacing: null, // `
`\n char: null, // Several table elements. When `align=char`, sets the character to align on\n charOff: null, // Several table elements. When `char`, offsets the alignment\n classId: null, // ``\n clear: null, // `
`. Use CSS `clear` instead\n code: null, // ``\n codeBase: null, // ``\n codeType: null, // ``\n color: null, // `` and `
`. Use CSS instead\n compact: boolean, // Lists. Use CSS to reduce space between items instead\n declare: boolean, // ``\n event: null, // `