2021-10-19 23:53:22 -07:00
/ * !
2022-01-15 21:29:41 -08:00
Highlight . js v11 . 4.0 ( git : 112135 fb06 )
( c ) 2006 - 2022 Ivan Sagalaev and other contributors
2021-10-19 23:53:22 -07:00
License : BSD - 3 - Clause
* /
2022-01-15 21:29:41 -08:00
var hljs = function ( ) { "use strict" ; var e = { exports : { } } ; function t ( e ) {
2021-10-19 23:53:22 -07:00
return e instanceof Map ? e . clear = e . delete = e . set = ( ) => {
throw Error ( "map is read-only" ) } : e instanceof Set && ( e . add = e . clear = e . delete = ( ) => {
throw Error ( "set is read-only" )
2022-01-15 21:29:41 -08:00
} ) , Object . freeze ( e ) , Object . getOwnPropertyNames ( e ) . forEach ( ( a => { var n = e [ a ]
; "object" != typeof n || Object . isFrozen ( n ) || t ( n ) } ) ) , e }
e . exports = t , e . exports . default = t ; var a = e . exports ; class n { constructor ( e ) {
2021-10-19 23:53:22 -07:00
void 0 === e . data && ( e . data = { } ) , this . data = e . data , this . isMatchIgnored = ! 1 }
ignoreMatch ( ) { this . isMatchIgnored = ! 0 } } function i ( e ) {
return e . replace ( /&/g , "&" ) . replace ( /</g , "<" ) . replace ( />/g , ">" ) . replace ( /"/g , """ ) . replace ( /'/g , "'" )
2022-01-15 21:29:41 -08:00
} function r ( e , ... t ) { const a = Object . create ( null ) ; for ( const t in e ) a [ t ] = e [ t ]
; return t . forEach ( ( e => { for ( const t in e ) a [ t ] = e [ t ] } ) ) , a } const s = e => ! ! e . kind
; class o { constructor ( e , t ) {
this . buffer = "" , this . classPrefix = t . classPrefix , e . walk ( this ) } addText ( e ) {
this . buffer += i ( e ) } openNode ( e ) { if ( ! s ( e ) ) return ; let t = e . kind
; t = e . sublanguage ? "language-" + t : ( ( e , { prefix : t } ) => { if ( e . includes ( "." ) ) {
const a = e . split ( "." )
; return [ ` ${ t } ${ a . shift ( ) } ` , ... a . map ( ( ( e , t ) => ` ${ e } ${ "_" . repeat ( t + 1 ) } ` ) ) ] . join ( " " )
} return ` ${ t } ${ e } ` } ) ( t , { prefix : this . classPrefix } ) , this . span ( t ) } closeNode ( e ) {
2021-10-19 23:53:22 -07:00
s ( e ) && ( this . buffer += "</span>" ) } value ( ) { return this . buffer } span ( e ) {
this . buffer += ` <span class=" ${ e } "> ` } } class l { constructor ( ) { this . rootNode = {
children : [ ] } , this . stack = [ this . rootNode ] } get top ( ) {
return this . stack [ this . stack . length - 1 ] } get root ( ) { return this . rootNode } add ( e ) {
2022-01-15 21:29:41 -08:00
this . top . children . push ( e ) } openNode ( e ) { const t = { kind : e , children : [ ] }
; this . add ( t ) , this . stack . push ( t ) } closeNode ( ) {
2021-10-19 23:53:22 -07:00
if ( this . stack . length > 1 ) return this . stack . pop ( ) } closeAllNodes ( ) {
for ( ; this . closeNode ( ) ; ) ; } toJSON ( ) { return JSON . stringify ( this . rootNode , null , 4 ) }
2022-01-15 21:29:41 -08:00
walk ( e ) { return this . constructor . _walk ( e , this . rootNode ) } static _walk ( e , t ) {
return "string" == typeof t ? e . addText ( t ) : t . children && ( e . openNode ( t ) ,
t . children . forEach ( ( t => this . _walk ( e , t ) ) ) , e . closeNode ( t ) ) , e } static _collapse ( e ) {
2021-10-19 23:53:22 -07:00
"string" != typeof e && e . children && ( e . children . every ( ( e => "string" == typeof e ) ) ? e . children = [ e . children . join ( "" ) ] : e . children . forEach ( ( e => {
2022-01-15 21:29:41 -08:00
l . _collapse ( e ) } ) ) ) } } class _ extends l { constructor ( e ) { super ( ) , this . options = e }
addKeyword ( e , t ) { "" !== e && ( this . openNode ( t ) , this . addText ( e ) , this . closeNode ( ) ) }
addText ( e ) { "" !== e && this . add ( e ) } addSublanguage ( e , t ) { const a = e . root
; a . kind = t , a . sublanguage = ! 0 , this . add ( a ) } toHTML ( ) {
return new o ( this , this . options ) . value ( ) } finalize ( ) { return ! 0 } } function c ( e ) {
return RegExp ( e . replace ( /[-/\\^$*+?.()|[\]{}]/g , "\\$&" ) , "m" ) } function d ( e ) {
return e ? "string" == typeof e ? e : e . source : null } function m ( e ) { return E ( "(?=" , e , ")" ) }
function p ( e ) { return E ( "(?:" , e , ")*" ) } function u ( e ) { return E ( "(?:" , e , ")?" ) }
function E ( ... e ) { return e . map ( ( e => d ( e ) ) ) . join ( "" ) } function S ( ... e ) { const t = ( e => {
const t = e [ e . length - 1 ]
; return "object" == typeof t && t . constructor === Object ? ( e . splice ( e . length - 1 , 1 ) , t ) : { }
} ) ( e ) ; return "(" + ( t . capture ? "" : "?:" ) + e . map ( ( e => d ( e ) ) ) . join ( "|" ) + ")" }
function g ( e ) { return RegExp ( e . toString ( ) + "|" ) . exec ( "" ) . length - 1 }
const T = /\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./
; function b ( e , { joinWith : t } ) { let a = 0 ; return e . map ( ( e => { a += 1 ; const t = a
; let n = d ( e ) , i = "" ; for ( ; n . length > 0 ; ) { const e = T . exec ( n ) ; if ( ! e ) { i += n ; break }
i += n . substring ( 0 , e . index ) ,
n = n . substring ( e . index + e [ 0 ] . length ) , "\\" === e [ 0 ] [ 0 ] && e [ 1 ] ? i += "\\" + ( Number ( e [ 1 ] ) + t ) : ( i += e [ 0 ] ,
"(" === e [ 0 ] && a ++ ) } return i } ) ) . map ( ( e => ` ( ${ e } ) ` ) ) . join ( t ) }
const C = "[a-zA-Z]\\w*" , R = "[a-zA-Z_]\\w*" , N = "\\b\\d+(\\.\\d+)?" , O = "(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)" , f = "\\b(0b[01]+)" , I = {
begin : "\\\\[\\s\\S]" , relevance : 0 } , h = { scope : "string" , begin : "'" , end : "'" ,
illegal : "\\n" , contains : [ I ] } , A = { scope : "string" , begin : '"' , end : '"' , illegal : "\\n" ,
contains : [ I ] } , v = ( e , t , a = { } ) => { const n = r ( { scope : "comment" , begin : e , end : t ,
contains : [ ] } , a ) ; n . contains . push ( { scope : "doctag" ,
2021-10-19 23:53:22 -07:00
begin : "[ ]*(?=(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):)" ,
end : /(TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):/ , excludeBegin : ! 0 , relevance : 0 } )
2022-01-15 21:29:41 -08:00
; const i = S ( "I" , "a" , "is" , "so" , "us" , "to" , "at" , "if" , "in" , "it" , "on" , /[A-Za-z]+['](d|ve|re|ll|t|s|n)/ , /[A-Za-z]+[-][a-z]+/ , /[A-Za-z][a-z]{2,}/ )
; return n . contains . push ( { begin : E ( /[ ]+/ , "(" , i , /[.]?[:]?([.][ ]|[ ])/ , "){3}" ) } ) , n
} , y = v ( "//" , "$" ) , D = v ( "/\\*" , "\\*/" ) , M = v ( "#" , "$" ) ; var L = Object . freeze ( {
_ _proto _ _ : null , MATCH _NOTHING _RE : /\b\B/ , IDENT _RE : C , UNDERSCORE _IDENT _RE : R ,
NUMBER _RE : N , C _NUMBER _RE : O , BINARY _NUMBER _RE : f ,
2021-10-19 23:53:22 -07:00
RE _STARTERS _RE : "!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~" ,
2022-01-15 21:29:41 -08:00
SHEBANG : ( e = { } ) => { const t = /^#![ ]*\//
; return e . binary && ( e . begin = E ( t , /.*\b/ , e . binary , /\b.*/ ) ) , r ( { scope : "meta" , begin : t ,
end : /$/ , relevance : 0 , "on:begin" : ( e , t ) => { 0 !== e . index && t . ignoreMatch ( ) } } , e ) } ,
BACKSLASH _ESCAPE : I , APOS _STRING _MODE : h , QUOTE _STRING _MODE : A , PHRASAL _WORDS _MODE : {
2021-10-19 23:53:22 -07:00
begin : /\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/
2022-01-15 21:29:41 -08:00
} , COMMENT : v , C _LINE _COMMENT _MODE : y , C _BLOCK _COMMENT _MODE : D , HASH _COMMENT _MODE : M ,
2021-10-19 23:53:22 -07:00
NUMBER _MODE : { scope : "number" , begin : N , relevance : 0 } , C _NUMBER _MODE : { scope : "number" ,
2022-01-15 21:29:41 -08:00
begin : O , relevance : 0 } , BINARY _NUMBER _MODE : { scope : "number" , begin : f , relevance : 0 } ,
2021-10-19 23:53:22 -07:00
REGEXP _MODE : { begin : /(?=\/[^/\n]*\/)/ , contains : [ { scope : "regexp" , begin : /\// ,
2022-01-15 21:29:41 -08:00
end : /\/[gimuy]*/ , illegal : /\n/ , contains : [ I , { begin : /\[/ , end : /\]/ , relevance : 0 ,
contains : [ I ] } ] } ] } , TITLE _MODE : { scope : "title" , begin : C , relevance : 0 } ,
UNDERSCORE _TITLE _MODE : { scope : "title" , begin : R , relevance : 0 } , METHOD _GUARD : {
2021-10-19 23:53:22 -07:00
begin : "\\.\\s*[a-zA-Z_]\\w*" , relevance : 0 } , END _SAME _AS _BEGIN : e => Object . assign ( e , {
2022-01-15 21:29:41 -08:00
"on:begin" : ( e , t ) => { t . data . _beginMatch = e [ 1 ] } , "on:end" : ( e , t ) => {
t . data . _beginMatch !== e [ 1 ] && t . ignoreMatch ( ) } } ) } ) ; function x ( e , t ) {
"." === e . input [ e . index - 1 ] && t . ignoreMatch ( ) } function w ( e , t ) {
void 0 !== e . className && ( e . scope = e . className , delete e . className ) } function P ( e , t ) {
t && e . beginKeywords && ( e . begin = "\\b(" + e . beginKeywords . split ( " " ) . join ( "|" ) + ")(?!\\.)(?=\\b|\\s)" ,
e . _ _beforeBegin = x , e . keywords = e . keywords || e . beginKeywords , delete e . beginKeywords ,
void 0 === e . relevance && ( e . relevance = 0 ) ) } function k ( e , t ) {
Array . isArray ( e . illegal ) && ( e . illegal = S ( ... e . illegal ) ) } function U ( e , t ) {
2021-10-19 23:53:22 -07:00
if ( e . match ) {
if ( e . begin || e . end ) throw Error ( "begin & end are not supported with match" )
2022-01-15 21:29:41 -08:00
; e . begin = e . match , delete e . match } } function F ( e , t ) {
void 0 === e . relevance && ( e . relevance = 1 ) } const B = ( e , t ) => { if ( ! e . beforeMatch ) return
2021-10-19 23:53:22 -07:00
; if ( e . starts ) throw Error ( "beforeMatch cannot be used with starts" )
2022-01-15 21:29:41 -08:00
; const a = Object . assign ( { } , e ) ; Object . keys ( e ) . forEach ( ( t => { delete e [ t ]
} ) ) , e . keywords = a . keywords , e . begin = E ( a . beforeMatch , m ( a . begin ) ) , e . starts = {
relevance : 0 , contains : [ Object . assign ( a , { endsParent : ! 0 } ) ]
} , e . relevance = 0 , delete a . beforeMatch
} , G = [ "of" , "and" , "for" , "in" , "not" , "or" , "if" , "then" , "parent" , "list" , "value" ]
; function Y ( e , t , a = "keyword" ) { const n = Object . create ( null )
; return "string" == typeof e ? i ( a , e . split ( " " ) ) : Array . isArray ( e ) ? i ( a , e ) : Object . keys ( e ) . forEach ( ( a => {
Object . assign ( n , Y ( e [ a ] , t , a ) ) } ) ) , n ; function i ( e , a ) {
t && ( a = a . map ( ( e => e . toLowerCase ( ) ) ) ) , a . forEach ( ( t => { const a = t . split ( "|" )
; n [ a [ 0 ] ] = [ e , H ( a [ 0 ] , a [ 1 ] ) ] } ) ) } } function H ( e , t ) {
return t ? Number ( t ) : ( e => G . includes ( e . toLowerCase ( ) ) ) ( e ) ? 0 : 1 } const V = { } , q = e => {
console . error ( e ) } , z = ( e , ... t ) => { console . log ( "WARN: " + e , ... t ) } , $ = ( e , t ) => {
V [ ` ${ e } / ${ t } ` ] || ( console . log ( ` Deprecated as of ${ e } . ${ t } ` ) , V [ ` ${ e } / ${ t } ` ] = ! 0 )
} , W = Error ( ) ; function Q ( e , t , { key : a } ) { let n = 0 ; const i = e [ a ] , r = { } , s = { }
; for ( let e = 1 ; e <= t . length ; e ++ ) s [ e + n ] = i [ e ] , r [ e + n ] = ! 0 , n += g ( t [ e - 1 ] )
; e [ a ] = s , e [ a ] . _emit = r , e [ a ] . _multi = ! 0 } function K ( e ) { ( e => {
2021-10-19 23:53:22 -07:00
e . scope && "object" == typeof e . scope && null !== e . scope && ( e . beginScope = e . scope ,
delete e . scope ) } ) ( e ) , "string" == typeof e . beginScope && ( e . beginScope = {
_wrap : e . beginScope } ) , "string" == typeof e . endScope && ( e . endScope = { _wrap : e . endScope
} ) , ( e => { if ( Array . isArray ( e . begin ) ) {
2022-01-15 21:29:41 -08:00
if ( e . skip || e . excludeBegin || e . returnBegin ) throw q ( "skip, excludeBegin, returnBegin not compatible with beginScope: {}" ) ,
W
; if ( "object" != typeof e . beginScope || null === e . beginScope ) throw q ( "beginScope must be object" ) ,
W ; Q ( e , e . begin , { key : "beginScope" } ) , e . begin = b ( e . begin , { joinWith : "" } ) } } ) ( e ) , ( e => {
2021-10-19 23:53:22 -07:00
if ( Array . isArray ( e . end ) ) {
2022-01-15 21:29:41 -08:00
if ( e . skip || e . excludeEnd || e . returnEnd ) throw q ( "skip, excludeEnd, returnEnd not compatible with endScope: {}" ) ,
W
; if ( "object" != typeof e . endScope || null === e . endScope ) throw q ( "endScope must be object" ) ,
W ; Q ( e , e . end , { key : "endScope" } ) , e . end = b ( e . end , { joinWith : "" } ) } } ) ( e ) } function j ( e ) {
function t ( t , a ) {
return RegExp ( d ( t ) , "m" + ( e . case _insensitive ? "i" : "" ) + ( e . unicodeRegex ? "u" : "" ) + ( a ? "g" : "" ) )
} class a { constructor ( ) {
2021-10-19 23:53:22 -07:00
this . matchIndexes = { } , this . regexes = [ ] , this . matchAt = 1 , this . position = 0 }
2022-01-15 21:29:41 -08:00
addRule ( e , t ) {
t . position = this . position ++ , this . matchIndexes [ this . matchAt ] = t , this . regexes . push ( [ t , e ] ) ,
this . matchAt += g ( e ) + 1 } compile ( ) { 0 === this . regexes . length && ( this . exec = ( ) => null )
; const e = this . regexes . map ( ( e => e [ 1 ] ) ) ; this . matcherRe = t ( b ( e , { joinWith : "|"
2021-10-19 23:53:22 -07:00
} ) , ! 0 ) , this . lastIndex = 0 } exec ( e ) { this . matcherRe . lastIndex = this . lastIndex
2022-01-15 21:29:41 -08:00
; const t = this . matcherRe . exec ( e ) ; if ( ! t ) return null
; const a = t . findIndex ( ( ( e , t ) => t > 0 && void 0 !== e ) ) , n = this . matchIndexes [ a ]
; return t . splice ( 0 , a ) , Object . assign ( t , n ) } } class n { constructor ( ) {
2021-10-19 23:53:22 -07:00
this . rules = [ ] , this . multiRegexes = [ ] ,
this . count = 0 , this . lastIndex = 0 , this . regexIndex = 0 } getMatcher ( e ) {
2022-01-15 21:29:41 -08:00
if ( this . multiRegexes [ e ] ) return this . multiRegexes [ e ] ; const t = new a
; return this . rules . slice ( e ) . forEach ( ( ( [ e , a ] ) => t . addRule ( e , a ) ) ) ,
t . compile ( ) , this . multiRegexes [ e ] = t , t } resumingScanAtSamePosition ( ) {
return 0 !== this . regexIndex } considerAll ( ) { this . regexIndex = 0 } addRule ( e , t ) {
this . rules . push ( [ e , t ] ) , "begin" === t . type && this . count ++ } exec ( e ) {
const t = this . getMatcher ( this . regexIndex ) ; t . lastIndex = this . lastIndex
; let a = t . exec ( e )
; if ( this . resumingScanAtSamePosition ( ) ) if ( a && a . index === this . lastIndex ) ; else {
const t = this . getMatcher ( 0 ) ; t . lastIndex = this . lastIndex + 1 , a = t . exec ( e ) }
return a && ( this . regexIndex += a . position + 1 ,
this . regexIndex === this . count && this . considerAll ( ) ) , a } }
2021-10-19 23:53:22 -07:00
if ( e . compilerExtensions || ( e . compilerExtensions = [ ] ) ,
e . contains && e . contains . includes ( "self" ) ) throw Error ( "ERR: contains `self` is not supported at the top-level of a language. See documentation." )
2022-01-15 21:29:41 -08:00
; return e . classNameAliases = r ( e . classNameAliases || { } ) , function a ( i , s ) { const o = i
2021-10-19 23:53:22 -07:00
; if ( i . isCompiled ) return o
2022-01-15 21:29:41 -08:00
; [ w , U , K , B ] . forEach ( ( e => e ( i , s ) ) ) , e . compilerExtensions . forEach ( ( e => e ( i , s ) ) ) ,
i . _ _beforeBegin = null , [ P , k , F ] . forEach ( ( e => e ( i , s ) ) ) , i . isCompiled = ! 0 ; let l = null
2021-10-19 23:53:22 -07:00
; return "object" == typeof i . keywords && i . keywords . $pattern && ( i . keywords = Object . assign ( { } , i . keywords ) ,
l = i . keywords . $pattern ,
2022-01-15 21:29:41 -08:00
delete i . keywords . $pattern ) , l = l || /\w+/ , i . keywords && ( i . keywords = Y ( i . keywords , e . case _insensitive ) ) ,
o . keywordPatternRe = t ( l , ! 0 ) ,
s && ( i . begin || ( i . begin = /\B|\b/ ) , o . beginRe = t ( o . begin ) , i . end || i . endsWithParent || ( i . end = /\B|\b/ ) ,
i . end && ( o . endRe = t ( o . end ) ) ,
2021-10-19 23:53:22 -07:00
o . terminatorEnd = d ( o . end ) || "" , i . endsWithParent && s . terminatorEnd && ( o . terminatorEnd += ( i . end ? "|" : "" ) + s . terminatorEnd ) ) ,
2022-01-15 21:29:41 -08:00
i . illegal && ( o . illegalRe = t ( i . illegal ) ) ,
i . contains || ( i . contains = [ ] ) , i . contains = [ ] . concat ( ... i . contains . map ( ( e => ( e => ( e . variants && ! e . cachedVariants && ( e . cachedVariants = e . variants . map ( ( t => r ( e , {
variants : null } , t ) ) ) ) , e . cachedVariants ? e . cachedVariants : X ( e ) ? r ( e , {
2021-10-19 23:53:22 -07:00
starts : e . starts ? r ( e . starts ) : null
2022-01-15 21:29:41 -08:00
} ) : Object . isFrozen ( e ) ? r ( e ) : e ) ) ( "self" === e ? i : e ) ) ) ) , i . contains . forEach ( ( e => { a ( e , o )
} ) ) , i . starts && a ( i . starts , s ) , o . matcher = ( e => { const t = new n
; return e . contains . forEach ( ( e => t . addRule ( e . begin , { rule : e , type : "begin"
} ) ) ) , e . terminatorEnd && t . addRule ( e . terminatorEnd , { type : "end"
} ) , e . illegal && t . addRule ( e . illegal , { type : "illegal" } ) , t } ) ( o ) , o } ( e ) } function X ( e ) {
return ! ! e && ( e . endsWithParent || X ( e . starts ) ) } class Z extends Error {
constructor ( e , t ) { super ( e ) , this . name = "HTMLInjectionError" , this . html = t } }
const J = i , ee = r , te = Symbol ( "nomatch" ) ; var ae = ( e => {
const t = Object . create ( null ) , i = Object . create ( null ) , r = [ ] ; let s = ! 0
2021-10-19 23:53:22 -07:00
; const o = "Could not find the language '{}', did you forget to load/include a language module?" , l = {
2022-01-15 21:29:41 -08:00
disableAutodetect : ! 0 , name : "Plain text" , contains : [ ] } ; let c = {
2021-10-19 23:53:22 -07:00
ignoreUnescapedHTML : ! 1 , throwUnescapedHTML : ! 1 , noHighlightRe : /^(no-?highlight)$/i ,
languageDetectRe : /\blang(?:uage)?-([\w-]+)\b/i , classPrefix : "hljs-" ,
2022-01-15 21:29:41 -08:00
cssSelector : "pre code" , languages : null , _ _emitter : _ } ; function d ( e ) {
return c . noHighlightRe . test ( e ) } function g ( e , t , a ) { let n = "" , i = ""
; "object" == typeof t ? ( n = e ,
a = t . ignoreIllegals , i = t . language ) : ( $ ( "10.7.0" , "highlight(lang, code, ...args) has been deprecated." ) ,
$ ( "10.7.0" , "Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277" ) ,
i = e , n = t ) , void 0 === a && ( a = ! 0 ) ; const r = { code : n , language : i } ; h ( "before:highlight" , r )
; const s = r . result ? r . result : T ( r . language , r . code , a )
; return s . code = r . code , h ( "after:highlight" , s ) , s } function T ( e , a , i , r ) {
const l = Object . create ( null ) ; function _ ( ) { if ( ! I . keywords ) return void A . addText ( v )
; let e = 0 ; I . keywordPatternRe . lastIndex = 0 ; let t = I . keywordPatternRe . exec ( v ) , a = ""
; for ( ; t ; ) { a += v . substring ( e , t . index )
; const i = R . case _insensitive ? t [ 0 ] . toLowerCase ( ) : t [ 0 ] , r = ( n = i , I . keywords [ n ] ) ; if ( r ) {
const [ e , n ] = r
; if ( A . addText ( a ) , a = "" , l [ i ] = ( l [ i ] || 0 ) + 1 , l [ i ] <= 7 && ( y += n ) , e . startsWith ( "_" ) ) a += t [ 0 ] ; else {
const a = R . classNameAliases [ e ] || e ; A . addKeyword ( t [ 0 ] , a ) } } else a += t [ 0 ]
; e = I . keywordPatternRe . lastIndex , t = I . keywordPatternRe . exec ( v ) } var n
; a += v . substr ( e ) , A . addText ( a ) } function d ( ) { null != I . subLanguage ? ( ( ) => {
if ( "" === v ) return ; let e = null ; if ( "string" == typeof I . subLanguage ) {
if ( ! t [ I . subLanguage ] ) return void A . addText ( v )
; e = T ( I . subLanguage , v , ! 0 , h [ I . subLanguage ] ) , h [ I . subLanguage ] = e . _top
} else e = b ( v , I . subLanguage . length ? I . subLanguage : null )
; I . relevance > 0 && ( y += e . relevance ) , A . addSublanguage ( e . _emitter , e . language )
} ) ( ) : _ ( ) , v = "" } function m ( e , t ) { let a = 1 ; for ( ; void 0 !== t [ a ] ; ) { if ( ! e . _emit [ a ] ) { a ++
; continue } const n = R . classNameAliases [ e [ a ] ] || e [ a ] , i = t [ a ]
; n ? A . addKeyword ( i , n ) : ( v = i , _ ( ) , v = "" ) , a ++ } } function p ( e , t ) {
return e . scope && "string" == typeof e . scope && A . openNode ( R . classNameAliases [ e . scope ] || e . scope ) ,
e . beginScope && ( e . beginScope . _wrap ? ( A . addKeyword ( v , R . classNameAliases [ e . beginScope . _wrap ] || e . beginScope . _wrap ) ,
v = "" ) : e . beginScope . _multi && ( m ( e . beginScope , t ) , v = "" ) ) , I = Object . create ( e , { parent : {
value : I } } ) , I } function u ( e , t , a ) { let i = ( ( e , t ) => { const a = e && e . exec ( t )
; return a && 0 === a . index } ) ( e . endRe , a ) ; if ( i ) { if ( e [ "on:end" ] ) { const a = new n ( e )
; e [ "on:end" ] ( t , a ) , a . isMatchIgnored && ( i = ! 1 ) } if ( i ) {
2021-10-19 23:53:22 -07:00
for ( ; e . endsParent && e . parent ; ) e = e . parent ; return e } }
2022-01-15 21:29:41 -08:00
if ( e . endsWithParent ) return u ( e . parent , t , a ) } function E ( e ) {
return 0 === I . matcher . regexIndex ? ( v += e [ 0 ] , 1 ) : ( L = ! 0 , 0 ) } function S ( e ) {
const t = e [ 0 ] , n = a . substr ( e . index ) , i = u ( I , e , n ) ; if ( ! i ) return te ; const r = I
; I . endScope && I . endScope . _wrap ? ( d ( ) ,
A . addKeyword ( t , I . endScope . _wrap ) ) : I . endScope && I . endScope . _multi ? ( d ( ) ,
m ( I . endScope , e ) ) : r . skip ? v += t : ( r . returnEnd || r . excludeEnd || ( v += t ) ,
d ( ) , r . excludeEnd && ( v = t ) ) ; do {
I . scope && A . closeNode ( ) , I . skip || I . subLanguage || ( y += I . relevance ) , I = I . parent
} while ( I !== i . parent ) ; return i . starts && p ( i . starts , e ) , r . returnEnd ? 0 : t . length }
let g = { } ; function C ( t , r ) { const o = r && r [ 0 ] ; if ( v += t , null == o ) return d ( ) , 0
; if ( "begin" === g . type && "end" === r . type && g . index === r . index && "" === o ) {
if ( v += a . slice ( r . index , r . index + 1 ) , ! s ) { const t = Error ( ` 0 width match regex ( ${ e } ) ` )
; throw t . languageName = e , t . badRule = g . rule , t } return 1 }
if ( g = r , "begin" === r . type ) return ( e => {
const t = e [ 0 ] , a = e . rule , i = new n ( a ) , r = [ a . _ _beforeBegin , a [ "on:begin" ] ]
; for ( const a of r ) if ( a && ( a ( e , i ) , i . isMatchIgnored ) ) return E ( t )
; return a . skip ? v += t : ( a . excludeBegin && ( v += t ) ,
d ( ) , a . returnBegin || a . excludeBegin || ( v = t ) ) , p ( a , e ) , a . returnBegin ? 0 : t . length } ) ( r )
2021-10-19 23:53:22 -07:00
; if ( "illegal" === r . type && ! i ) {
2022-01-15 21:29:41 -08:00
const e = Error ( 'Illegal lexeme "' + o + '" for mode "' + ( I . scope || "<unnamed>" ) + '"' )
; throw e . mode = I , e } if ( "end" === r . type ) { const e = S ( r ) ; if ( e !== te ) return e }
2021-10-19 23:53:22 -07:00
if ( "illegal" === r . type && "" === o ) return 1
2022-01-15 21:29:41 -08:00
; if ( M > 1e5 && M > 3 * r . index ) throw Error ( "potential infinite loop, way more iterations than matches" )
; return v += o , o . length } const R = O ( e )
; if ( ! R ) throw q ( o . replace ( "{}" , e ) ) , Error ( 'Unknown language: "' + e + '"' )
; const N = j ( R ) ; let f = "" , I = r || N ; const h = { } , A = new c . _ _emitter ( c ) ; ( ( ) => { const e = [ ]
; for ( let t = I ; t !== R ; t = t . parent ) t . scope && e . unshift ( t . scope )
; e . forEach ( ( e => A . openNode ( e ) ) ) } ) ( ) ; let v = "" , y = 0 , D = 0 , M = 0 , L = ! 1 ; try {
for ( I . matcher . considerAll ( ) ; ; ) {
M ++ , L ? L = ! 1 : I . matcher . considerAll ( ) , I . matcher . lastIndex = D
; const e = I . matcher . exec ( a ) ; if ( ! e ) break ; const t = C ( a . substring ( D , e . index ) , e )
; D = e . index + t } return C ( a . substr ( D ) ) , A . closeAllNodes ( ) , A . finalize ( ) , f = A . toHTML ( ) , {
language : e , value : f , relevance : y , illegal : ! 1 , _emitter : A , _top : I } } catch ( t ) {
if ( t . message && t . message . includes ( "Illegal" ) ) return { language : e , value : J ( a ) ,
illegal : ! 0 , relevance : 0 , _illegalBy : { message : t . message , index : D ,
context : a . slice ( D - 100 , D + 100 ) , mode : t . mode , resultSoFar : f } , _emitter : A } ; if ( s ) return {
language : e , value : J ( a ) , illegal : ! 1 , relevance : 0 , errorRaised : t , _emitter : A , _top : I }
; throw t } } function b ( e , a ) { a = a || c . languages || Object . keys ( t ) ; const n = ( e => {
const t = { value : J ( e ) , illegal : ! 1 , relevance : 0 , _top : l , _emitter : new c . _ _emitter ( c ) }
; return t . _emitter . addText ( e ) , t } ) ( e ) , i = a . filter ( O ) . filter ( I ) . map ( ( t => T ( t , e , ! 1 ) ) )
; i . unshift ( n ) ; const r = i . sort ( ( ( e , t ) => {
if ( e . relevance !== t . relevance ) return t . relevance - e . relevance
; if ( e . language && t . language ) { if ( O ( e . language ) . supersetOf === t . language ) return 1
; if ( O ( t . language ) . supersetOf === e . language ) return - 1 } return 0 } ) ) , [ s , o ] = r , _ = s
; return _ . secondBest = o , _ } function C ( e ) { let t = null ; const a = ( e => {
let t = e . className + " " ; t += e . parentNode ? e . parentNode . className : ""
; const a = c . languageDetectRe . exec ( t ) ; if ( a ) { const t = O ( a [ 1 ] )
; return t || ( z ( o . replace ( "{}" , a [ 1 ] ) ) ,
z ( "Falling back to no-highlight mode for this block." , e ) ) , t ? a [ 1 ] : "no-highlight" }
return t . split ( /\s+/ ) . find ( ( e => d ( e ) || O ( e ) ) ) } ) ( e ) ; if ( d ( a ) ) return
; if ( h ( "before:highlightElement" , { el : e , language : a
} ) , e . children . length > 0 && ( c . ignoreUnescapedHTML || ( console . warn ( "One of your code blocks includes unescaped HTML. This is a potentially serious security risk." ) ,
console . warn ( "https://github.com/highlightjs/highlight.js/wiki/security" ) ,
console . warn ( "The element with unescaped HTML:" ) ,
console . warn ( e ) ) , c . throwUnescapedHTML ) ) throw new Z ( "One of your code blocks includes unescaped HTML." , e . innerHTML )
; t = e ; const n = t . textContent , r = a ? g ( n , { language : a , ignoreIllegals : ! 0 } ) : b ( n )
; e . innerHTML = r . value , ( ( e , t , a ) => { const n = t && i [ t ] || a
; e . classList . add ( "hljs" ) , e . classList . add ( "language-" + n )
} ) ( e , a , r . language ) , e . result = { language : r . language , re : r . relevance ,
2021-10-19 23:53:22 -07:00
relevance : r . relevance } , r . secondBest && ( e . secondBest = {
language : r . secondBest . language , relevance : r . secondBest . relevance
2022-01-15 21:29:41 -08:00
} ) , h ( "after:highlightElement" , { el : e , result : r , text : n } ) } let R = ! 1 ; function N ( ) {
"loading" !== document . readyState ? document . querySelectorAll ( c . cssSelector ) . forEach ( C ) : R = ! 0
} function O ( e ) { return e = ( e || "" ) . toLowerCase ( ) , t [ e ] || t [ i [ e ] ] }
function f ( e , { languageName : t } ) { "string" == typeof e && ( e = [ e ] ) , e . forEach ( ( e => {
i [ e . toLowerCase ( ) ] = t } ) ) } function I ( e ) { const t = O ( e )
; return t && ! t . disableAutodetect } function h ( e , t ) { const a = e ; r . forEach ( ( e => {
e [ a ] && e [ a ] ( t ) } ) ) }
2021-10-19 23:53:22 -07:00
"undefined" != typeof window && window . addEventListener && window . addEventListener ( "DOMContentLoaded" , ( ( ) => {
2022-01-15 21:29:41 -08:00
R && N ( ) } ) , ! 1 ) , Object . assign ( e , { highlight : g , highlightAuto : b , highlightAll : N ,
highlightElement : C ,
highlightBlock : e => ( $ ( "10.7.0" , "highlightBlock will be removed entirely in v12.0" ) ,
$ ( "10.7.0" , "Please use highlightElement now." ) , C ( e ) ) , configure : e => { c = ee ( c , e ) } ,
2021-10-19 23:53:22 -07:00
initHighlighting : ( ) => {
2022-01-15 21:29:41 -08:00
N ( ) , $ ( "10.6.0" , "initHighlighting() deprecated. Use highlightAll() now." ) } ,
2021-10-19 23:53:22 -07:00
initHighlightingOnLoad : ( ) => {
2022-01-15 21:29:41 -08:00
N ( ) , $ ( "10.6.0" , "initHighlightingOnLoad() deprecated. Use highlightAll() now." )
} , registerLanguage : ( a , n ) => { let i = null ; try { i = n ( e ) } catch ( e ) {
if ( q ( "Language definition for '{}' could not be registered." . replace ( "{}" , a ) ) ,
! s ) throw e ; q ( e ) , i = l }
i . name || ( i . name = a ) , t [ a ] = i , i . rawDefinition = n . bind ( null , e ) , i . aliases && f ( i . aliases , {
languageName : a } ) } , unregisterLanguage : e => { delete t [ e ]
; for ( const t of Object . keys ( i ) ) i [ t ] === e && delete i [ t ] } ,
listLanguages : ( ) => Object . keys ( t ) , getLanguage : O , registerAliases : f ,
autoDetection : I , inherit : ee , addPlugin : e => { ( e => {
e [ "before:highlightBlock" ] && ! e [ "before:highlightElement" ] && ( e [ "before:highlightElement" ] = t => {
e [ "before:highlightBlock" ] ( Object . assign ( { block : t . el } , t ) )
} ) , e [ "after:highlightBlock" ] && ! e [ "after:highlightElement" ] && ( e [ "after:highlightElement" ] = t => {
e [ "after:highlightBlock" ] ( Object . assign ( { block : t . el } , t ) ) } ) } ) ( e ) , r . push ( e ) }
2021-10-19 23:53:22 -07:00
} ) , e . debugMode = ( ) => { s = ! 1 } , e . safeMode = ( ) => { s = ! 0
2022-01-15 21:29:41 -08:00
} , e . versionString = "11.4.0" , e . regex = { concat : E , lookahead : m , either : S , optional : u ,
anyNumberOfTimes : p } ; for ( const e in L ) "object" == typeof L [ e ] && a ( L [ e ] )
; return Object . assign ( e , L ) , e } ) ( { } ) ; function ne ( e ) {
const t = e . regex , a = e . COMMENT ( "//" , "$" , { contains : [ { begin : /\\\n/ } ]
} ) , n = "[a-zA-Z_]\\w*::" , i = "(?!struct)(decltype\\(auto\\)|" + t . optional ( n ) + "[a-zA-Z_]\\w*" + t . optional ( "<[^<>]+>" ) + ")" , r = {
className : "type" , begin : "\\b[a-z\\d_]*_t\\b" } , s = { className : "string" , variants : [ {
begin : '(u8?|U|L)?"' , end : '"' , illegal : "\\n" , contains : [ e . BACKSLASH _ESCAPE ] } , {
begin : "(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)" ,
end : "'" , illegal : "." } , e . END _SAME _AS _BEGIN ( {
begin : /(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/ , end : /\)([^()\\ ]{0,16})"/ } ) ] } , o = {
className : "number" , variants : [ { begin : "\\b(0b[01']+)" } , {
begin : "(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
} , {
begin : "(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
} ] , relevance : 0 } , l = { className : "meta" , begin : /#\s*[a-z]+\b/ , end : /$/ , keywords : {
keyword : "if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
} , contains : [ { begin : /\\\n/ , relevance : 0 } , e . inherit ( s , { className : "string" } ) , {
className : "string" , begin : /<.*?>/ } , a , e . C _BLOCK _COMMENT _MODE ] } , _ = {
className : "title" , begin : t . optional ( n ) + e . IDENT _RE , relevance : 0
} , c = t . optional ( n ) + e . IDENT _RE + "\\s*\\(" , d = {
type : [ "bool" , "char" , "char16_t" , "char32_t" , "char8_t" , "double" , "float" , "int" , "long" , "short" , "void" , "wchar_t" , "unsigned" , "signed" , "const" , "static" ] ,
keyword : [ "alignas" , "alignof" , "and" , "and_eq" , "asm" , "atomic_cancel" , "atomic_commit" , "atomic_noexcept" , "auto" , "bitand" , "bitor" , "break" , "case" , "catch" , "class" , "co_await" , "co_return" , "co_yield" , "compl" , "concept" , "const_cast|10" , "consteval" , "constexpr" , "constinit" , "continue" , "decltype" , "default" , "delete" , "do" , "dynamic_cast|10" , "else" , "enum" , "explicit" , "export" , "extern" , "false" , "final" , "for" , "friend" , "goto" , "if" , "import" , "inline" , "module" , "mutable" , "namespace" , "new" , "noexcept" , "not" , "not_eq" , "nullptr" , "operator" , "or" , "or_eq" , "override" , "private" , "protected" , "public" , "reflexpr" , "register" , "reinterpret_cast|10" , "requires" , "return" , "sizeof" , "static_assert" , "static_cast|10" , "struct" , "switch" , "synchronized" , "template" , "this" , "thread_local" , "throw" , "transaction_safe" , "transaction_safe_dynamic" , "true" , "try" , "typedef" , "typeid" , "typename" , "union" , "using" , "virtual" , "volatile" , "while" , "xor" , "xor_eq" ] ,
literal : [ "NULL" , "false" , "nullopt" , "nullptr" , "true" ] , built _in : [ "_Pragma" ] ,
_type _hints : [ "any" , "auto_ptr" , "barrier" , "binary_semaphore" , "bitset" , "complex" , "condition_variable" , "condition_variable_any" , "counting_semaphore" , "deque" , "false_type" , "future" , "imaginary" , "initializer_list" , "istringstream" , "jthread" , "latch" , "lock_guard" , "multimap" , "multiset" , "mutex" , "optional" , "ostringstream" , "packaged_task" , "pair" , "promise" , "priority_queue" , "queue" , "recursive_mutex" , "recursive_timed_mutex" , "scoped_lock" , "set" , "shared_future" , "shared_lock" , "shared_mutex" , "shared_timed_mutex" , "shared_ptr" , "stack" , "string_view" , "stringstream" , "timed_mutex" , "thread" , "true_type" , "tuple" , "unique_lock" , "unique_ptr" , "unordered_map" , "unordered_multimap" , "unordered_multiset" , "unordered_set" , "variant" , "vector" , "weak_ptr" , "wstring" , "wstring_view" ]
} , m = { className : "function.dispatch" , relevance : 0 , keywords : {
_hint : [ "abort" , "abs" , "acos" , "apply" , "as_const" , "asin" , "atan" , "atan2" , "calloc" , "ceil" , "cerr" , "cin" , "clog" , "cos" , "cosh" , "cout" , "declval" , "endl" , "exchange" , "exit" , "exp" , "fabs" , "floor" , "fmod" , "forward" , "fprintf" , "fputs" , "free" , "frexp" , "fscanf" , "future" , "invoke" , "isalnum" , "isalpha" , "iscntrl" , "isdigit" , "isgraph" , "islower" , "isprint" , "ispunct" , "isspace" , "isupper" , "isxdigit" , "labs" , "launder" , "ldexp" , "log" , "log10" , "make_pair" , "make_shared" , "make_shared_for_overwrite" , "make_tuple" , "make_unique" , "malloc" , "memchr" , "memcmp" , "memcpy" , "memset" , "modf" , "move" , "pow" , "printf" , "putchar" , "puts" , "realloc" , "scanf" , "sin" , "sinh" , "snprintf" , "sprintf" , "sqrt" , "sscanf" , "std" , "stderr" , "stdin" , "stdout" , "strcat" , "strchr" , "strcmp" , "strcpy" , "strcspn" , "strlen" , "strncat" , "strncmp" , "strncpy" , "strpbrk" , "strrchr" , "strspn" , "strstr" , "swap" , "tan" , "tanh" , "terminate" , "to_underlying" , "tolower" , "toupper" , "vfprintf" , "visit" , "vprintf" , "vsprintf" ]
} ,
begin : t . concat ( /\b/ , /(?!decltype)/ , /(?!if)/ , /(?!for)/ , /(?!switch)/ , /(?!while)/ , e . IDENT _RE , t . lookahead ( /(<[^<>]+>|)\s*\(/ ) )
} , p = [ m , l , r , a , e . C _BLOCK _COMMENT _MODE , o , s ] , u = { variants : [ { begin : /=/ , end : /;/ } , {
begin : /\(/ , end : /\)/ } , { beginKeywords : "new throw return else" , end : /;/ } ] ,
keywords : d , contains : p . concat ( [ { begin : /\(/ , end : /\)/ , keywords : d ,
contains : p . concat ( [ "self" ] ) , relevance : 0 } ] ) , relevance : 0 } , E = { className : "function" ,
begin : "(" + i + "[\\*&\\s]+)+" + c , returnBegin : ! 0 , end : /[{;=]/ , excludeEnd : ! 0 ,
keywords : d , illegal : /[^\w\s\*&:<>.]/ , contains : [ { begin : "decltype\\(auto\\)" ,
keywords : d , relevance : 0 } , { begin : c , returnBegin : ! 0 , contains : [ _ ] , relevance : 0 } , {
begin : /::/ , relevance : 0 } , { begin : /:/ , endsWithParent : ! 0 , contains : [ s , o ] } , {
relevance : 0 , match : /,/ } , { className : "params" , begin : /\(/ , end : /\)/ , keywords : d ,
relevance : 0 , contains : [ a , e . C _BLOCK _COMMENT _MODE , s , o , r , { begin : /\(/ , end : /\)/ ,
keywords : d , relevance : 0 , contains : [ "self" , a , e . C _BLOCK _COMMENT _MODE , s , o , r ] } ]
} , r , a , e . C _BLOCK _COMMENT _MODE , l ] } ; return { name : "C++" ,
aliases : [ "cc" , "c++" , "h++" , "hpp" , "hh" , "hxx" , "cxx" ] , keywords : d , illegal : "</" ,
classNameAliases : { "function.dispatch" : "built_in" } ,
contains : [ ] . concat ( u , E , m , p , [ l , {
begin : "\\b(deque|list|queue|priority_queue|pair|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array|tuple|optional|variant|function)\\s*<(?!<)" ,
end : ">" , keywords : d , contains : [ "self" , r ] } , { begin : e . IDENT _RE + "::" , keywords : d } , {
match : [ /\b(?:enum(?:\s+(?:class|struct))?|class|struct|union)/ , /\s+/ , /\w+/ ] ,
className : { 1 : "keyword" , 3 : "title.class" } } ] ) } }
const ie = "[A-Za-z$_][0-9A-Za-z$_]*" , re = [ "as" , "in" , "of" , "if" , "for" , "while" , "finally" , "var" , "new" , "function" , "do" , "return" , "void" , "else" , "break" , "catch" , "instanceof" , "with" , "throw" , "case" , "default" , "try" , "switch" , "continue" , "typeof" , "delete" , "let" , "yield" , "const" , "class" , "debugger" , "async" , "await" , "static" , "import" , "from" , "export" , "extends" ] , se = [ "true" , "false" , "null" , "undefined" , "NaN" , "Infinity" ] , oe = [ "Object" , "Function" , "Boolean" , "Symbol" , "Math" , "Date" , "Number" , "BigInt" , "String" , "RegExp" , "Array" , "Float32Array" , "Float64Array" , "Int8Array" , "Uint8Array" , "Uint8ClampedArray" , "Int16Array" , "Int32Array" , "Uint16Array" , "Uint32Array" , "BigInt64Array" , "BigUint64Array" , "Set" , "Map" , "WeakSet" , "WeakMap" , "ArrayBuffer" , "SharedArrayBuffer" , "Atomics" , "DataView" , "JSON" , "Promise" , "Generator" , "GeneratorFunction" , "AsyncFunction" , "Reflect" , "Proxy" , "Intl" , "WebAssembly" ] , le = [ "Error" , "EvalError" , "InternalError" , "RangeError" , "ReferenceError" , "SyntaxError" , "TypeError" , "URIError" ] , _e = [ "setInterval" , "setTimeout" , "clearInterval" , "clearTimeout" , "require" , "exports" , "eval" , "isFinite" , "isNaN" , "parseFloat" , "parseInt" , "decodeURI" , "decodeURIComponent" , "encodeURI" , "encodeURIComponent" , "escape" , "unescape" ] , ce = [ "arguments" , "this" , "super" , "console" , "window" , "document" , "localStorage" , "module" , "global" ] , de = [ ] . concat ( _e , oe , le ) , me = e => ( {
IMPORTANT : { scope : "meta" , begin : "!important" } ,
BLOCK _COMMENT : e . C _BLOCK _COMMENT _MODE , HEXCOLOR : { scope : "number" ,
begin : /#(([0-9a-fA-F]{3,4})|(([0-9a-fA-F]{2}){3,4}))\b/ } , FUNCTION _DISPATCH : {
className : "built_in" , begin : /[\w-]+(?=\()/ } , ATTRIBUTE _SELECTOR _MODE : {
scope : "selector-attr" , begin : /\[/ , end : /\]/ , illegal : "$" ,
2021-10-19 23:53:22 -07:00
contains : [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ] } , CSS _NUMBER _MODE : {
scope : "number" ,
begin : e . NUMBER _RE + "(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?" ,
relevance : 0 } , CSS _VARIABLE : { className : "attr" , begin : /--[A-Za-z][A-Za-z0-9_-]*/ }
2022-01-15 21:29:41 -08:00
} ) , pe = [ "a" , "abbr" , "address" , "article" , "aside" , "audio" , "b" , "blockquote" , "body" , "button" , "canvas" , "caption" , "cite" , "code" , "dd" , "del" , "details" , "dfn" , "div" , "dl" , "dt" , "em" , "fieldset" , "figcaption" , "figure" , "footer" , "form" , "h1" , "h2" , "h3" , "h4" , "h5" , "h6" , "header" , "hgroup" , "html" , "i" , "iframe" , "img" , "input" , "ins" , "kbd" , "label" , "legend" , "li" , "main" , "mark" , "menu" , "nav" , "object" , "ol" , "p" , "q" , "quote" , "samp" , "section" , "span" , "strong" , "summary" , "sup" , "table" , "tbody" , "td" , "textarea" , "tfoot" , "th" , "thead" , "time" , "tr" , "ul" , "var" , "video" ] , ue = [ "any-hover" , "any-pointer" , "aspect-ratio" , "color" , "color-gamut" , "color-index" , "device-aspect-ratio" , "device-height" , "device-width" , "display-mode" , "forced-colors" , "grid" , "height" , "hover" , "inverted-colors" , "monochrome" , "orientation" , "overflow-block" , "overflow-inline" , "pointer" , "prefers-color-scheme" , "prefers-contrast" , "prefers-reduced-motion" , "prefers-reduced-transparency" , "resolution" , "scan" , "scripting" , "update" , "width" , "min-width" , "max-width" , "min-height" , "max-height" ] , Ee = [ "active" , "any-link" , "blank" , "checked" , "current" , "default" , "defined" , "dir" , "disabled" , "drop" , "empty" , "enabled" , "first" , "first-child" , "first-of-type" , "fullscreen" , "future" , "focus" , "focus-visible" , "focus-within" , "has" , "host" , "host-context" , "hover" , "indeterminate" , "in-range" , "invalid" , "is" , "lang" , "last-child" , "last-of-type" , "left" , "link" , "local-link" , "not" , "nth-child" , "nth-col" , "nth-last-child" , "nth-last-col" , "nth-last-of-type" , "nth-of-type" , "only-child" , "only-of-type" , "optional" , "out-of-range" , "past" , "placeholder-shown" , "read-only" , "read-write" , "required" , "right" , "root" , "scope" , "target" , "target-within" , "user-invalid" , "valid" , "visited" , "where" ] , Se = [ "after" , "backdrop" , "before" , "cue" , "cue-region" , "first-letter" , "first-line" , "grammar-error" , "marker" , "part" , "placeholder" , "selection" , "slotted" , "spelling-error" ] , ge = [ "align-content" , "align-items" , "align-self" , "all" , "animation" , "animation-delay" , "animation-direction" , "animation-duration" , "animation-fill-mode" , "animation-iteration-count" , "animation-name" , "animation-play-state" , "animation-timing-function" , "backface-visibility" , "background" , "background-attachment" , "background-clip" , "background-color" , "background-image" , "background-origin" , "background-position" , "background-repeat" , "background-size" , "border" , "border-bottom" , "border-bottom-color" , "border-bottom-left-radius" , "border-bottom-right-radius" , "border-bottom-style" , "border-bottom-width" , "border-collapse" , "border-color" , "border-image" , "border-image-outset" , "border-image-repeat" , "border-image-slice" , "border-image-source" , "border-image-width" , "border-left" , "border-left-color" , "border-left-style" , "border-left-width" , "border-radius" , "border-right" , "border-right-color" , "border-right-style" , "border-right-width" , "border-spacing" , "border-style" , "border-top" , "border-top-color" , "border-top-left-radius" , "border-top-right-radius" , "border-top-style" , "border-top-width" , "border-width" , "bottom" , "box-decoration-break" , "box-shadow" , "box-sizing" , "break-after" , "break-before" , "break-inside" , "caption-side" , "caret-color" , "clear" , "clip" , "clip-path" , "clip-rule" , "color" , "column-count" , "column-fill" , "column-gap" , "column-rule" , "column-rule-color" , "column-rule-style" , "column-rule-width" , "column-span" , "column-width" , "columns" , "contain" , "content" , "content-visibility" , "counter-increment" , "counter-reset" , "cue" , "cue-after" , "cue-before" , "cursor" , "direction" , "display" , "empty-cells" , "filter" , "flex" , "flex-basis" , "flex-direction" , "flex-flow" , "flex-grow" , "flex-shrink" , "flex-wrap" , "float" , "flow" , "font" , "font-display" , "font-family" , "font-feature-settings" , "font-kerning" , "font-language-override" , "font-size" , "font-size-adjust" , "font-smoothing" , "font-stretch" , "font-style" , "font-synthesis" , "font-variant" , "font-variant-caps" , "font-variant-east-asian" , "font-variant-ligatures" , "font-variant-numeric" , "font-variant-position" , "font-variation-settings" , "font-weight" , "gap" , "glyph-orientation-vertical" , "grid" , "grid-area" , "grid-auto-columns" , "grid-auto-flow" , "grid-auto-rows" , "grid-column" , "grid-column-end" , "grid-column-start" , "grid-gap" , "grid-row" , "grid-row-end" , "grid-row-start" , "grid-template" , " gri
; function be ( e , t = { } ) { return t . variants = e , t }
var Ce = "\\.([0-9](_*[0-9])*)" , Re = "[0-9a-fA-F](_*[0-9a-fA-F])*" , Ne = {
2021-10-19 23:53:22 -07:00
className : "number" , variants : [ {
2022-01-15 21:29:41 -08:00
begin : ` ( \\ b([0-9](_*[0-9])*)(( ${ Ce } )| \\ .)?|( ${ Ce } ))[eE][+-]?([0-9](_*[0-9])*)[fFdD]? \\ b `
} , { begin : ` \\ b([0-9](_*[0-9])*)(( ${ Ce } )[fFdD]? \\ b| \\ .([fFdD] \\ b)?) ` } , {
begin : ` ( ${ Ce } )[fFdD]? \\ b ` } , { begin : "\\b([0-9](_*[0-9])*)[fFdD]\\b" } , {
begin : ` \\ b0[xX](( ${ Re } ) \\ .?|( ${ Re } )? \\ .( ${ Re } ))[pP][+-]?([0-9](_*[0-9])*)[fFdD]? \\ b `
} , { begin : "\\b(0|[1-9](_*[0-9])*)[lL]?\\b" } , { begin : ` \\ b0[xX]( ${ Re } )[lL]? \\ b ` } , {
2021-10-19 23:53:22 -07:00
begin : "\\b0(_*[0-7])*[lL]?\\b" } , { begin : "\\b0[bB][01](_*[01])*[lL]?\\b" } ] ,
2022-01-15 21:29:41 -08:00
relevance : 0 } ; function Oe ( e , t , a ) { return - 1 === a ? "" : e . replace ( t , ( n => Oe ( e , t , a - 1 ) ) ) }
function fe ( e ) { const t = e . regex , a = ie , n = { begin : /<[A-Za-z0-9\\._:-]+/ ,
end : /\/[A-Za-z0-9\\._:-]+>|\/>/ , isTrulyOpeningTag : ( e , t ) => {
const a = e [ 0 ] . length + e . index , n = e . input [ a ]
; if ( "<" === n || "," === n ) return void t . ignoreMatch ( ) ; let i
; ">" === n && ( ( ( e , { after : t } ) => { const a = "</" + e [ 0 ] . slice ( 1 )
; return - 1 !== e . input . indexOf ( a , t ) } ) ( e , { after : a
} ) || t . ignoreMatch ( ) ) , ( i = e . input . substr ( a ) . match ( /^\s+extends\s+/ ) ) && 0 === i . index && t . ignoreMatch ( )
} } , i = { $pattern : ie , keyword : re , literal : se , built _in : de , "variable.language" : ce
2021-10-19 23:53:22 -07:00
} , r = "\\.([0-9](_?[0-9])*)" , s = "0|[1-9](_?[0-9])*|0[0-7]*[89][0-9]*" , o = {
className : "number" , variants : [ {
begin : ` ( \\ b( ${ s } )(( ${ r } )| \\ .)?|( ${ r } ))[eE][+-]?([0-9](_?[0-9])*) \\ b ` } , {
begin : ` \\ b( ${ s } ) \\ b(( ${ r } ) \\ b| \\ .)?|( ${ r } ) \\ b ` } , {
begin : "\\b(0|[1-9](_?[0-9])*)n\\b" } , {
begin : "\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*n?\\b" } , {
begin : "\\b0[bB][0-1](_?[0-1])*n?\\b" } , { begin : "\\b0[oO][0-7](_?[0-7])*n?\\b" } , {
begin : "\\b0[0-7]+n?\\b" } ] , relevance : 0 } , l = { className : "subst" , begin : "\\$\\{" ,
2022-01-15 21:29:41 -08:00
end : "\\}" , keywords : i , contains : [ ] } , _ = { begin : "html`" , end : "" , starts : { end : "`" ,
returnEnd : ! 1 , contains : [ e . BACKSLASH _ESCAPE , l ] , subLanguage : "xml" } } , c = {
2021-10-19 23:53:22 -07:00
begin : "css`" , end : "" , starts : { end : "`" , returnEnd : ! 1 ,
2022-01-15 21:29:41 -08:00
contains : [ e . BACKSLASH _ESCAPE , l ] , subLanguage : "css" } } , d = { className : "string" ,
begin : "`" , end : "`" , contains : [ e . BACKSLASH _ESCAPE , l ] } , m = { className : "comment" ,
2021-10-19 23:53:22 -07:00
variants : [ e . COMMENT ( /\/\*\*(?!\/)/ , "\\*/" , { relevance : 0 , contains : [ {
begin : "(?=@[A-Za-z]+)" , relevance : 0 , contains : [ { className : "doctag" ,
begin : "@[A-Za-z]+" } , { className : "type" , begin : "\\{" , end : "\\}" , excludeEnd : ! 0 ,
2022-01-15 21:29:41 -08:00
excludeBegin : ! 0 , relevance : 0 } , { className : "variable" , begin : a + "(?=\\s*(-)|$)" ,
2021-10-19 23:53:22 -07:00
endsParent : ! 0 , relevance : 0 } , { begin : /(?=[^\n])\s/ , relevance : 0 } ] } ]
} ) , e . C _BLOCK _COMMENT _MODE , e . C _LINE _COMMENT _MODE ]
2022-01-15 21:29:41 -08:00
} , p = [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , _ , c , d , o ] ; l . contains = p . concat ( {
begin : /\{/ , end : /\}/ , keywords : i , contains : [ "self" ] . concat ( p ) } )
; const u = [ ] . concat ( m , l . contains ) , E = u . concat ( [ { begin : /\(/ , end : /\)/ , keywords : i ,
contains : [ "self" ] . concat ( u ) } ] ) , S = { className : "params" , begin : /\(/ , end : /\)/ ,
excludeBegin : ! 0 , excludeEnd : ! 0 , keywords : i , contains : E } , g = { variants : [ {
match : [ /class/ , /\s+/ , a , /\s+/ , /extends/ , /\s+/ , t . concat ( a , "(" , t . concat ( /\./ , a ) , ")*" ) ] ,
2021-10-19 23:53:22 -07:00
scope : { 1 : "keyword" , 3 : "title.class" , 5 : "keyword" , 7 : "title.class.inherited" } } , {
2022-01-15 21:29:41 -08:00
match : [ /class/ , /\s+/ , a ] , scope : { 1 : "keyword" , 3 : "title.class" } } ] } , T = { relevance : 0 ,
match : t . either ( /\bJSON/ , /\b[A-Z][a-z]+([A-Z][a-z]*|\d)*/ , /\b[A-Z]{2,}([A-Z][a-z]+|\d)+([A-Z][a-z]*)*/ , /\b[A-Z]{2,}[a-z]+([A-Z][a-z]+|\d)*([A-Z][a-z]*)*/ ) ,
className : "title.class" , keywords : { _ : [ ... oe , ... le ] } } , b = { variants : [ {
match : [ /function/ , /\s+/ , a , /(?=\s*\()/ ] } , { match : [ /function/ , /\s*(?=\()/ ] } ] ,
className : { 1 : "keyword" , 3 : "title.function" } , label : "func.def" , contains : [ S ] ,
illegal : /%/ } , C = {
match : t . concat ( /\b/ , ( R = [ ... _e , "super" ] , t . concat ( "(?!" , R . join ( "|" ) , ")" ) ) , a , t . lookahead ( /\(/ ) ) ,
className : "title.function" , relevance : 0 } ; var R ; const N = {
begin : t . concat ( /\./ , t . lookahead ( t . concat ( a , /(?![0-9A-Za-z$_(])/ ) ) ) , end : a ,
excludeBegin : ! 0 , keywords : "prototype" , className : "property" , relevance : 0 } , O = {
match : [ /get|set/ , /\s+/ , a , /(?=\()/ ] , className : { 1 : "keyword" , 3 : "title.function" } ,
contains : [ { begin : /\(\)/ } , S ]
} , f = "(\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)|" + e . UNDERSCORE _IDENT _RE + ")\\s*=>" , I = {
match : [ /const|var|let/ , /\s+/ , a , /\s*/ , /=\s*/ , /(async\s*)?/ , t . lookahead ( f ) ] ,
keywords : "async" , className : { 1 : "keyword" , 3 : "title.function" } , contains : [ S ] }
; return { name : "Javascript" , aliases : [ "js" , "jsx" , "mjs" , "cjs" ] , keywords : i , exports : {
PARAMS _CONTAINS : E , CLASS _REFERENCE : T } , illegal : /#(?![$_A-z])/ ,
contains : [ e . SHEBANG ( { label : "shebang" , binary : "node" , relevance : 5 } ) , {
label : "use_strict" , className : "meta" , relevance : 10 ,
2021-10-19 23:53:22 -07:00
begin : /^\s*['"]use (strict|asm)['"]/
2022-01-15 21:29:41 -08:00
} , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , _ , c , d , m , o , T , { className : "attr" ,
begin : a + t . lookahead ( ":" ) , relevance : 0 } , I , {
2021-10-19 23:53:22 -07:00
begin : "(" + e . RE _STARTERS _RE + "|\\b(case|return|throw)\\b)\\s*" ,
2022-01-15 21:29:41 -08:00
keywords : "return throw case" , relevance : 0 , contains : [ m , e . REGEXP _MODE , {
className : "function" , begin : f , returnBegin : ! 0 , end : "\\s*=>" , contains : [ {
2021-10-19 23:53:22 -07:00
className : "params" , variants : [ { begin : e . UNDERSCORE _IDENT _RE , relevance : 0 } , {
className : null , begin : /\(\s*\)/ , skip : ! 0 } , { begin : /\(/ , end : /\)/ , excludeBegin : ! 0 ,
2022-01-15 21:29:41 -08:00
excludeEnd : ! 0 , keywords : i , contains : E } ] } ] } , { begin : /,/ , relevance : 0 } , { match : /\s+/ ,
2021-10-19 23:53:22 -07:00
relevance : 0 } , { variants : [ { begin : "<>" , end : "</>" } , {
2022-01-15 21:29:41 -08:00
match : /<[A-Za-z0-9\\._:-]+\s*\/>/ } , { begin : n . begin ,
"on:begin" : n . isTrulyOpeningTag , end : n . end } ] , subLanguage : "xml" , contains : [ {
begin : n . begin , end : n . end , skip : ! 0 , contains : [ "self" ] } ] } ] } , b , {
2021-10-19 23:53:22 -07:00
beginKeywords : "while if switch catch for" } , {
begin : "\\b(?!function)" + e . UNDERSCORE _IDENT _RE + "\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{" ,
2022-01-15 21:29:41 -08:00
returnBegin : ! 0 , label : "func.def" , contains : [ S , e . inherit ( e . TITLE _MODE , { begin : a ,
className : "title.function" } ) ] } , { match : /\.\.\./ , relevance : 0 } , N , { match : "\\$" + a ,
2021-10-19 23:53:22 -07:00
relevance : 0 } , { match : [ /\bconstructor(?=\s*\()/ ] , className : { 1 : "title.function" } ,
2022-01-15 21:29:41 -08:00
contains : [ S ] } , C , { relevance : 0 , match : /\b[A-Z][A-Z_0-9]+\b/ ,
className : "variable.constant" } , g , O , { match : /\$[(.]/ } ] } }
const Ie = [ "AASTriangle" , "AbelianGroup" , "Abort" , "AbortKernels" , "AbortProtect" , "AbortScheduledTask" , "Above" , "Abs" , "AbsArg" , "AbsArgPlot" , "Absolute" , "AbsoluteCorrelation" , "AbsoluteCorrelationFunction" , "AbsoluteCurrentValue" , "AbsoluteDashing" , "AbsoluteFileName" , "AbsoluteOptions" , "AbsolutePointSize" , "AbsoluteThickness" , "AbsoluteTime" , "AbsoluteTiming" , "AcceptanceThreshold" , "AccountingForm" , "Accumulate" , "Accuracy" , "AccuracyGoal" , "ActionDelay" , "ActionMenu" , "ActionMenuBox" , "ActionMenuBoxOptions" , "Activate" , "Active" , "ActiveClassification" , "ActiveClassificationObject" , "ActiveItem" , "ActivePrediction" , "ActivePredictionObject" , "ActiveStyle" , "AcyclicGraphQ" , "AddOnHelpPath" , "AddSides" , "AddTo" , "AddToSearchIndex" , "AddUsers" , "AdjacencyGraph" , "AdjacencyList" , "AdjacencyMatrix" , "AdjacentMeshCells" , "AdjustmentBox" , "AdjustmentBoxOptions" , "AdjustTimeSeriesForecast" , "AdministrativeDivisionData" , "AffineHalfSpace" , "AffineSpace" , "AffineStateSpaceModel" , "AffineTransform" , "After" , "AggregatedEntityClass" , "AggregationLayer" , "AircraftData" , "AirportData" , "AirPressureData" , "AirTemperatureData" , "AiryAi" , "AiryAiPrime" , "AiryAiZero" , "AiryBi" , "AiryBiPrime" , "AiryBiZero" , "AlgebraicIntegerQ" , "AlgebraicNumber" , "AlgebraicNumberDenominator" , "AlgebraicNumberNorm" , "AlgebraicNumberPolynomial" , "AlgebraicNumberTrace" , "AlgebraicRules" , "AlgebraicRulesData" , "Algebraics" , "AlgebraicUnitQ" , "Alignment" , "AlignmentMarker" , "AlignmentPoint" , "All" , "AllowAdultContent" , "AllowedCloudExtraParameters" , "AllowedCloudParameterExtensions" , "AllowedDimensions" , "AllowedFrequencyRange" , "AllowedHeads" , "AllowGroupClose" , "AllowIncomplete" , "AllowInlineCells" , "AllowKernelInitialization" , "AllowLooseGrammar" , "AllowReverseGroupClose" , "AllowScriptLevelChange" , "AllowVersionUpdate" , "AllTrue" , "Alphabet" , "AlphabeticOrder" , "AlphabeticSort" , "AlphaChannel" , "AlternateImage" , "AlternatingFactorial" , "AlternatingGroup" , "AlternativeHypothesis" , "Alternatives" , "AltitudeMethod" , "AmbientLight" , "AmbiguityFunction" , "AmbiguityList" , "Analytic" , "AnatomyData" , "AnatomyForm" , "AnatomyPlot3D" , "AnatomySkinStyle" , "AnatomyStyling" , "AnchoredSearch" , "And" , "AndersonDarlingTest" , "AngerJ" , "AngleBisector" , "AngleBracket" , "AnglePath" , "AnglePath3D" , "AngleVector" , "AngularGauge" , "Animate" , "AnimationCycleOffset" , "AnimationCycleRepetitions" , "AnimationDirection" , "AnimationDisplayTime" , "AnimationRate" , "AnimationRepetitions" , "AnimationRunning" , "AnimationRunTime" , "AnimationTimeIndex" , "Animator" , "AnimatorBox" , "AnimatorBoxOptions" , "AnimatorElements" , "Annotate" , "Annotation" , "AnnotationDelete" , "AnnotationKeys" , "AnnotationRules" , "AnnotationValue" , "Annuity" , "AnnuityDue" , "Annulus" , "AnomalyDetection" , "AnomalyDetector" , "AnomalyDetectorFunction" , "Anonymous" , "Antialiasing" , "AntihermitianMatrixQ" , "Antisymmetric" , "AntisymmetricMatrixQ" , "Antonyms" , "AnyOrder" , "AnySubset" , "AnyTrue" , "Apart" , "ApartSquareFree" , "APIFunction" , "Appearance" , "AppearanceElements" , "AppearanceRules" , "AppellF1" , "Append" , "AppendCheck" , "AppendLayer" , "AppendTo" , "Apply" , "ApplySides" , "ArcCos" , "ArcCosh" , "ArcCot" , "ArcCoth" , "ArcCsc" , "ArcCsch" , "ArcCurvature" , "ARCHProcess" , "ArcLength" , "ArcSec" , "ArcSech" , "ArcSin" , "ArcSinDistribution" , "ArcSinh" , "ArcTan" , "ArcTanh" , "Area" , "Arg" , "ArgMax" , "ArgMin" , "ArgumentCountQ" , "ARIMAProcess" , "ArithmeticGeometricMean" , "ARMAProcess" , "Around" , "AroundReplace" , "ARProcess" , "Array" , "ArrayComponents" , "ArrayDepth" , "ArrayFilter" , "ArrayFlatten" , "ArrayMesh" , "ArrayPad" , "ArrayPlot" , "ArrayQ" , "ArrayResample" , "ArrayReshape" , "ArrayRules" , "Arrays" , "Arrow" , "Arrow3DBox" , "ArrowBox" , "Arrowheads" , "ASATriangle" , "Ask" , "AskAppend" , "AskConfirm" , "AskDisplay" , "AskedQ" , "AskedValue" , "AskFunction" , "AskState" , "AskTemplateDisplay" , "AspectRatio" , "AspectRatioFixed" , "Assert" , "AssociateTo" , "Association" , "AssociationFormat" , "AssociationMap" , "AssociationQ" , "AssociationThread" , "AssumeDeterministic" , "Assuming" , "Assumptions" , "AstronomicalData" , "Asymptotic" , "AsymptoticDSolveValue" , "AsymptoticEqual" , "AsymptoticEquivalent" , "AsymptoticGreater" , "AsymptoticGreaterEqual" , "AsymptoticIntegrate" , "AsymptoticLess" , "AsymptoticLessEqual" , "AsymptoticOutputTracker" , "AsymptoticProduct" , "AsymptoticRSolveValue" , "AsymptoticSolve" , " Asymp
; var qe = Object . freeze ( { _ _proto _ _ : null , grmr _1c : e => {
var t = "[A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_][A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_0-9]+" , a = "\u0434\u0430\u043b\u0435\u0435 \u0432\u043e\u0437\u0432\u0440\u0430\u0442 \u0432\u044b\u0437\u0432\u0430\u0442\u044c\u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0434\u043b\u044f \u0435\u0441\u043b\u0438 \u0438 \u0438\u0437 \u0438\u043b\u0438 \u0438\u043d\u0430\u0447\u0435 \u0438\u043d\u0430\u0447\u0435\u0435\u0441\u043b\u0438 \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u043a\u043e\u043d\u0435\u0446\u0435\u0441\u043b\u0438 \u043a\u043e\u043d\u0435\u0446\u043f\u043e\u043f\u044b\u0442\u043a\u0438 \u043a\u043e\u043d\u0435\u0446\u0446\u0438\u043a\u043b\u0430 \u043d\u0435 \u043d\u043e\u0432\u044b\u0439 \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u043f\u0435\u0440\u0435\u043c \u043f\u043e \u043f\u043e\u043a\u0430 \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u043f\u0440\u0435\u0440\u0432\u0430\u0442\u044c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u0442\u043e\u0433\u0434\u0430 \u0446\u0438\u043a\u043b \u044d\u043a\u0441\u043f\u043e\u0440\u0442 " , n = "null \u0438\u0441\u0442\u0438\u043d\u0430 \u043b\u043e\u0436\u044c \u043d\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u043e" , i = e . inherit ( e . NUMBER _MODE ) , r = {
className : "string" , begin : '"|\\|' , end : '"|$' , contains : [ { begin : '""' } ] } , s = {
begin : "'" , end : "'" , excludeBegin : ! 0 , excludeEnd : ! 0 , contains : [ { className : "number" ,
begin : "\\d{4}([\\.\\\\/:-]?\\d{2}){0,5}" } ] } , o = e . inherit ( e . C _LINE _COMMENT _MODE )
; return { name : "1C:Enterprise" , case _insensitive : ! 0 , keywords : { $pattern : t , keyword : a ,
built _in : " \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u0440\u0430\u0437\u0434\u0435\u043b\u0438\u0442\u0435\u043b\u044c\u0441\u0442\u0440\u043e\u043a \u0441\u0438\u043c\u0432\u043e\u043b\u0442\u0430\u0431\u0443\u043b\u044f\u0446\u0438\u0438 ansitooem oemtoansi \u0432\u0432\u0435\u0441\u0442\u0438\u0432\u0438\u0434\u0441\u0443\u0431\u043a\u043e\u043d\u0442\u043e \u0432\u0432\u0435\u0441\u0442\u0438\u043f\u0435\u0440\u0435\u0447\u0438\u0441\u043b\u0435\u043d\u0438\u0435 \u0432\u0432\u0435\u0441\u0442\u0438\u043f\u0435\u0440\u0438\u043e\u0434 \u0432\u0432\u0435\u0441\u0442\u0438\u043f\u043b\u0430\u043d\u0441\u0447\u0435\u0442\u043e\u0432 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439\u043f\u043b\u0430\u043d\u0441\u0447\u0435\u0442\u043e\u0432 \u0434\u0430\u0442\u0430\u0433\u043e\u0434 \u0434\u0430\u0442\u0430\u043c\u0435\u0441\u044f\u0446 \u0434\u0430\u0442\u0430\u0447\u0438\u0441\u043b\u043e \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a\u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0432\u0441\u0442\u0440\u043e\u043a\u0443 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435\u0438\u0437\u0441\u0442\u0440\u043e\u043a\u0438 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0438\u0431 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u043a\u043e\u0434\u0441\u0438\u043c\u0432 \u043a\u043e\u043d\u0433\u043e\u0434\u0430 \u043a\u043e\u043d\u0435\u0446\u043f\u0435\u0440\u0438\u043e\u0434\u0430\u0431\u0438 \u043a\u043e\u043d\u0435\u0446\u0440\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u043d\u043d\u043e\u0433\u043e\u043f\u0435\u0440\u0438\u043e\u0434\u0430\u0431\u0438 \u043a\u043e\u043d\u0435\u0446\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e\u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430 \u043a\u043e\u043d\u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0430 \u043a\u043e\u043d\u043c\u0435\u0441\u044f\u0446\u0430 \u043a\u043e\u043d\u043d\u0435\u0434\u0435\u043b\u0438 \u043b\u043e\u0433 \u043b\u043e\u043310 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435\u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e\u0441\u0443\u0431\u043a\u043e\u043d\u0442\u043e \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043d\u0430\u0431\u043e\u0440\u0430\u043f\u0440\u0430\u0432 \u043d\u0430\u0437\u043d\u0430\u0447\u0438\u0442\u044c\u0432\u0438\u0434 \u043d\u0430\u0437\u043d\u0430\u0447\u0438\u0442\u044c\u0441\u0447\u0435\u0442 \u043d\u0430\u0439\u0442\u0438\u0441\u0441\u044b\u043b\u043a\u0438 \u043d\u0430\u0447\u0430\u043b\u043e\u043f\u0435\u0440\u0438\u043e\u0434\u0430\u0431\u0438 \u043d\u0430\u0447\u0430\u043b\u043e\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e\u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0430 \u043d\u0430\u0447\u0433\u043e\u0434\u0430 \u043d\u0430\u0447\u043a\u0432\u0430\u0440\u0442\u0430\u043b\u0430 \u043d\u0430\u0447\u043c\u0435\u0441\u044f\u0446\u0430 \u043d\u0430\u0447\u043d\u0435\u0434\u0435\u043b\u0438 \u043d\u043e\u043c\u0435\u0440\u0434\u043d\u044f\u0433\u043e\u0434\u0430 \u043d\u043e\u043c\u0435\u0440\u0434\u043d\u044f\u043d\u0435\u0434\u0435\u043b\u0438 \u043d\u043e\u043c\u0435\u0440\u043d\u0435\u0434\u0435\u043b\u0438\u0433\u043e\u0434\u0430 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0430\u043e\u0436\u0438\u0434\u0430\u043d\u0438\u044f \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439\u0436\u0443\u0440\u043d\u0430\u043b\u0440\u0430\u0441\u0447\u0435\u0442\u043e\u0432 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439\u043f\u043b\u0430\u043d\u0441\u0447\u0435\u0442\u043e\u0432 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439\u044f\u0437\u044b\u043a \u043e\u0447\u0438\u0441\u0442\u0438\u0442\u044c\u043e\u043a\u043d\u043e\u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0439 \u043f\u0435\u0440\u0438\u043e\u0434\u0441\u0442\u0440 \u043f\u043e \ u
class : " web\u0446\u0432\u0435\u0442\u0430 windows\u0446\u0432\u0435\u0442\u0430 windows\u0448\u0440\u0438\u0444\u0442\u044b \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u043a\u0430\u0440\u0442\u0438\u043d\u043e\u043a \u0440\u0430\u043c\u043a\u0438\u0441\u0442\u0438\u043b\u044f \u0441\u0438\u043c\u0432\u043e\u043b\u044b \u0446\u0432\u0435\u0442\u0430\u0441\u0442\u0438\u043b\u044f \u0448\u0440\u0438\u0444\u0442\u044b\u0441\u0442\u0438\u043b\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435\u0434\u0430\u043d\u043d\u044b\u0445\u0444\u043e\u0440\u043c\u044b\u0432\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0445 \u0430\u0432\u0442\u043e\u043d\u0443\u043c\u0435\u0440\u0430\u0446\u0438\u044f\u0432\u0444\u043e\u0440\u043c\u0435 \u0430\u0432\u0442\u043e\u0440\u0430\u0437\u0434\u0432\u0438\u0436\u0435\u043d\u0438\u0435\u0441\u0435\u0440\u0438\u0439 \u0430\u043d\u0438\u043c\u0430\u0446\u0438\u044f\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0432\u044b\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u043d\u0438\u044f\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432\u0438\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u043e\u0432 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f\u0432\u044b\u0441\u043e\u0442\u043e\u0439\u0442\u0430\u0431\u043b\u0438\u0446\u044b \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u0430\u044f\u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0430\u0444\u043e\u0440\u043c\u044b \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0435\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0432\u0438\u0434\u0433\u0440\u0443\u043f\u043f\u044b\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u0434\u0435\u043a\u043e\u0440\u0430\u0446\u0438\u0438\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u0438\u0434\u043a\u043d\u043e\u043f\u043a\u0438\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0430\u0442\u0435\u043b\u044f \u0432\u0438\u0434\u043f\u043e\u0434\u043f\u0438\u0441\u0435\u0439\u043a\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0435 \u0432\u0438\u0434\u043f\u043e\u043b\u044f\u0444\u043e\u0440\u043c\u044b \u0432\u0438\u0434\u0444\u043b\u0430\u0436\u043a\u0430 \u0432\u043b\u0438\u044f\u043d\u0438\u0435\u0440\u0430\u0437\u043c\u0435\u0440\u0430\u043d\u0430\u043f\u0443\u0437\u044b\u0440\u0435\u043a\u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u044b \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0435\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0430\u043a\u043e\u043b\u043e\u043d\u043e\u043a \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u043a\u0430\u043f\u043e\u0434\u0447\u0438\u043d\u0435\u043d\u043d\u044b\u0445\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432\u0444\u043e\u0440\u043c\u044b \u0433\u0440\u0443\u043f\u043f\u044b\u0438\u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435\u043f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439\u0440\u0435\u0436\u0438\u043c\u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438
type : " com\u043e\u0431\u044a\u0435\u043a\u0442 ftp\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 http\u0437\u0430\u043f\u0440\u043e\u0441 http\u0441\u0435\u0440\u0432\u0438\u0441\u043e\u0442\u0432\u0435\u0442 http\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 ws\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f ws\u043f\u0440\u043e\u043a\u0441\u0438 xbase \u0430\u043d\u0430\u043b\u0438\u0437\u0434\u0430\u043d\u043d\u044b\u0445 \u0430\u043d\u043d\u043e\u0442\u0430\u0446\u0438\u044fxs \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0431\u0443\u0444\u0435\u0440\u0434\u0432\u043e\u0438\u0447\u043d\u044b\u0445\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435xs \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0433\u0435\u043d\u0435\u0440\u0430\u0442\u043e\u0440\u0441\u043b\u0443\u0447\u0430\u0439\u043d\u044b\u0445\u0447\u0438\u0441\u0435\u043b \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0430\u044f\u0441\u0445\u0435\u043c\u0430 \u0433\u0435\u043e\u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0435\u043a\u043e\u043e\u0440\u0434\u0438\u043d\u0430\u0442\u044b \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0430\u044f\u0441\u0445\u0435\u043c\u0430 \u0433\u0440\u0443\u043f\u043f\u0430\u043c\u043e\u0434\u0435\u043b\u0438xs \u0434\u0430\u043d\u043d\u044b\u0435\u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u0432\u043e\u0438\u0447\u043d\u044b\u0435\u0434\u0430\u043d\u043d\u044b\u0435 \u0434\u0435\u043d\u0434\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430 \u0434\u0438\u0430\u0433\u0440\u0430\u043c\u043c\u0430\u0433\u0430\u043d\u0442\u0430 \u0434\u0438\u0430\u043b\u043e\u0433\u0432\u044b\u0431\u043e\u0440\u0430\u0444\u0430\u0439\u043b\u0430 \u0434\u0438\u0430\u043b\u043e\u0433\u0432\u044b\u0431\u043e\u0440\u0430\u0446\u0432\u0435\u0442\u0430 \u0434\u0438\u0430\u043b\u043e\u0433\u0432\u044b\u0431\u043e\u0440\u0430\u0448\u0440\u0438\u0444\u0442\u0430 \u0434\u0438\u0430\u043b\u043e\u0433\u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u044f\u0440\u0435\u0433\u043b\u0430\u043c\u0435\u043d\u0442\u043d\u043e\u0433\u043e\u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0434\u0438\u0430\u043b\u043e\u0433\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e\u0433\u043e\u043f\u0435\u0440\u0438\u043e\u0434\u0430 \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442dom \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442html \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044fxs \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u043c\u043e\u0435\u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u044cdom \u0437\u0430\u043f\u0438\u0441\u044cfastinfoset \u0437\u0430\u043f\u0438\u0441\u044chtml \u0437\u0430\u043f\u0438\u0441\u044cjson \u0437\u0430\u043f\u0438\u0441\u044cxml \u0437\u0430\u043f\u0438\u0441\u044czip\u0444\u0430\u0439\u043b\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u0434\u0430\u043d\u043d\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u044c\u0442\u0435\u043a\u0441\u0442\u0430 \u0437\u0430\u043f\u0438\u0441\u044c\u0443\u0437\u043b\u043e\u0432dom \u0437\u0430\u043f\u0440\u043e\u0441 \u0437\u0430\u0449\u0438\u0449\u0435\u043d\u043d\u043e\u0435\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435openssl \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u043f\u043e\u043b\u0435\u0439\u0440\u0430\u0441\u0448\u0438\u0444\u0440\u043e\u0432\u043a\u0438\u043a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0438\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437\u0432\u043b\u0435\u0447 \ u0
literal : n } , contains : [ { className : "meta" , begin : "#|&" , end : "$" , keywords : { $pattern : t ,
keyword : a + "\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c\u0438\u0437\u0444\u0430\u0439\u043b\u0430 \u0432\u0435\u0431\u043a\u043b\u0438\u0435\u043d\u0442 \u0432\u043c\u0435\u0441\u0442\u043e \u0432\u043d\u0435\u0448\u043d\u0435\u0435\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u043a\u043b\u0438\u0435\u043d\u0442 \u043a\u043e\u043d\u0435\u0446\u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043a\u043b\u0438\u0435\u043d\u0442 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0441\u0435\u0440\u0432\u0435\u0440 \u043d\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0435 \u043d\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0435\u043d\u0430\u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u043d\u0430\u043a\u043b\u0438\u0435\u043d\u0442\u0435\u043d\u0430\u0441\u0435\u0440\u0432\u0435\u0440\u0435\u0431\u0435\u0437\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u043d\u0430\u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u043d\u0430\u0441\u0435\u0440\u0432\u0435\u0440\u0435\u0431\u0435\u0437\u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u043e\u0431\u043b\u0430\u0441\u0442\u044c \u043f\u0435\u0440\u0435\u0434 \u043f\u043e\u0441\u043b\u0435 \u0441\u0435\u0440\u0432\u0435\u0440 \u0442\u043e\u043b\u0441\u0442\u044b\u0439\u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0431\u044b\u0447\u043d\u043e\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0442\u043e\u043b\u0441\u0442\u044b\u0439\u043a\u043b\u0438\u0435\u043d\u0442\u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u043c\u043e\u0435\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0442\u043e\u043d\u043a\u0438\u0439\u043a\u043b\u0438\u0435\u043d\u0442 "
} , contains : [ o ] } , { className : "function" , variants : [ {
begin : "\u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0430|\u0444\u0443\u043d\u043a\u0446\u0438\u044f" ,
end : "\\)" ,
keywords : "\u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0430 \u0444\u0443\u043d\u043a\u0446\u0438\u044f"
} , {
begin : "\u043a\u043e\u043d\u0435\u0446\u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b|\u043a\u043e\u043d\u0435\u0446\u0444\u0443\u043d\u043a\u0446\u0438\u0438" ,
keywords : "\u043a\u043e\u043d\u0435\u0446\u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u044b \u043a\u043e\u043d\u0435\u0446\u0444\u0443\u043d\u043a\u0446\u0438\u0438"
} ] , contains : [ { begin : "\\(" , end : "\\)" , endsParent : ! 0 , contains : [ { className : "params" ,
begin : t , end : "," , excludeEnd : ! 0 , endsWithParent : ! 0 , keywords : { $pattern : t ,
keyword : "\u0437\u043d\u0430\u0447" , literal : n } , contains : [ i , r , s ] } , o ]
} , e . inherit ( e . TITLE _MODE , { begin : t } ) ] } , o , { className : "symbol" , begin : "~" , end : ";|:" ,
excludeEnd : ! 0 } , i , r , s ] } } , grmr _abnf : e => { const t = e . regex , a = e . COMMENT ( /;/ , /$/ )
; return { name : "Augmented Backus-Naur Form" , illegal : /[!@#$^&',?+~`|:]/ ,
keywords : [ "ALPHA" , "BIT" , "CHAR" , "CR" , "CRLF" , "CTL" , "DIGIT" , "DQUOTE" , "HEXDIG" , "HTAB" , "LF" , "LWSP" , "OCTET" , "SP" , "VCHAR" , "WSP" ] ,
contains : [ { scope : "operator" , match : /=\/?/ } , { scope : "attribute" ,
match : t . concat ( /^[a-zA-Z][a-zA-Z0-9-]*/ , /(?=\s*=)/ ) } , a , { scope : "symbol" ,
match : /%b[0-1]+(-[0-1]+|(\.[0-1]+)+)?/ } , { scope : "symbol" ,
match : /%d[0-9]+(-[0-9]+|(\.[0-9]+)+)?/ } , { scope : "symbol" ,
match : /%x[0-9A-F]+(-[0-9A-F]+|(\.[0-9A-F]+)+)?/ } , { scope : "symbol" ,
match : /%[si](?=".*")/ } , e . QUOTE _STRING _MODE , e . NUMBER _MODE ] } } , grmr _accesslog : e => {
const t = e . regex , a = [ "GET" , "POST" , "HEAD" , "PUT" , "DELETE" , "CONNECT" , "OPTIONS" , "PATCH" , "TRACE" ]
; return { name : "Apache Access Log" , contains : [ { className : "number" ,
begin : /^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d{1,5})?\b/ , relevance : 5 } , {
className : "number" , begin : /\b\d+\b/ , relevance : 0 } , { className : "string" ,
begin : t . concat ( /"/ , t . either ( ... a ) ) , end : /"/ , keywords : a , illegal : /\n/ , relevance : 5 ,
contains : [ { begin : /HTTP\/[12]\.\d'/ , relevance : 5 } ] } , { className : "string" ,
begin : /\[\d[^\]\n]{8,}\]/ , illegal : /\n/ , relevance : 1 } , { className : "string" ,
begin : /\[/ , end : /\]/ , illegal : /\n/ , relevance : 0 } , { className : "string" ,
begin : /"Mozilla\/\d\.\d \(/ , end : /"/ , illegal : /\n/ , relevance : 3 } , {
className : "string" , begin : /"/ , end : /"/ , illegal : /\n/ , relevance : 0 } ] } } ,
grmr _actionscript : e => {
const t = e . regex , a = /[a-zA-Z_$][a-zA-Z0-9_$]*/ , n = t . concat ( a , t . concat ( "(\\." , a , ")*" ) ) , i = {
className : "rest_arg" , begin : /[.]{3}/ , end : a , relevance : 10 } ; return {
name : "ActionScript" , aliases : [ "as" ] , keywords : {
keyword : [ "as" , "break" , "case" , "catch" , "class" , "const" , "continue" , "default" , "delete" , "do" , "dynamic" , "each" , "else" , "extends" , "final" , "finally" , "for" , "function" , "get" , "if" , "implements" , "import" , "in" , "include" , "instanceof" , "interface" , "internal" , "is" , "namespace" , "native" , "new" , "override" , "package" , "private" , "protected" , "public" , "return" , "set" , "static" , "super" , "switch" , "this" , "throw" , "try" , "typeof" , "use" , "var" , "void" , "while" , "with" ] ,
literal : [ "true" , "false" , "null" , "undefined" ] } ,
contains : [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . C _NUMBER _MODE , {
match : [ /\bpackage/ , /\s+/ , n ] , className : { 1 : "keyword" , 3 : "title.class" } } , {
match : [ /\b(?:class|interface|extends|implements)/ , /\s+/ , a ] , className : {
1 : "keyword" , 3 : "title.class" } } , { className : "meta" , beginKeywords : "import include" ,
end : /;/ , keywords : { keyword : "import include" } } , { beginKeywords : "function" ,
end : /[{;]/ , excludeEnd : ! 0 , illegal : /\S/ , contains : [ e . inherit ( e . TITLE _MODE , {
className : "title.function" } ) , { className : "params" , begin : /\(/ , end : /\)/ ,
contains : [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , i ]
} , { begin : t . concat ( /:\s*/ , /([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)/ ) } ] } , e . METHOD _GUARD ] ,
illegal : /#/ } } , grmr _ada : e => {
const t = "[A-Za-z](_?[A-Za-z0-9.])*" , a = "[]\\{\\}%#'\"" , n = e . COMMENT ( "--" , "$" ) , i = {
begin : "\\s+:\\s+" , end : "\\s*(:=|;|\\)|=>|$)" , illegal : a , contains : [ {
beginKeywords : "loop for declare others" , endsParent : ! 0 } , { className : "keyword" ,
beginKeywords : "not null constant access function procedure in out aliased exception"
} , { className : "type" , begin : t , endsParent : ! 0 , relevance : 0 } ] } ; return { name : "Ada" ,
case _insensitive : ! 0 , keywords : {
keyword : [ "abort" , "else" , "new" , "return" , "abs" , "elsif" , "not" , "reverse" , "abstract" , "end" , "accept" , "entry" , "select" , "access" , "exception" , "of" , "separate" , "aliased" , "exit" , "or" , "some" , "all" , "others" , "subtype" , "and" , "for" , "out" , "synchronized" , "array" , "function" , "overriding" , "at" , "tagged" , "generic" , "package" , "task" , "begin" , "goto" , "pragma" , "terminate" , "body" , "private" , "then" , "if" , "procedure" , "type" , "case" , "in" , "protected" , "constant" , "interface" , "is" , "raise" , "use" , "declare" , "range" , "delay" , "limited" , "record" , "when" , "delta" , "loop" , "rem" , "while" , "digits" , "renames" , "with" , "do" , "mod" , "requeue" , "xor" ] ,
literal : [ "True" , "False" ] } , contains : [ n , { className : "string" , begin : /"/ , end : /"/ ,
contains : [ { begin : /""/ , relevance : 0 } ] } , { className : "string" , begin : /'.'/ } , {
className : "number" ,
begin : "\\b(\\d(_|\\d)*#\\w+(\\.\\w+)?#([eE][-+]?\\d(_|\\d)*)?|\\d(_|\\d)*(\\.\\d(_|\\d)*)?([eE][-+]?\\d(_|\\d)*)?)" ,
relevance : 0 } , { className : "symbol" , begin : "'" + t } , { className : "title" ,
begin : "(\\bwith\\s+)?(\\bprivate\\s+)?\\bpackage\\s+(\\bbody\\s+)?" ,
end : "(is|$)" , keywords : "package body" , excludeBegin : ! 0 , excludeEnd : ! 0 , illegal : a } , {
begin : "(\\b(with|overriding)\\s+)?\\b(function|procedure)\\s+" ,
end : "(\\bis|\\bwith|\\brenames|\\)\\s*;)" ,
keywords : "overriding function procedure with is renames return" , returnBegin : ! 0 ,
contains : [ n , { className : "title" ,
begin : "(\\bwith\\s+)?\\b(function|procedure)\\s+" , end : "(\\(|\\s+|$)" ,
excludeBegin : ! 0 , excludeEnd : ! 0 , illegal : a } , i , { className : "type" ,
begin : "\\breturn\\s+" , end : "(\\s+|;|$)" , keywords : "return" , excludeBegin : ! 0 ,
excludeEnd : ! 0 , endsParent : ! 0 , illegal : a } ] } , { className : "type" ,
begin : "\\b(sub)?type\\s+" , end : "\\s+" , keywords : "type" , excludeBegin : ! 0 , illegal : a
} , i ] } } , grmr _angelscript : e => { const t = { className : "built_in" ,
begin : "\\b(void|bool|int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|string|ref|array|double|float|auto|dictionary)"
} , a = { className : "symbol" , begin : "[a-zA-Z0-9_]+@" } , n = { className : "keyword" ,
begin : "<" , end : ">" , contains : [ t , a ] } ; return t . contains = [ n ] , a . contains = [ n ] , {
name : "AngelScript" , aliases : [ "asc" ] ,
keywords : [ "for" , "in|0" , "break" , "continue" , "while" , "do|0" , "return" , "if" , "else" , "case" , "switch" , "namespace" , "is" , "cast" , "or" , "and" , "xor" , "not" , "get|0" , "in" , "inout|10" , "out" , "override" , "set|0" , "private" , "public" , "const" , "default|0" , "final" , "shared" , "external" , "mixin|10" , "enum" , "typedef" , "funcdef" , "this" , "super" , "import" , "from" , "interface" , "abstract|0" , "try" , "catch" , "protected" , "explicit" , "property" ] ,
illegal : "(^using\\s+[A-Za-z0-9_\\.]+;$|\\bfunction\\s*[^\\(])" , contains : [ {
className : "string" , begin : "'" , end : "'" , illegal : "\\n" ,
contains : [ e . BACKSLASH _ESCAPE ] , relevance : 0 } , { className : "string" , begin : '"""' ,
end : '"""' } , { className : "string" , begin : '"' , end : '"' , illegal : "\\n" ,
contains : [ e . BACKSLASH _ESCAPE ] , relevance : 0
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , { className : "string" ,
begin : "^\\s*\\[" , end : "\\]" } , { beginKeywords : "interface namespace" , end : /\{/ ,
illegal : "[;.\\-]" , contains : [ { className : "symbol" , begin : "[a-zA-Z0-9_]+" } ] } , {
beginKeywords : "class" , end : /\{/ , illegal : "[;.\\-]" , contains : [ { className : "symbol" ,
begin : "[a-zA-Z0-9_]+" , contains : [ { begin : "[:,]\\s*" , contains : [ { className : "symbol" ,
begin : "[a-zA-Z0-9_]+" } ] } ] } ] } , t , a , { className : "literal" ,
begin : "\\b(null|true|false)" } , { className : "number" , relevance : 0 ,
begin : "(-?)(\\b0[xXbBoOdD][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?f?|\\.\\d+f?)([eE][-+]?\\d+f?)?)"
} ] } } , grmr _apache : e => { const t = { className : "number" ,
begin : /\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d{1,5})?/ } ; return {
name : "Apache config" , aliases : [ "apacheconf" ] , case _insensitive : ! 0 ,
contains : [ e . HASH _COMMENT _MODE , { className : "section" , begin : /<\/?/ , end : />/ ,
contains : [ t , { className : "number" , begin : /:\d{1,5}/
} , e . inherit ( e . QUOTE _STRING _MODE , { relevance : 0 } ) ] } , { className : "attribute" ,
begin : /\w+/ , relevance : 0 , keywords : {
_ : [ "order" , "deny" , "allow" , "setenv" , "rewriterule" , "rewriteengine" , "rewritecond" , "documentroot" , "sethandler" , "errordocument" , "loadmodule" , "options" , "header" , "listen" , "serverroot" , "servername" ]
} , starts : { end : /$/ , relevance : 0 , keywords : { literal : "on off all deny allow" } ,
contains : [ { className : "meta" , begin : /\s\[/ , end : /\]$/ } , { className : "variable" ,
begin : /[\$%]\{/ , end : /\}/ , contains : [ "self" , { className : "number" , begin : /[$%]\d+/ } ]
} , t , { className : "number" , begin : /\b\d+/ } , e . QUOTE _STRING _MODE ] } } ] , illegal : /\S/ } } ,
grmr _applescript : e => { const t = e . regex , a = e . inherit ( e . QUOTE _STRING _MODE , {
illegal : null } ) , n = { className : "params" , begin : /\(/ , end : /\)/ ,
contains : [ "self" , e . C _NUMBER _MODE , a ]
} , i = e . COMMENT ( /--/ , /$/ ) , r = [ i , e . COMMENT ( /\(\*/ , /\*\)/ , { contains : [ "self" , i ]
} ) , e . HASH _COMMENT _MODE ] ; return { name : "AppleScript" , aliases : [ "osascript" ] ,
keywords : {
keyword : "about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without" ,
literal : "AppleScript false linefeed return pi quote result space tab true" ,
built _in : "alias application boolean class constant date file integer list number real record string text activate beep count delay launch log offset read round run say summarize write character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year"
} , contains : [ a , e . C _NUMBER _MODE , { className : "built_in" ,
begin : t . concat ( /\b/ , t . either ( /clipboard info/ , /the clipboard/ , /info for/ , /list (disks|folder)/ , /mount volume/ , /path to/ , /(close|open for) access/ , /(get|set) eof/ , /current date/ , /do shell script/ , /get volume settings/ , /random number/ , /set volume/ , /system attribute/ , /system info/ , /time to GMT/ , /(load|run|store) script/ , /scripting components/ , /ASCII (character|number)/ , /localized string/ , /choose (application|color|file|file name|folder|from list|remote application|URL)/ , /display (alert|dialog)/ ) , /\b/ )
} , { className : "built_in" , begin : /^\s*return\b/ } , { className : "literal" ,
begin : /\b(text item delimiters|current application|missing value)\b/ } , {
className : "keyword" ,
begin : t . concat ( /\b/ , t . either ( /apart from/ , /aside from/ , /instead of/ , /out of/ , /greater than/ , /isn't|(doesn't|does not) (equal|come before|come after|contain)/ , /(greater|less) than( or equal)?/ , /(starts?|ends|begins?) with/ , /contained by/ , /comes (before|after)/ , /a (ref|reference)/ , /POSIX (file|path)/ , /(date|time) string/ , /quoted form/ ) , /\b/ )
} , { beginKeywords : "on" , illegal : /[${=;\n]/ , contains : [ e . UNDERSCORE _TITLE _MODE , n ]
} , ... r ] , illegal : /\/\/|->|=>|\[\[/ } } , grmr _arcade : e => {
const t = "[A-Za-z_][0-9A-Za-z_]*" , a = {
keyword : [ "if" , "for" , "while" , "var" , "new" , "function" , "do" , "return" , "void" , "else" , "break" ] ,
literal : [ "BackSlash" , "DoubleQuote" , "false" , "ForwardSlash" , "Infinity" , "NaN" , "NewLine" , "null" , "PI" , "SingleQuote" , "Tab" , "TextFormatting" , "true" , "undefined" ] ,
built _in : [ "Abs" , "Acos" , "All" , "Angle" , "Any" , "Area" , "AreaGeodetic" , "Array" , "Asin" , "Atan" , "Atan2" , "Attachments" , "Average" , "Back" , "Bearing" , "Boolean" , "Buffer" , "BufferGeodetic" , "Ceil" , "Centroid" , "Clip" , "Concatenate" , "Console" , "Constrain" , "Contains" , "ConvertDirection" , "Cos" , "Count" , "Crosses" , "Cut" , "Date" , "DateAdd" , "DateDiff" , "Day" , "Decode" , "DefaultValue" , "Densify" , "DensifyGeodetic" , "Dictionary" , "Difference" , "Disjoint" , "Distance" , "DistanceGeodetic" , "Distinct" , "Domain" , "DomainCode" , "DomainName" , "EnvelopeIntersects" , "Equals" , "Erase" , "Exp" , "Expects" , "Extent" , "Feature" , "FeatureSet" , "FeatureSetByAssociation" , "FeatureSetById" , "FeatureSetByName" , "FeatureSetByPortalItem" , "FeatureSetByRelationshipName" , "Filter" , "Find" , "First" , "Floor" , "FromCharCode" , "FromCodePoint" , "FromJSON" , "GdbVersion" , "Generalize" , "Geometry" , "GetFeatureSet" , "GetUser" , "GroupBy" , "Guid" , "Hash" , "HasKey" , "Hour" , "IIf" , "Includes" , "IndexOf" , "Insert" , "Intersection" , "Intersects" , "IsEmpty" , "IsNan" , "ISOMonth" , "ISOWeek" , "ISOWeekday" , "ISOYear" , "IsSelfIntersecting" , "IsSimple" , "Left|0" , "Length" , "Length3D" , "LengthGeodetic" , "Log" , "Lower" , "Map" , "Max" , "Mean" , "Mid" , "Millisecond" , "Min" , "Minute" , "Month" , "MultiPartToSinglePart" , "Multipoint" , "NextSequenceValue" , "None" , "Now" , "Number" , "Offset|0" , "OrderBy" , "Overlaps" , "Point" , "Polygon" , "Polyline" , "Pop" , "Portal" , "Pow" , "Proper" , "Push" , "Random" , "Reduce" , "Relate" , "Replace" , "Resize" , "Reverse" , "Right|0" , "RingIsClockwise" , "Rotate" , "Round" , "Schema" , "Second" , "SetGeometry" , "Simplify" , "Sin" , "Slice" , "Sort" , "Splice" , "Split" , "Sqrt" , "Stdev" , "SubtypeCode" , "SubtypeName" , "Subtypes" , "Sum" , "SymmetricDifference" , "Tan" , "Text" , "Timestamp" , "ToCharCode" , "ToCodePoint" , "Today" , "ToHex" , "ToLocal" , "Top|0" , "Touches" , "ToUTC" , "TrackAccelerationAt" , "TrackAccelerationWindow" , "TrackCurrentAcceleration" , "TrackCurrentDistance" , "TrackCurrentSpeed" , "TrackCurrentTime" , "TrackDistanceAt" , "TrackDistanceWindow" , "TrackDuration" , "TrackFieldWindow" , "TrackGeometryWindow" , "TrackIndex" , "TrackSpeedAt" , "TrackSpeedWindow" , "TrackStartTime" , "TrackWindow" , "Trim" , "TypeOf" , "Union" , "Upper" , "UrlEncode" , "Variance" , "Week" , "Weekday" , "When" , "Within" , "Year" ]
} , n = { className : "number" , variants : [ { begin : "\\b(0[bB][01]+)" } , {
begin : "\\b(0[oO][0-7]+)" } , { begin : e . C _NUMBER _RE } ] , relevance : 0 } , i = {
className : "subst" , begin : "\\$\\{" , end : "\\}" , keywords : a , contains : [ ] } , r = {
className : "string" , begin : "`" , end : "`" , contains : [ e . BACKSLASH _ESCAPE , i ] }
; i . contains = [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , r , n , e . REGEXP _MODE ]
; const s = i . contains . concat ( [ e . C _BLOCK _COMMENT _MODE , e . C _LINE _COMMENT _MODE ] )
; return { name : "ArcGIS Arcade" , case _insensitive : ! 0 , keywords : a ,
contains : [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , r , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , {
className : "symbol" ,
begin : "\\$[datastore|feature|layer|map|measure|sourcefeature|sourcelayer|targetfeature|targetlayer|value|view]+"
} , n , { begin : /[{,]\s*/ , relevance : 0 , contains : [ { begin : t + "\\s*:" , returnBegin : ! 0 ,
relevance : 0 , contains : [ { className : "attr" , begin : t , relevance : 0 } ] } ] } , {
begin : "(" + e . RE _STARTERS _RE + "|\\b(return)\\b)\\s*" , keywords : "return" ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . REGEXP _MODE , {
className : "function" , begin : "(\\(.*?\\)|" + t + ")\\s*=>" , returnBegin : ! 0 ,
end : "\\s*=>" , contains : [ { className : "params" , variants : [ { begin : t } , { begin : /\(\s*\)/
} , { begin : /\(/ , end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 , keywords : a , contains : s } ] } ]
} ] , relevance : 0 } , { beginKeywords : "function" , end : /\{/ , excludeEnd : ! 0 ,
contains : [ e . inherit ( e . TITLE _MODE , { className : "title.function" , begin : t } ) , {
className : "params" , begin : /\(/ , end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 , contains : s
} ] , illegal : /\[|%/ } , { begin : /\$[(.]/ } ] , illegal : /#(?!!)/ } } , grmr _arduino : e => {
const t = { type : [ "boolean" , "byte" , "word" , "String" ] ,
built _in : [ "KeyboardController" , "MouseController" , "SoftwareSerial" , "EthernetServer" , "EthernetClient" , "LiquidCrystal" , "RobotControl" , "GSMVoiceCall" , "EthernetUDP" , "EsploraTFT" , "HttpClient" , "RobotMotor" , "WiFiClient" , "GSMScanner" , "FileSystem" , "Scheduler" , "GSMServer" , "YunClient" , "YunServer" , "IPAddress" , "GSMClient" , "GSMModem" , "Keyboard" , "Ethernet" , "Console" , "GSMBand" , "Esplora" , "Stepper" , "Process" , "WiFiUDP" , "GSM_SMS" , "Mailbox" , "USBHost" , "Firmata" , "PImage" , "Client" , "Server" , "GSMPIN" , "FileIO" , "Bridge" , "Serial" , "EEPROM" , "Stream" , "Mouse" , "Audio" , "Servo" , "File" , "Task" , "GPRS" , "WiFi" , "Wire" , "TFT" , "GSM" , "SPI" , "SD" ] ,
_hints : [ "setup" , "loop" , "runShellCommandAsynchronously" , "analogWriteResolution" , "retrieveCallingNumber" , "printFirmwareVersion" , "analogReadResolution" , "sendDigitalPortPair" , "noListenOnLocalhost" , "readJoystickButton" , "setFirmwareVersion" , "readJoystickSwitch" , "scrollDisplayRight" , "getVoiceCallStatus" , "scrollDisplayLeft" , "writeMicroseconds" , "delayMicroseconds" , "beginTransmission" , "getSignalStrength" , "runAsynchronously" , "getAsynchronously" , "listenOnLocalhost" , "getCurrentCarrier" , "readAccelerometer" , "messageAvailable" , "sendDigitalPorts" , "lineFollowConfig" , "countryNameWrite" , "runShellCommand" , "readStringUntil" , "rewindDirectory" , "readTemperature" , "setClockDivider" , "readLightSensor" , "endTransmission" , "analogReference" , "detachInterrupt" , "countryNameRead" , "attachInterrupt" , "encryptionType" , "readBytesUntil" , "robotNameWrite" , "readMicrophone" , "robotNameRead" , "cityNameWrite" , "userNameWrite" , "readJoystickY" , "readJoystickX" , "mouseReleased" , "openNextFile" , "scanNetworks" , "noInterrupts" , "digitalWrite" , "beginSpeaker" , "mousePressed" , "isActionDone" , "mouseDragged" , "displayLogos" , "noAutoscroll" , "addParameter" , "remoteNumber" , "getModifiers" , "keyboardRead" , "userNameRead" , "waitContinue" , "processInput" , "parseCommand" , "printVersion" , "readNetworks" , "writeMessage" , "blinkVersion" , "cityNameRead" , "readMessage" , "setDataMode" , "parsePacket" , "isListening" , "setBitOrder" , "beginPacket" , "isDirectory" , "motorsWrite" , "drawCompass" , "digitalRead" , "clearScreen" , "serialEvent" , "rightToLeft" , "setTextSize" , "leftToRight" , "requestFrom" , "keyReleased" , "compassRead" , "analogWrite" , "interrupts" , "WiFiServer" , "disconnect" , "playMelody" , "parseFloat" , "autoscroll" , "getPINUsed" , "setPINUsed" , "setTimeout" , "sendAnalog" , "readSlider" , "analogRead" , "beginWrite" , "createChar" , "motorsStop" , "keyPressed" , "tempoWrite" , "readButton" , "subnetMask" , "debugPrint" , "macAddress" , "writeGreen" , "randomSeed" , "attachGPRS" , "readString" , "sendString" , "remotePort" , "releaseAll" , "mouseMoved" , "background" , "getXChange" , "getYChange" , "answerCall" , "getResult" , "voiceCall" , "endPacket" , "constrain" , "getSocket" , "writeJSON" , "getButton" , "available" , "connected" , "findUntil" , "readBytes" , "exitValue" , "readGreen" , "writeBlue" , "startLoop" , "IPAddress" , "isPressed" , "sendSysex" , "pauseMode" , "gatewayIP" , "setCursor" , "getOemKey" , "tuneWrite" , "noDisplay" , "loadImage" , "switchPIN" , "onRequest" , "onReceive" , "changePIN" , "playFile" , "noBuffer" , "parseInt" , "overflow" , "checkPIN" , "knobRead" , "beginTFT" , "bitClear" , "updateIR" , "bitWrite" , "position" , "writeRGB" , "highByte" , "writeRed" , "setSpeed" , "readBlue" , "noStroke" , "remoteIP" , "transfer" , "shutdown" , "hangCall" , "beginSMS" , "endWrite" , "attached" , "maintain" , "noCursor" , "checkReg" , "checkPUK" , "shiftOut" , "isValid" , "shiftIn" , "pulseIn" , "connect" , "println" , "localIP" , "pinMode" , "getIMEI" , "display" , "noBlink" , "process" , "getBand" , "running" , "beginSD" , "drawBMP" , "lowByte" , "setBand" , "release" , "bitRead" , "prepare" , "pointTo" , "readRed" , "setMode" , "noFill" , "remove" , "listen" , "stroke" , "detach" , "attach" , "noTone" , "exists" , "buffer" , "height" , "bitSet" , "circle" , "config" , "cursor" , "random" , "IRread" , "setDNS" , "endSMS" , "getKey" , "micros" , "millis" , "begin" , "print" , "write" , "ready" , "flush" , "width" , "isPIN" , "blink" , "clear" , "press" , "mkdir" , "rmdir" , "close" , "point" , "yield" , "image" , "BSSID" , "click" , "delay" , "read" , "text" , "move" , "peek" , "beep" , "rect" , "line" , "open" , "seek" , "fill" , "size" , "turn" , "stop" , "home" , "find" , "step" , "tone" , "sqrt" , "RSSI" , "SSID" , "end" , "bit" , "tan" , "cos" , "sin" , "pow" , "map" , "abs" , "max" , "min" , "get" , "run" , "put" ] ,
literal : [ "DIGITAL_MESSAGE" , "FIRMATA_STRING" , "ANALOG_MESSAGE" , "REPORT_DIGITAL" , "REPORT_ANALOG" , "INPUT_PULLUP" , "SET_PIN_MODE" , "INTERNAL2V56" , "SYSTEM_RESET" , "LED_BUILTIN" , "INTERNAL1V1" , "SYSEX_START" , "INTERNAL" , "EXTERNAL" , "DEFAULT" , "OUTPUT" , "INPUT" , "HIGH" , "LOW" ]
} , a = ne ( e ) , n = a . keywords
; return n . type = [ ... n . type , ... t . type ] , n . literal = [ ... n . literal , ... t . literal ] ,
n . built _in = [ ... n . built _in , ... t . built _in ] ,
n . _hints = t . _hints , a . name = "Arduino" , a . aliases = [ "ino" ] , a . supersetOf = "cpp" , a } ,
grmr _armasm : e => { const t = { variants : [ e . COMMENT ( "^[ \\t]*(?=#)" , "$" , { relevance : 0 ,
excludeBegin : ! 0 } ) , e . COMMENT ( "[;@]" , "$" , { relevance : 0
} ) , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } ; return { name : "ARM Assembly" ,
case _insensitive : ! 0 , aliases : [ "arm" ] , keywords : { $pattern : "\\.?" + e . IDENT _RE ,
meta : ".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND " ,
built _in : "r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 {PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @"
} , contains : [ { className : "keyword" ,
begin : "\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?(?=\\s)"
} , t , e . QUOTE _STRING _MODE , { className : "string" , begin : "'" , end : "[^\\\\]'" , relevance : 0
} , { className : "title" , begin : "\\|" , end : "\\|" , illegal : "\\n" , relevance : 0 } , {
className : "number" , variants : [ { begin : "[#$=]?0x[0-9a-f]+" } , { begin : "[#$=]?0b[01]+"
} , { begin : "[#$=]\\d+" } , { begin : "\\b\\d+" } ] , relevance : 0 } , { className : "symbol" ,
variants : [ { begin : "^[ \\t]*[a-z_\\.\\$][a-z0-9_\\.\\$]+:" } , {
begin : "^[a-z_\\.\\$][a-z0-9_\\.\\$]+" } , { begin : "[=#]\\w+" } ] , relevance : 0 } ] } } ,
grmr _xml : e => {
const t = e . regex , a = t . concat ( /[A-Z_]/ , t . optional ( /[A-Z0-9_.-]*:/ ) , /[A-Z0-9_.-]*/ ) , n = {
className : "symbol" , begin : /&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/ } , i = { begin : /\s/ ,
contains : [ { className : "keyword" , begin : /#?[a-z_][a-z1-9_-]+/ , illegal : /\n/ } ]
} , r = e . inherit ( i , { begin : /\(/ , end : /\)/ } ) , s = e . inherit ( e . APOS _STRING _MODE , {
className : "string" } ) , o = e . inherit ( e . QUOTE _STRING _MODE , { className : "string" } ) , l = {
endsWithParent : ! 0 , illegal : /</ , relevance : 0 , contains : [ { className : "attr" ,
begin : /[A-Za-z0-9._:-]+/ , relevance : 0 } , { begin : /=\s*/ , relevance : 0 , contains : [ {
className : "string" , endsParent : ! 0 , variants : [ { begin : /"/ , end : /"/ , contains : [ n ] } , {
begin : /'/ , end : /'/ , contains : [ n ] } , { begin : /[^\s"'=<>`]+/ } ] } ] } ] } ; return {
name : "HTML, XML" ,
aliases : [ "html" , "xhtml" , "rss" , "atom" , "xjb" , "xsd" , "xsl" , "plist" , "wsf" , "svg" ] ,
case _insensitive : ! 0 , contains : [ { className : "meta" , begin : /<![a-z]/ , end : />/ ,
relevance : 10 , contains : [ i , o , s , r , { begin : /\[/ , end : /\]/ , contains : [ { className : "meta" ,
begin : /<![a-z]/ , end : />/ , contains : [ i , r , o , s ] } ] } ] } , e . COMMENT ( /<!--/ , /-->/ , {
relevance : 10 } ) , { begin : /<!\[CDATA\[/ , end : /\]\]>/ , relevance : 10 } , n , {
className : "meta" , begin : /<\?xml/ , end : /\?>/ , relevance : 10 } , { className : "tag" ,
begin : /<style(?=\s|>)/ , end : />/ , keywords : { name : "style" } , contains : [ l ] , starts : {
end : /<\/style>/ , returnEnd : ! 0 , subLanguage : [ "css" , "xml" ] } } , { className : "tag" ,
begin : /<script(?=\s|>)/ , end : />/ , keywords : { name : "script" } , contains : [ l ] , starts : {
end : /<\/script>/ , returnEnd : ! 0 , subLanguage : [ "javascript" , "handlebars" , "xml" ] } } , {
className : "tag" , begin : /<>|<\/>/ } , { className : "tag" ,
begin : t . concat ( /</ , t . lookahead ( t . concat ( a , t . either ( /\/>/ , />/ , /\s/ ) ) ) ) ,
end : /\/?>/ , contains : [ { className : "name" , begin : a , relevance : 0 , starts : l } ] } , {
className : "tag" , begin : t . concat ( /<\// , t . lookahead ( t . concat ( a , />/ ) ) ) , contains : [ {
className : "name" , begin : a , relevance : 0 } , { begin : />/ , relevance : 0 , endsParent : ! 0 } ] } ] }
} , grmr _asciidoc : e => { const t = e . regex , a = [ { className : "strong" ,
begin : /\*{2}([^\n]+?)\*{2}/ } , { className : "strong" ,
begin : t . concat ( /\*\*/ , /((\*(?!\*)|\\[^\n]|[^*\n\\])+\n)+/ , /(\*(?!\*)|\\[^\n]|[^*\n\\])*/ , /\*\*/ ) ,
relevance : 0 } , { className : "strong" , begin : /\B\*(\S|\S[^\n]*?\S)\*(?!\w)/ } , {
className : "strong" , begin : /\*[^\s]([^\n]+\n)+([^\n]+)\*/ } ] , n = [ {
className : "emphasis" , begin : /_{2}([^\n]+?)_{2}/ } , { className : "emphasis" ,
begin : t . concat ( /__/ , /((_(?!_)|\\[^\n]|[^_\n\\])+\n)+/ , /(_(?!_)|\\[^\n]|[^_\n\\])*/ , /__/ ) ,
relevance : 0 } , { className : "emphasis" , begin : /\b_(\S|\S[^\n]*?\S)_(?!\w)/ } , {
className : "emphasis" , begin : /_[^\s]([^\n]+\n)+([^\n]+)_/ } , { className : "emphasis" ,
begin : "\\B'(?!['\\s])" , end : "(\\n{2}|')" , contains : [ { begin : "\\\\'\\w" , relevance : 0
} ] , relevance : 0 } ] ; return { name : "AsciiDoc" , aliases : [ "adoc" ] ,
contains : [ e . COMMENT ( "^/{4,}\\n" , "\\n/{4,}$" , { relevance : 10
} ) , e . COMMENT ( "^//" , "$" , { relevance : 0 } ) , { className : "title" , begin : "^\\.\\w.*$" } , {
begin : "^[=\\*]{4,}\\n" , end : "\\n^[=\\*]{4,}$" , relevance : 10 } , { className : "section" ,
relevance : 10 , variants : [ { begin : "^(={1,6})[ \t].+?([ \t]\\1)?$" } , {
begin : "^[^\\[\\]\\n]+?\\n[=\\-~\\^\\+]{2,}$" } ] } , { className : "meta" ,
begin : "^:.+?:" , end : "\\s" , excludeEnd : ! 0 , relevance : 10 } , { className : "meta" ,
begin : "^\\[.+?\\]$" , relevance : 0 } , { className : "quote" , begin : "^_{4,}\\n" ,
end : "\\n_{4,}$" , relevance : 10 } , { className : "code" , begin : "^[\\-\\.]{4,}\\n" ,
end : "\\n[\\-\\.]{4,}$" , relevance : 10 } , { begin : "^\\+{4,}\\n" , end : "\\n\\+{4,}$" ,
contains : [ { begin : "<" , end : ">" , subLanguage : "xml" , relevance : 0 } ] , relevance : 10 } , {
className : "bullet" , begin : "^(\\*+|-+|\\.+|[^\\n]+?::)\\s+" } , { className : "symbol" ,
begin : "^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\s+" , relevance : 10 } , {
begin : /\\[*_`]/ } , { begin : /\\\\\*{2}[^\n]*?\*{2}/ } , { begin : /\\\\_{2}[^\n]*_{2}/ } , {
begin : /\\\\`{2}[^\n]*`{2}/ } , { begin : /[:;}][*_`](?![*_`])/ } , ... a , ... n , {
className : "string" , variants : [ { begin : "``.+?''" } , { begin : "`.+?'" } ] } , {
className : "code" , begin : /`{2}/ , end : /(\n{2}|`{2})/ } , { className : "code" ,
begin : "(`.+?`|\\+.+?\\+)" , relevance : 0 } , { className : "code" , begin : "^[ \\t]" ,
end : "$" , relevance : 0 } , { begin : "^'{3,}[ \\t]*$" , relevance : 10 } , {
begin : "(link:)?(http|https|ftp|file|irc|image:?):\\S+?\\[[^[]*?\\]" ,
returnBegin : ! 0 , contains : [ { begin : "(link|image:?):" , relevance : 0 } , {
className : "link" , begin : "\\w" , end : "[^\\[]+" , relevance : 0 } , { className : "string" ,
begin : "\\[" , end : "\\]" , excludeBegin : ! 0 , excludeEnd : ! 0 , relevance : 0 } ] , relevance : 10 } ]
} } , grmr _aspectj : e => {
const t = e . regex , a = [ "false" , "synchronized" , "int" , "abstract" , "float" , "private" , "char" , "boolean" , "static" , "null" , "if" , "const" , "for" , "true" , "while" , "long" , "throw" , "strictfp" , "finally" , "protected" , "import" , "native" , "final" , "return" , "void" , "enum" , "else" , "extends" , "implements" , "break" , "transient" , "new" , "catch" , "instanceof" , "byte" , "super" , "volatile" , "case" , "assert" , "short" , "package" , "default" , "double" , "public" , "try" , "this" , "switch" , "continue" , "throws" , "privileged" , "aspectOf" , "adviceexecution" , "proceed" , "cflowbelow" , "cflow" , "initialization" , "preinitialization" , "staticinitialization" , "withincode" , "target" , "within" , "execution" , "getWithinTypeName" , "handler" , "thisJoinPoint" , "thisJoinPointStaticPart" , "thisEnclosingJoinPointStaticPart" , "declare" , "parents" , "warning" , "error" , "soft" , "precedence" , "thisAspectInstance" ] , n = [ "get" , "set" , "args" , "call" ]
; return { name : "AspectJ" , keywords : a , illegal : /<\/|#/ ,
contains : [ e . COMMENT ( /\/\*\*/ , /\*\// , { relevance : 0 , contains : [ { begin : /\w+@/ ,
relevance : 0 } , { className : "doctag" , begin : /@[A-Za-z]+/ } ]
} ) , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , {
className : "class" , beginKeywords : "aspect" , end : /[{;=]/ , excludeEnd : ! 0 ,
illegal : /[:;"\[\]]/ , contains : [ {
beginKeywords : "extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton"
} , e . UNDERSCORE _TITLE _MODE , { begin : /\([^\)]*/ , end : /[)]+/ , keywords : a . concat ( n ) ,
excludeEnd : ! 1 } ] } , { className : "class" , beginKeywords : "class interface" , end : /[{;=]/ ,
excludeEnd : ! 0 , relevance : 0 , keywords : "class interface" , illegal : /[:"\[\]]/ ,
contains : [ { beginKeywords : "extends implements" } , e . UNDERSCORE _TITLE _MODE ] } , {
beginKeywords : "pointcut after before around throwing returning" , end : /[)]/ ,
excludeEnd : ! 1 , illegal : /["\[\]]/ , contains : [ {
begin : t . concat ( e . UNDERSCORE _IDENT _RE , /\s*\(/ ) , returnBegin : ! 0 ,
contains : [ e . UNDERSCORE _TITLE _MODE ] } ] } , { begin : /[:]/ , returnBegin : ! 0 , end : /[{;]/ ,
relevance : 0 , excludeEnd : ! 1 , keywords : a , illegal : /["\[\]]/ , contains : [ {
begin : t . concat ( e . UNDERSCORE _IDENT _RE , /\s*\(/ ) , keywords : a . concat ( n ) , relevance : 0
} , e . QUOTE _STRING _MODE ] } , { beginKeywords : "new throw" , relevance : 0 } , {
className : "function" ,
begin : /\w+ +\w+(\.\w+)?\s*\([^\)]*\)\s*((throws)[\w\s,]+)?[\{;]/ , returnBegin : ! 0 ,
end : /[{;=]/ , keywords : a , excludeEnd : ! 0 , contains : [ {
begin : t . concat ( e . UNDERSCORE _IDENT _RE , /\s*\(/ ) , returnBegin : ! 0 , relevance : 0 ,
contains : [ e . UNDERSCORE _TITLE _MODE ] } , { className : "params" , begin : /\(/ , end : /\)/ ,
relevance : 0 , keywords : a ,
contains : [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . C _NUMBER _MODE , e . C _BLOCK _COMMENT _MODE ]
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , e . C _NUMBER _MODE , {
className : "meta" , begin : /@[A-Za-z]+/ } ] } } , grmr _autohotkey : e => { const t = {
begin : "`[\\s\\S]" } ; return { name : "AutoHotkey" , case _insensitive : ! 0 , aliases : [ "ahk" ] ,
keywords : {
keyword : "Break Continue Critical Exit ExitApp Gosub Goto New OnExit Pause return SetBatchLines SetTimer Suspend Thread Throw Until ahk_id ahk_class ahk_pid ahk_exe ahk_group" ,
literal : "true false NOT AND OR" ,
built _in : "ComSpec Clipboard ClipboardAll ErrorLevel" } ,
contains : [ t , e . inherit ( e . QUOTE _STRING _MODE , { contains : [ t ] } ) , e . COMMENT ( ";" , "$" , {
relevance : 0 } ) , e . C _BLOCK _COMMENT _MODE , { className : "number" , begin : e . NUMBER _RE ,
relevance : 0 } , { className : "variable" , begin : "%[a-zA-Z0-9#_$@]+%" } , {
className : "built_in" , begin : "^\\s*\\w+\\s*(,|%)" } , { className : "title" , variants : [ {
begin : '^[^\\n";]+::(?!=)' } , { begin : '^[^\\n";]+:(?!=)' , relevance : 0 } ] } , {
className : "meta" , begin : "^\\s*#\\w+" , end : "$" , relevance : 0 } , { className : "built_in" ,
begin : "A_[a-zA-Z0-9]+" } , { begin : ",\\s*," } ] } } , grmr _autoit : e => { const t = {
variants : [ e . COMMENT ( ";" , "$" , { relevance : 0
} ) , e . COMMENT ( "#cs" , "#ce" ) , e . COMMENT ( "#comments-start" , "#comments-end" ) ] } , a = {
begin : "\\$[A-z0-9_]+" } , n = { className : "string" , variants : [ { begin : /"/ , end : /"/ ,
contains : [ { begin : /""/ , relevance : 0 } ] } , { begin : /'/ , end : /'/ , contains : [ { begin : /''/ ,
relevance : 0 } ] } ] } , i = { variants : [ e . BINARY _NUMBER _MODE , e . C _NUMBER _MODE ] } ; return {
name : "AutoIt" , case _insensitive : ! 0 , illegal : /\/\*/ , keywords : {
keyword : "ByRef Case Const ContinueCase ContinueLoop Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With" ,
built _in : " Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringRev
literal : "True False And Null Not Or Default" } , contains : [ t , a , n , i , {
className : "meta" , begin : "#" , end : "$" , keywords : {
keyword : [ "EndRegion" , "forcedef" , "forceref" , "ignorefunc" , "include" , "include-once" , "NoTrayIcon" , "OnAutoItStartRegister" , "pragma" , "Region" , "RequireAdmin" , "Tidy_Off" , "Tidy_On" , "Tidy_Parameters" ]
} , contains : [ { begin : /\\\n/ , relevance : 0 } , { beginKeywords : "include" , keywords : {
keyword : "include" } , end : "$" , contains : [ n , { className : "string" , variants : [ { begin : "<" ,
end : ">" } , { begin : /"/ , end : /"/ , contains : [ { begin : /""/ , relevance : 0 } ] } , { begin : /'/ ,
end : /'/ , contains : [ { begin : /''/ , relevance : 0 } ] } ] } ] } , n , t ] } , { className : "symbol" ,
begin : "@[A-z0-9_]+" } , { beginKeywords : "Func" , end : "$" , illegal : "\\$|\\[|%" ,
contains : [ e . inherit ( e . UNDERSCORE _TITLE _MODE , { className : "title.function" } ) , {
className : "params" , begin : "\\(" , end : "\\)" , contains : [ a , n , i ] } ] } ] } } ,
grmr _avrasm : e => ( { name : "AVR Assembly" , case _insensitive : ! 0 , keywords : {
$pattern : "\\.?" + e . IDENT _RE ,
keyword : "adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr" ,
built _in : "r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf" ,
meta : ".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set"
} , contains : [ e . C _BLOCK _COMMENT _MODE , e . COMMENT ( ";" , "$" , { relevance : 0
} ) , e . C _NUMBER _MODE , e . BINARY _NUMBER _MODE , { className : "number" ,
begin : "\\b(\\$[a-zA-Z0-9]+|0o[0-7]+)" } , e . QUOTE _STRING _MODE , { className : "string" ,
begin : "'" , end : "[^\\\\]'" , illegal : "[^\\\\][^']" } , { className : "symbol" ,
begin : "^[A-Za-z0-9_.$]+:" } , { className : "meta" , begin : "#" , end : "$" } , {
className : "subst" , begin : "@[0-9]+" } ] } ) , grmr _awk : e => ( { name : "Awk" , keywords : {
keyword : "BEGIN END if else while do for in break continue delete next nextfile function func exit|10"
} , contains : [ { className : "variable" , variants : [ { begin : /\$[\w\d#@][\w\d_]*/ } , {
begin : /\$\{(.*?)\}/ } ] } , { className : "string" , contains : [ e . BACKSLASH _ESCAPE ] ,
variants : [ { begin : /(u|b)?r?'''/ , end : /'''/ , relevance : 10 } , { begin : /(u|b)?r?"""/ ,
end : /"""/ , relevance : 10 } , { begin : /(u|r|ur)'/ , end : /'/ , relevance : 10 } , {
begin : /(u|r|ur)"/ , end : /"/ , relevance : 10 } , { begin : /(b|br)'/ , end : /'/ } , {
begin : /(b|br)"/ , end : /"/ } , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ]
} , e . REGEXP _MODE , e . HASH _COMMENT _MODE , e . NUMBER _MODE ] } ) , grmr _axapta : e => {
const t = e . UNDERSCORE _IDENT _RE , a = {
keyword : [ "abstract" , "as" , "asc" , "avg" , "break" , "breakpoint" , "by" , "byref" , "case" , "catch" , "changecompany" , "class" , "client" , "client" , "common" , "const" , "continue" , "count" , "crosscompany" , "delegate" , "delete_from" , "desc" , "display" , "div" , "do" , "edit" , "else" , "eventhandler" , "exists" , "extends" , "final" , "finally" , "firstfast" , "firstonly" , "firstonly1" , "firstonly10" , "firstonly100" , "firstonly1000" , "flush" , "for" , "forceliterals" , "forcenestedloop" , "forceplaceholders" , "forceselectorder" , "forupdate" , "from" , "generateonly" , "group" , "hint" , "if" , "implements" , "in" , "index" , "insert_recordset" , "interface" , "internal" , "is" , "join" , "like" , "maxof" , "minof" , "mod" , "namespace" , "new" , "next" , "nofetch" , "notexists" , "optimisticlock" , "order" , "outer" , "pessimisticlock" , "print" , "private" , "protected" , "public" , "readonly" , "repeatableread" , "retry" , "return" , "reverse" , "select" , "server" , "setting" , "static" , "sum" , "super" , "switch" , "this" , "throw" , "try" , "ttsabort" , "ttsbegin" , "ttscommit" , "unchecked" , "update_recordset" , "using" , "validtimestate" , "void" , "where" , "while" ] ,
built _in : [ "anytype" , "boolean" , "byte" , "char" , "container" , "date" , "double" , "enum" , "guid" , "int" , "int64" , "long" , "real" , "short" , "str" , "utcdatetime" , "var" ] ,
literal : [ "default" , "false" , "null" , "true" ] } , n = { variants : [ {
match : [ /(class|interface)\s+/ , t , /\s+(extends|implements)\s+/ , t ] } , {
match : [ /class\s+/ , t ] } ] , scope : { 2 : "title.class" , 4 : "title.class.inherited" } ,
keywords : a } ; return { name : "X++" , aliases : [ "x++" ] , keywords : a ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . C _NUMBER _MODE , {
className : "meta" , begin : "#" , end : "$" } , n ] } } , grmr _bash : e => { const t = e . regex , a = { } , n = {
begin : /\$\{/ , end : /\}/ , contains : [ "self" , { begin : /:-/ , contains : [ a ] } ] }
; Object . assign ( a , { className : "variable" , variants : [ {
begin : t . concat ( /\$[\w\d#@][\w\d_]*/ , "(?![\\w\\d])(?![$])" ) } , n ] } ) ; const i = {
2021-10-19 23:53:22 -07:00
className : "subst" , begin : /\$\(/ , end : /\)/ , contains : [ e . BACKSLASH _ESCAPE ] } , r = {
begin : /<<-?\s*(?=\w+)/ , starts : { contains : [ e . END _SAME _AS _BEGIN ( { begin : /(\w+)/ ,
end : /(\w+)/ , className : "string" } ) ] } } , s = { className : "string" , begin : /"/ , end : /"/ ,
2022-01-15 21:29:41 -08:00
contains : [ e . BACKSLASH _ESCAPE , a , i ] } ; i . contains . push ( s ) ; const o = { begin : /\$\(\(/ ,
end : /\)\)/ , contains : [ { begin : /\d+#[0-9a-f]+/ , className : "number" } , e . NUMBER _MODE , a ]
2021-10-19 23:53:22 -07:00
} , l = e . SHEBANG ( { binary : "(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)" , relevance : 10
2022-01-15 21:29:41 -08:00
} ) , _ = { className : "function" , begin : /\w[\w\d_]*\s*\(\s*\)\s*\{/ , returnBegin : ! 0 ,
2021-10-19 23:53:22 -07:00
contains : [ e . inherit ( e . TITLE _MODE , { begin : /\w[\w\d_]*/ } ) ] , relevance : 0 } ; return {
name : "Bash" , aliases : [ "sh" ] , keywords : { $pattern : /\b[a-z._-]+\b/ ,
keyword : [ "if" , "then" , "else" , "elif" , "fi" , "for" , "while" , "in" , "do" , "done" , "case" , "esac" , "function" ] ,
literal : [ "true" , "false" ] ,
built _in : [ "break" , "cd" , "continue" , "eval" , "exec" , "exit" , "export" , "getopts" , "hash" , "pwd" , "readonly" , "return" , "shift" , "test" , "times" , "trap" , "umask" , "unset" , "alias" , "bind" , "builtin" , "caller" , "command" , "declare" , "echo" , "enable" , "help" , "let" , "local" , "logout" , "mapfile" , "printf" , "read" , "readarray" , "source" , "type" , "typeset" , "ulimit" , "unalias" , "set" , "shopt" , "autoload" , "bg" , "bindkey" , "bye" , "cap" , "chdir" , "clone" , "comparguments" , "compcall" , "compctl" , "compdescribe" , "compfiles" , "compgroups" , "compquote" , "comptags" , "comptry" , "compvalues" , "dirs" , "disable" , "disown" , "echotc" , "echoti" , "emulate" , "fc" , "fg" , "float" , "functions" , "getcap" , "getln" , "history" , "integer" , "jobs" , "kill" , "limit" , "log" , "noglob" , "popd" , "print" , "pushd" , "pushln" , "rehash" , "sched" , "setcap" , "setopt" , "stat" , "suspend" , "ttyctl" , "unfunction" , "unhash" , "unlimit" , "unsetopt" , "vared" , "wait" , "whence" , "where" , "which" , "zcompile" , "zformat" , "zftp" , "zle" , "zmodload" , "zparseopts" , "zprof" , "zpty" , "zregexparse" , "zsocket" , "zstyle" , "ztcp" , "chcon" , "chgrp" , "chown" , "chmod" , "cp" , "dd" , "df" , "dir" , "dircolors" , "ln" , "ls" , "mkdir" , "mkfifo" , "mknod" , "mktemp" , "mv" , "realpath" , "rm" , "rmdir" , "shred" , "sync" , "touch" , "truncate" , "vdir" , "b2sum" , "base32" , "base64" , "cat" , "cksum" , "comm" , "csplit" , "cut" , "expand" , "fmt" , "fold" , "head" , "join" , "md5sum" , "nl" , "numfmt" , "od" , "paste" , "ptx" , "pr" , "sha1sum" , "sha224sum" , "sha256sum" , "sha384sum" , "sha512sum" , "shuf" , "sort" , "split" , "sum" , "tac" , "tail" , "tr" , "tsort" , "unexpand" , "uniq" , "wc" , "arch" , "basename" , "chroot" , "date" , "dirname" , "du" , "echo" , "env" , "expr" , "factor" , "groups" , "hostid" , "id" , "link" , "logname" , "nice" , "nohup" , "nproc" , "pathchk" , "pinky" , "printenv" , "printf" , "pwd" , "readlink" , "runcon" , "seq" , "sleep" , "stat" , "stdbuf" , "stty" , "tee" , "test" , "timeout" , "tty" , "uname" , "unlink" , "uptime" , "users" , "who" , "whoami" , "yes" ]
2022-01-15 21:29:41 -08:00
} , contains : [ l , e . SHEBANG ( ) , _ , o , e . HASH _COMMENT _MODE , r , { match : /(\/[a-z._-]+)+/ } , s , {
className : "" , begin : /\\"/ } , { className : "string" , begin : /'/ , end : /'/ } , a ] } } ,
grmr _basic : e => ( { name : "BASIC" , case _insensitive : ! 0 , illegal : "^." , keywords : {
$pattern : "[a-zA-Z][a-zA-Z0-9_$%!#]*" ,
keyword : [ "ABS" , "ASC" , "AND" , "ATN" , "AUTO|0" , "BEEP" , "BLOAD|10" , "BSAVE|10" , "CALL" , "CALLS" , "CDBL" , "CHAIN" , "CHDIR" , "CHR$|10" , "CINT" , "CIRCLE" , "CLEAR" , "CLOSE" , "CLS" , "COLOR" , "COM" , "COMMON" , "CONT" , "COS" , "CSNG" , "CSRLIN" , "CVD" , "CVI" , "CVS" , "DATA" , "DATE$" , "DEFDBL" , "DEFINT" , "DEFSNG" , "DEFSTR" , "DEF|0" , "SEG" , "USR" , "DELETE" , "DIM" , "DRAW" , "EDIT" , "END" , "ENVIRON" , "ENVIRON$" , "EOF" , "EQV" , "ERASE" , "ERDEV" , "ERDEV$" , "ERL" , "ERR" , "ERROR" , "EXP" , "FIELD" , "FILES" , "FIX" , "FOR|0" , "FRE" , "GET" , "GOSUB|10" , "GOTO" , "HEX$" , "IF" , "THEN" , "ELSE|0" , "INKEY$" , "INP" , "INPUT" , "INPUT#" , "INPUT$" , "INSTR" , "IMP" , "INT" , "IOCTL" , "IOCTL$" , "KEY" , "ON" , "OFF" , "LIST" , "KILL" , "LEFT$" , "LEN" , "LET" , "LINE" , "LLIST" , "LOAD" , "LOC" , "LOCATE" , "LOF" , "LOG" , "LPRINT" , "USING" , "LSET" , "MERGE" , "MID$" , "MKDIR" , "MKD$" , "MKI$" , "MKS$" , "MOD" , "NAME" , "NEW" , "NEXT" , "NOISE" , "NOT" , "OCT$" , "ON" , "OR" , "PEN" , "PLAY" , "STRIG" , "OPEN" , "OPTION" , "BASE" , "OUT" , "PAINT" , "PALETTE" , "PCOPY" , "PEEK" , "PMAP" , "POINT" , "POKE" , "POS" , "PRINT" , "PRINT]" , "PSET" , "PRESET" , "PUT" , "RANDOMIZE" , "READ" , "REM" , "RENUM" , "RESET|0" , "RESTORE" , "RESUME" , "RETURN|0" , "RIGHT$" , "RMDIR" , "RND" , "RSET" , "RUN" , "SAVE" , "SCREEN" , "SGN" , "SHELL" , "SIN" , "SOUND" , "SPACE$" , "SPC" , "SQR" , "STEP" , "STICK" , "STOP" , "STR$" , "STRING$" , "SWAP" , "SYSTEM" , "TAB" , "TAN" , "TIME$" , "TIMER" , "TROFF" , "TRON" , "TO" , "USR" , "VAL" , "VARPTR" , "VARPTR$" , "VIEW" , "WAIT" , "WHILE" , "WEND" , "WIDTH" , "WINDOW" , "WRITE" , "XOR" ]
} , contains : [ e . QUOTE _STRING _MODE , e . COMMENT ( "REM" , "$" , { relevance : 10
} ) , e . COMMENT ( "'" , "$" , { relevance : 0 } ) , { className : "symbol" , begin : "^[0-9]+ " ,
relevance : 10 } , { className : "number" , begin : "\\b\\d+(\\.\\d+)?([edED]\\d+)?[#!]?" ,
relevance : 0 } , { className : "number" , begin : "(&[hH][0-9a-fA-F]{1,4})" } , {
className : "number" , begin : "(&[oO][0-7]{1,6})" } ] } ) , grmr _bnf : e => ( {
name : "Backus\u2013Naur Form" , contains : [ { className : "attribute" , begin : /</ , end : />/
} , { begin : /::=/ , end : /$/ , contains : [ { begin : /</ , end : />/
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ]
} ] } ) , grmr _brainfuck : e => { const t = { className : "literal" , begin : /[+-]/ , relevance : 0 }
; return { name : "Brainfuck" , aliases : [ "bf" ] ,
contains : [ e . COMMENT ( "[^\\[\\]\\.,\\+\\-<> \r\n]" , "[\\[\\]\\.,\\+\\-<> \r\n]" , {
returnEnd : ! 0 , relevance : 0 } ) , { className : "title" , begin : "[\\[\\]]" , relevance : 0 } , {
className : "string" , begin : "[\\.,]" , relevance : 0 } , { begin : /(?:\+\+|--)/ , contains : [ t ]
} , t ] } } , grmr _c : e => { const t = e . regex , a = e . COMMENT ( "//" , "$" , { contains : [ { begin : /\\\n/
} ]
} ) , n = "[a-zA-Z_]\\w*::" , i = "(decltype\\(auto\\)|" + t . optional ( n ) + "[a-zA-Z_]\\w*" + t . optional ( "<[^<>]+>" ) + ")" , r = {
2021-10-19 23:53:22 -07:00
className : "type" , variants : [ { begin : "\\b[a-z\\d_]*_t\\b" } , {
match : /\batomic_[a-z]{3,6}\b/ } ] } , s = { className : "string" , variants : [ {
begin : '(u8?|U|L)?"' , end : '"' , illegal : "\\n" , contains : [ e . BACKSLASH _ESCAPE ] } , {
begin : "(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)" ,
end : "'" , illegal : "." } , e . END _SAME _AS _BEGIN ( {
begin : /(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/ , end : /\)([^()\\ ]{0,16})"/ } ) ] } , o = {
className : "number" , variants : [ { begin : "\\b(0b[01']+)" } , {
begin : "(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)"
} , {
begin : "(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
} ] , relevance : 0 } , l = { className : "meta" , begin : /#\s*[a-z]+\b/ , end : /$/ , keywords : {
keyword : "if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include"
} , contains : [ { begin : /\\\n/ , relevance : 0 } , e . inherit ( s , { className : "string" } ) , {
2022-01-15 21:29:41 -08:00
className : "string" , begin : /<.*?>/ } , a , e . C _BLOCK _COMMENT _MODE ] } , _ = {
className : "title" , begin : t . optional ( n ) + e . IDENT _RE , relevance : 0
} , c = t . optional ( n ) + e . IDENT _RE + "\\s*\\(" , d = {
2021-10-19 23:53:22 -07:00
keyword : [ "asm" , "auto" , "break" , "case" , "continue" , "default" , "do" , "else" , "enum" , "extern" , "for" , "fortran" , "goto" , "if" , "inline" , "register" , "restrict" , "return" , "sizeof" , "struct" , "switch" , "typedef" , "union" , "volatile" , "while" , "_Alignas" , "_Alignof" , "_Atomic" , "_Generic" , "_Noreturn" , "_Static_assert" , "_Thread_local" , "alignas" , "alignof" , "noreturn" , "static_assert" , "thread_local" , "_Pragma" ] ,
type : [ "float" , "double" , "signed" , "unsigned" , "int" , "short" , "long" , "char" , "void" , "_Bool" , "_Complex" , "_Imaginary" , "_Decimal32" , "_Decimal64" , "_Decimal128" , "const" , "static" , "complex" , "bool" , "imaginary" ] ,
literal : "true false NULL" ,
built _in : "std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr"
2022-01-15 21:29:41 -08:00
} , m = [ l , r , a , e . C _BLOCK _COMMENT _MODE , o , s ] , p = { variants : [ { begin : /=/ , end : /;/ } , {
2021-10-19 23:53:22 -07:00
begin : /\(/ , end : /\)/ } , { beginKeywords : "new throw return else" , end : /;/ } ] ,
2022-01-15 21:29:41 -08:00
keywords : d , contains : m . concat ( [ { begin : /\(/ , end : /\)/ , keywords : d ,
contains : m . concat ( [ "self" ] ) , relevance : 0 } ] ) , relevance : 0 } , u = {
begin : "(" + i + "[\\*&\\s]+)+" + c , returnBegin : ! 0 , end : /[{;=]/ , excludeEnd : ! 0 ,
keywords : d , illegal : /[^\w\s\*&:<>.]/ , contains : [ { begin : "decltype\\(auto\\)" ,
keywords : d , relevance : 0 } , { begin : c , returnBegin : ! 0 , contains : [ e . inherit ( _ , {
2021-10-19 23:53:22 -07:00
className : "title.function" } ) ] , relevance : 0 } , { relevance : 0 , match : /,/ } , {
2022-01-15 21:29:41 -08:00
className : "params" , begin : /\(/ , end : /\)/ , keywords : d , relevance : 0 ,
contains : [ a , e . C _BLOCK _COMMENT _MODE , s , o , r , { begin : /\(/ , end : /\)/ , keywords : d ,
relevance : 0 , contains : [ "self" , a , e . C _BLOCK _COMMENT _MODE , s , o , r ] } ]
} , r , a , e . C _BLOCK _COMMENT _MODE , l ] } ; return { name : "C" , aliases : [ "h" ] , keywords : d ,
disableAutodetect : ! 0 , illegal : "</" , contains : [ ] . concat ( p , u , m , [ l , {
begin : e . IDENT _RE + "::" , keywords : d } , { className : "class" ,
2021-10-19 23:53:22 -07:00
beginKeywords : "enum class struct union" , end : /[{;:<>=]/ , contains : [ {
beginKeywords : "final class struct" } , e . TITLE _MODE ] } ] ) , exports : { preprocessor : l ,
2022-01-15 21:29:41 -08:00
strings : s , keywords : d } } } , grmr _cal : e => {
const t = e . regex , a = [ "div" , "mod" , "in" , "and" , "or" , "not" , "xor" , "asserterror" , "begin" , "case" , "do" , "downto" , "else" , "end" , "exit" , "for" , "local" , "if" , "of" , "repeat" , "then" , "to" , "until" , "while" , "with" , "var" ] , n = [ e . C _LINE _COMMENT _MODE , e . COMMENT ( /\{/ , /\}/ , {
relevance : 0 } ) , e . COMMENT ( /\(\*/ , /\*\)/ , { relevance : 10 } ) ] , i = { className : "string" ,
begin : /'/ , end : /'/ , contains : [ { begin : /''/ } ] } , r = { className : "string" , begin : /(#\d+)+/
} , s = { match : [ /procedure/ , /\s+/ , /[a-zA-Z_][\w@]*/ , /\s*/ ] , scope : { 1 : "keyword" ,
3 : "title.function" } , contains : [ { className : "params" , begin : /\(/ , end : /\)/ ,
keywords : a , contains : [ i , r , e . NUMBER _MODE ] } , ... n ] } , o = {
match : [ /OBJECT/ , /\s+/ , t . either ( "Table" , "Form" , "Report" , "Dataport" , "Codeunit" , "XMLport" , "MenuSuite" , "Page" , "Query" ) , /\s+/ , /\d+/ , /\s+(?=[^\s])/ , /.*/ , /$/ ] ,
relevance : 3 , scope : { 1 : "keyword" , 3 : "type" , 5 : "number" , 7 : "title" } } ; return {
name : "C/AL" , case _insensitive : ! 0 , keywords : { keyword : a , literal : "false true" } ,
illegal : /\/\*/ , contains : [ { match : /[\w]+(?=\=)/ , scope : "attribute" , relevance : 0
} , i , r , { className : "number" , begin : "\\b\\d+(\\.\\d+)?(DT|D|T)" , relevance : 0 } , {
className : "string" , begin : '"' , end : '"' } , e . NUMBER _MODE , o , s ] } } , grmr _capnproto : e => {
const t = { variants : [ { match : [ /(struct|enum|interface)/ , /\s+/ , e . IDENT _RE ] } , {
match : [ /extends/ , /\s*\(/ , e . IDENT _RE , /\s*\)/ ] } ] , scope : { 1 : "keyword" ,
3 : "title.class" } } ; return { name : "Cap\u2019n Proto" , aliases : [ "capnp" ] , keywords : {
keyword : [ "struct" , "enum" , "interface" , "union" , "group" , "import" , "using" , "const" , "annotation" , "extends" , "in" , "of" , "on" , "as" , "with" , "from" , "fixed" ] ,
type : [ "Void" , "Bool" , "Int8" , "Int16" , "Int32" , "Int64" , "UInt8" , "UInt16" , "UInt32" , "UInt64" , "Float32" , "Float64" , "Text" , "Data" , "AnyPointer" , "AnyStruct" , "Capability" , "List" ] ,
literal : [ "true" , "false" ] } ,
contains : [ e . QUOTE _STRING _MODE , e . NUMBER _MODE , e . HASH _COMMENT _MODE , {
className : "meta" , begin : /@0x[\w\d]{16};/ , illegal : /\n/ } , { className : "symbol" ,
begin : /@\d+\b/ } , t ] } } , grmr _ceylon : e => {
const t = [ "assembly" , "module" , "package" , "import" , "alias" , "class" , "interface" , "object" , "given" , "value" , "assign" , "void" , "function" , "new" , "of" , "extends" , "satisfies" , "abstracts" , "in" , "out" , "return" , "break" , "continue" , "throw" , "assert" , "dynamic" , "if" , "else" , "switch" , "case" , "for" , "while" , "try" , "catch" , "finally" , "then" , "let" , "this" , "outer" , "super" , "is" , "exists" , "nonempty" ] , a = {
className : "subst" , excludeBegin : ! 0 , excludeEnd : ! 0 , begin : /``/ , end : /``/ , keywords : t ,
relevance : 10 } , n = [ { className : "string" , begin : '"""' , end : '"""' , relevance : 10 } , {
className : "string" , begin : '"' , end : '"' , contains : [ a ] } , { className : "string" ,
begin : "'" , end : "'" } , { className : "number" ,
begin : "#[0-9a-fA-F_]+|\\$[01_]+|[0-9_]+(?:\\.[0-9_](?:[eE][+-]?\\d+)?)?[kMGTPmunpf]?" ,
relevance : 0 } ] ; return a . contains = n , { name : "Ceylon" , keywords : {
keyword : t . concat ( [ "shared" , "abstract" , "formal" , "default" , "actual" , "variable" , "late" , "native" , "deprecated" , "final" , "sealed" , "annotation" , "suppressWarnings" , "small" ] ) ,
meta : [ "doc" , "by" , "license" , "see" , "throws" , "tagged" ] } ,
illegal : "\\$[^01]|#[^0-9a-fA-F]" ,
contains : [ e . C _LINE _COMMENT _MODE , e . COMMENT ( "/\\*" , "\\*/" , { contains : [ "self" ] } ) , {
className : "meta" , begin : '@[a-z]\\w*(?::"[^"]*")?' } ] . concat ( n ) } } , grmr _clean : e => ( {
name : "Clean" , aliases : [ "icl" , "dcl" ] , keywords : {
keyword : [ "if" , "let" , "in" , "with" , "where" , "case" , "of" , "class" , "instance" , "otherwise" , "implementation" , "definition" , "system" , "module" , "from" , "import" , "qualified" , "as" , "special" , "code" , "inline" , "foreign" , "export" , "ccall" , "stdcall" , "generic" , "derive" , "infix" , "infixl" , "infixr" ] ,
built _in : "Int Real Char Bool" , literal : "True False" } ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . C _NUMBER _MODE , {
begin : "->|<-[|:]?|#!?|>>=|\\{\\||\\|\\}|:==|=:|<>" } ] } ) , grmr _clojure : e => {
const t = "a-zA-Z_\\-!.?+*=<>&'" , a = "[#]?[" + t + "][" + t + "0-9/;:$#]*" , n = "def defonce defprotocol defstruct defmulti defmethod defn- defn defmacro deftype defrecord" , i = {
$pattern : a ,
built _in : n + " cond apply if-not if-let if not not= =|0 <|0 >|0 <=|0 >=|0 ==|0 +|0 /|0 *|0 -|0 rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy first rest cons cast coll last butlast sigs reify second ffirst fnext nfirst nnext meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize"
} , r = { begin : a , relevance : 0 } , s = { scope : "number" , relevance : 0 , variants : [ {
match : /[-+]?0[xX][0-9a-fA-F]+N?/ } , { match : /[-+]?0[0-7]+N?/ } , {
match : /[-+]?[1-9][0-9]?[rR][0-9a-zA-Z]+N?/ } , { match : /[-+]?[0-9]+\/[0-9]+N?/ } , {
match : /[-+]?[0-9]+((\.[0-9]*([eE][+-]?[0-9]+)?M?)|([eE][+-]?[0-9]+M?|M))/ } , {
match : /[-+]?([1-9][0-9]*|0)N?/ } ] } , o = { scope : "character" , variants : [ {
match : /\\o[0-3]?[0-7]{1,2}/ } , { match : /\\u[0-9a-fA-F]{4}/ } , {
match : /\\(newline|space|tab|formfeed|backspace|return)/ } , { match : /\\\S/ ,
relevance : 0 } ] } , l = { scope : "regex" , begin : /#"/ , end : /"/ , contains : [ e . BACKSLASH _ESCAPE ]
} , _ = e . inherit ( e . QUOTE _STRING _MODE , { illegal : null } ) , c = { scope : "punctuation" ,
match : /,/ , relevance : 0 } , d = e . COMMENT ( ";" , "$" , { relevance : 0 } ) , m = {
className : "literal" , begin : /\b(true|false|nil)\b/ } , p = {
begin : "\\[|(#::?" + a + ")?\\{" , end : "[\\]\\}]" , relevance : 0 } , u = { className : "symbol" ,
begin : "[:]{1,2}" + a } , E = { begin : "\\(" , end : "\\)" } , S = { endsWithParent : ! 0 , relevance : 0
} , g = { keywords : i , className : "name" , begin : a , relevance : 0 , starts : S
} , T = [ c , E , o , l , _ , d , u , p , s , m , r ] , b = { beginKeywords : n , keywords : { $pattern : a , keyword : n } ,
end : '(\\[|#|\\d|"|:|\\{|\\)|\\(|$)' , contains : [ { className : "title" , begin : a ,
relevance : 0 , excludeEnd : ! 0 , endsParent : ! 0 } ] . concat ( T ) }
; return E . contains = [ b , g , S ] , S . contains = T , p . contains = T , { name : "Clojure" ,
aliases : [ "clj" , "edn" ] , illegal : /\S/ , contains : [ c , E , o , l , _ , d , u , p , s , m ] } } ,
grmr _clojure _repl : e => ( { name : "Clojure REPL" , contains : [ { className : "meta" ,
begin : /^([\w.-]+|\s*#_)?=>/ , starts : { end : /$/ , subLanguage : "clojure" } } ] } ) ,
grmr _cmake : e => ( { name : "CMake" , aliases : [ "cmake.in" ] , case _insensitive : ! 0 , keywords : {
keyword : "break cmake_host_system_information cmake_minimum_required cmake_parse_arguments cmake_policy configure_file continue elseif else endforeach endfunction endif endmacro endwhile execute_process file find_file find_library find_package find_path find_program foreach function get_cmake_property get_directory_property get_filename_component get_property if include include_guard list macro mark_as_advanced math message option return separate_arguments set_directory_properties set_property set site_name string unset variable_watch while add_compile_definitions add_compile_options add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_link_options add_subdirectory add_test aux_source_directory build_command create_test_sourcelist define_property enable_language enable_testing export fltk_wrap_ui get_source_file_property get_target_property get_test_property include_directories include_external_msproject include_regular_expression install link_directories link_libraries load_cache project qt_wrap_cpp qt_wrap_ui remove_definitions set_source_files_properties set_target_properties set_tests_properties source_group target_compile_definitions target_compile_features target_compile_options target_include_directories target_link_directories target_link_libraries target_link_options target_sources try_compile try_run ctest_build ctest_configure ctest_coverage ctest_empty_binary_directory ctest_memcheck ctest_read_custom_files ctest_run_script ctest_sleep ctest_start ctest_submit ctest_test ctest_update ctest_upload build_name exec_program export_library_dependencies install_files install_programs install_targets load_command make_directory output_required_files remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or not command policy target test exists is_newer_than is_directory is_symlink is_absolute matches less greater equal less_equal greater_equal strless strgreater strequal strless_equal strgreater_equal version_less version_greater version_equal version_less_equal version_greater_equal in_list defined"
} , contains : [ { className : "variable" , begin : /\$\{/ , end : /\}/
} , e . HASH _COMMENT _MODE , e . QUOTE _STRING _MODE , e . NUMBER _MODE ] } ) ,
grmr _coffeescript : e => { const t = {
keyword : re . concat ( [ "then" , "unless" , "until" , "loop" , "by" , "when" , "and" , "or" , "is" , "isnt" , "not" ] ) . filter ( ( a = [ "var" , "const" , "let" , "function" , "static" ] ,
e => ! a . includes ( e ) ) ) , literal : se . concat ( [ "yes" , "no" , "on" , "off" ] ) ,
built _in : de . concat ( [ "npm" , "print" ] ) } ; var a
; const n = "[A-Za-z$_][0-9A-Za-z$_]*" , i = { className : "subst" , begin : /#\{/ , end : /\}/ ,
keywords : t } , r = [ e . BINARY _NUMBER _MODE , e . inherit ( e . C _NUMBER _MODE , { starts : {
end : "(\\s*/)?" , relevance : 0 } } ) , { className : "string" , variants : [ { begin : /'''/ ,
end : /'''/ , contains : [ e . BACKSLASH _ESCAPE ] } , { begin : /'/ , end : /'/ ,
contains : [ e . BACKSLASH _ESCAPE ] } , { begin : /"""/ , end : /"""/ ,
contains : [ e . BACKSLASH _ESCAPE , i ] } , { begin : /"/ , end : /"/ ,
contains : [ e . BACKSLASH _ESCAPE , i ] } ] } , { className : "regexp" , variants : [ { begin : "///" ,
end : "///" , contains : [ i , e . HASH _COMMENT _MODE ] } , { begin : "//[gim]{0,3}(?=\\W)" ,
relevance : 0 } , { begin : /\/(?![ *]).*?(?![\\]).\/[gim]{0,3}(?=\W)/ } ] } , { begin : "@" + n
} , { subLanguage : "javascript" , excludeBegin : ! 0 , excludeEnd : ! 0 , variants : [ {
begin : "```" , end : "```" } , { begin : "`" , end : "`" } ] } ] ; i . contains = r
; const s = e . inherit ( e . TITLE _MODE , { begin : n } ) , o = "(\\(.*\\)\\s*)?\\B[-=]>" , l = {
className : "params" , begin : "\\([^\\(]" , returnBegin : ! 0 , contains : [ { begin : /\(/ ,
end : /\)/ , keywords : t , contains : [ "self" ] . concat ( r ) } ] } , _ = { variants : [ {
match : [ /class\s+/ , n , /\s+extends\s+/ , n ] } , { match : [ /class\s+/ , n ] } ] , scope : {
2 : "title.class" , 4 : "title.class.inherited" } , keywords : t } ; return {
name : "CoffeeScript" , aliases : [ "coffee" , "cson" , "iced" ] , keywords : t , illegal : /\/\*/ ,
contains : [ ... r , e . COMMENT ( "###" , "###" ) , e . HASH _COMMENT _MODE , { className : "function" ,
begin : "^\\s*" + n + "\\s*=\\s*" + o , end : "[-=]>" , returnBegin : ! 0 , contains : [ s , l ] } , {
begin : /[:\(,=]\s*/ , relevance : 0 , contains : [ { className : "function" , begin : o ,
end : "[-=]>" , returnBegin : ! 0 , contains : [ l ] } ] } , _ , { begin : n + ":" , end : ":" ,
returnBegin : ! 0 , returnEnd : ! 0 , relevance : 0 } ] } } , grmr _coq : e => ( { name : "Coq" , keywords : {
keyword : [ "_|0" , "as" , "at" , "cofix" , "else" , "end" , "exists" , "exists2" , "fix" , "for" , "forall" , "fun" , "if" , "IF" , "in" , "let" , "match" , "mod" , "Prop" , "return" , "Set" , "then" , "Type" , "using" , "where" , "with" , "Abort" , "About" , "Add" , "Admit" , "Admitted" , "All" , "Arguments" , "Assumptions" , "Axiom" , "Back" , "BackTo" , "Backtrack" , "Bind" , "Blacklist" , "Canonical" , "Cd" , "Check" , "Class" , "Classes" , "Close" , "Coercion" , "Coercions" , "CoFixpoint" , "CoInductive" , "Collection" , "Combined" , "Compute" , "Conjecture" , "Conjectures" , "Constant" , "constr" , "Constraint" , "Constructors" , "Context" , "Corollary" , "CreateHintDb" , "Cut" , "Declare" , "Defined" , "Definition" , "Delimit" , "Dependencies" , "Dependent" , "Derive" , "Drop" , "eauto" , "End" , "Equality" , "Eval" , "Example" , "Existential" , "Existentials" , "Existing" , "Export" , "exporting" , "Extern" , "Extract" , "Extraction" , "Fact" , "Field" , "Fields" , "File" , "Fixpoint" , "Focus" , "for" , "From" , "Function" , "Functional" , "Generalizable" , "Global" , "Goal" , "Grab" , "Grammar" , "Graph" , "Guarded" , "Heap" , "Hint" , "HintDb" , "Hints" , "Hypotheses" , "Hypothesis" , "ident" , "Identity" , "If" , "Immediate" , "Implicit" , "Import" , "Include" , "Inductive" , "Infix" , "Info" , "Initial" , "Inline" , "Inspect" , "Instance" , "Instances" , "Intro" , "Intros" , "Inversion" , "Inversion_clear" , "Language" , "Left" , "Lemma" , "Let" , "Libraries" , "Library" , "Load" , "LoadPath" , "Local" , "Locate" , "Ltac" , "ML" , "Mode" , "Module" , "Modules" , "Monomorphic" , "Morphism" , "Next" , "NoInline" , "Notation" , "Obligation" , "Obligations" , "Opaque" , "Open" , "Optimize" , "Options" , "Parameter" , "Parameters" , "Parametric" , "Path" , "Paths" , "pattern" , "Polymorphic" , "Preterm" , "Print" , "Printing" , "Program" , "Projections" , "Proof" , "Proposition" , "Pwd" , "Qed" , "Quit" , "Rec" , "Record" , "Recursive" , "Redirect" , "Relation" , "Remark" , "Remove" , "Require" , "Reserved" , "Reset" , "Resolve" , "Restart" , "Rewrite" , "Right" , "Ring" , "Rings" , "Save" , "Scheme" , "Scope" , "Scopes" , "Script" , "Search" , "SearchAbout" , "SearchHead" , "SearchPattern" , "SearchRewrite" , "Section" , "Separate" , "Set" , "Setoid" , "Show" , "Solve" , "Sorted" , "Step" , "Strategies" , "Strategy" , "Structure" , "SubClass" , "Table" , "Tables" , "Tactic" , "Term" , "Test" , "Theorem" , "Time" , "Timeout" , "Transparent" , "Type" , "Typeclasses" , "Types" , "Undelimit" , "Undo" , "Unfocus" , "Unfocused" , "Unfold" , "Universe" , "Universes" , "Unset" , "Unshelve" , "using" , "Variable" , "Variables" , "Variant" , "Verbose" , "Visibility" , "where" , "with" ] ,
built _in : [ "abstract" , "absurd" , "admit" , "after" , "apply" , "as" , "assert" , "assumption" , "at" , "auto" , "autorewrite" , "autounfold" , "before" , "bottom" , "btauto" , "by" , "case" , "case_eq" , "cbn" , "cbv" , "change" , "classical_left" , "classical_right" , "clear" , "clearbody" , "cofix" , "compare" , "compute" , "congruence" , "constr_eq" , "constructor" , "contradict" , "contradiction" , "cut" , "cutrewrite" , "cycle" , "decide" , "decompose" , "dependent" , "destruct" , "destruction" , "dintuition" , "discriminate" , "discrR" , "do" , "double" , "dtauto" , "eapply" , "eassumption" , "eauto" , "ecase" , "econstructor" , "edestruct" , "ediscriminate" , "eelim" , "eexact" , "eexists" , "einduction" , "einjection" , "eleft" , "elim" , "elimtype" , "enough" , "equality" , "erewrite" , "eright" , "esimplify_eq" , "esplit" , "evar" , "exact" , "exactly_once" , "exfalso" , "exists" , "f_equal" , "fail" , "field" , "field_simplify" , "field_simplify_eq" , "first" , "firstorder" , "fix" , "fold" , "fourier" , "functional" , "generalize" , "generalizing" , "gfail" , "give_up" , "has_evar" , "hnf" , "idtac" , "in" , "induction" , "injection" , "instantiate" , "intro" , "intro_pattern" , "intros" , "intuition" , "inversion" , "inversion_clear" , "is_evar" , "is_var" , "lapply" , "lazy" , "left" , "lia" , "lra" , "move" , "native_compute" , "nia" , "nsatz" , "omega" , "once" , "pattern" , "pose" , "progress" , "proof" , "psatz" , "quote" , "record" , "red" , "refine" , "reflexivity" , "remember" , "rename" , "repeat" , "replace" , "revert" , "revgoals" , "rewrite" , "rewrite_strat" , "right" , "ring" , "ring_simplify" , "rtauto" , "set" , "setoid_reflexivity" , "setoid_replace" , "setoid_rewrite" , "setoid_symmetry" , "setoid_transitivity" , "shelve" , "shelve_unifiable" , "simpl" , "simple" , "simplify_eq" , "solve" , "specialize" , "split" , "split_Rabs" , "split_Rmult" , "stepl" , "stepr" , "subst" , "sum" , "swap" , "symmetry" , "tactic" , "tauto" , "time" , "timeout" , "top" , "transitivity" , "trivial" , "try" , "tryif" , "unfold" , "unify" , "until" , "using" , "vm_compute" , "with" ]
} , contains : [ e . QUOTE _STRING _MODE , e . COMMENT ( "\\(\\*" , "\\*\\)" ) , e . C _NUMBER _MODE , {
className : "type" , excludeBegin : ! 0 , begin : "\\|\\s*" , end : "\\w+" } , { begin : /[-=]>/ } ] } ) ,
grmr _cos : e => ( { name : "Cach\xe9 Object Script" , case _insensitive : ! 0 , aliases : [ "cls" ] ,
keywords : "property parameter class classmethod clientmethod extends as break catch close continue do d|0 else elseif for goto halt hang h|0 if job j|0 kill k|0 lock l|0 merge new open quit q|0 read r|0 return set s|0 tcommit throw trollback try tstart use view while write w|0 xecute x|0 zkill znspace zn ztrap zwrite zw zzdump zzwrite print zbreak zinsert zload zprint zremove zsave zzprint mv mvcall mvcrt mvdim mvprint zquit zsync ascii" ,
contains : [ { className : "number" , begin : "\\b(\\d+(\\.\\d*)?|\\.\\d+)" , relevance : 0 } , {
className : "string" , variants : [ { begin : '"' , end : '"' , contains : [ { begin : '""' ,
relevance : 0 } ] } ] } , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , {
className : "comment" , begin : /;/ , end : "$" , relevance : 0 } , { className : "built_in" ,
begin : /(?:\$\$?|\.\.)\^?[a-zA-Z]+/ } , { className : "built_in" ,
begin : /\$\$\$[a-zA-Z]+/ } , { className : "built_in" , begin : /%[a-z]+(?:\.[a-z]+)*/ } , {
className : "symbol" , begin : /\^%?[a-zA-Z][\w]*/ } , { className : "keyword" ,
begin : /##class|##super|#define|#dim/ } , { begin : /&sql\(/ , end : /\)/ , excludeBegin : ! 0 ,
excludeEnd : ! 0 , subLanguage : "sql" } , { begin : /&(js|jscript|javascript)</ , end : />/ ,
excludeBegin : ! 0 , excludeEnd : ! 0 , subLanguage : "javascript" } , { begin : /&html<\s*</ ,
end : />\s*>/ , subLanguage : "xml" } ] } ) , grmr _cpp : ne , grmr _crmsh : e => {
const t = "group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml"
; return { name : "crmsh" , aliases : [ "crm" , "pcmk" ] , case _insensitive : ! 0 , keywords : {
keyword : "params meta operations op rule attributes utilization read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\ number string" ,
literal : "Master Started Slave Stopped start promote demote stop monitor true false"
} , contains : [ e . HASH _COMMENT _MODE , { beginKeywords : "node" , starts : {
end : "\\s*([\\w_-]+:)?" , starts : { className : "title" , end : "\\s*[\\$\\w_][\\w_-]*" } }
} , { beginKeywords : "primitive rsc_template" , starts : { className : "title" ,
end : "\\s*[\\$\\w_][\\w_-]*" , starts : { end : "\\s*@?[\\w_][\\w_\\.:-]*" } } } , {
begin : "\\b(" + t . split ( " " ) . join ( "|" ) + ")\\s+" , keywords : t , starts : {
className : "title" , end : "[\\$\\w_][\\w_-]*" } } , {
beginKeywords : "property rsc_defaults op_defaults" , starts : { className : "title" ,
end : "\\s*([\\w_-]+:)?" } } , e . QUOTE _STRING _MODE , { className : "meta" ,
begin : "(ocf|systemd|service|lsb):[\\w_:-]+" , relevance : 0 } , { className : "number" ,
begin : "\\b\\d+(\\.\\d+)?(ms|s|h|m)?" , relevance : 0 } , { className : "literal" ,
begin : "[-]?(infinity|inf)" , relevance : 0 } , { className : "attr" ,
begin : /([A-Za-z$_#][\w_-]+)=/ , relevance : 0 } , { className : "tag" , begin : "</?" ,
end : "/?>" , relevance : 0 } ] } } , grmr _crystal : e => {
const t = "(_?[ui](8|16|32|64|128))?" , a = "[a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|[=!]~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~|]|//|//=|&[-+*]=?|&\\*\\*|\\[\\][=?]?" , n = "[A-Za-z_]\\w*(::\\w+)*(\\?|!)?" , i = {
$pattern : "[a-zA-Z_]\\w*[!?=]?" ,
keyword : "abstract alias annotation as as? asm begin break case class def do else elsif end ensure enum extend for fun if include instance_sizeof is_a? lib macro module next nil? of out pointerof private protected rescue responds_to? return require select self sizeof struct super then type typeof union uninitialized unless until verbatim when while with yield __DIR__ __END_LINE__ __FILE__ __LINE__" ,
literal : "false nil true" } , r = { className : "subst" , begin : /#\{/ , end : /\}/ , keywords : i
} , s = { className : "template-variable" , variants : [ { begin : "\\{\\{" , end : "\\}\\}" } , {
begin : "\\{%" , end : "%\\}" } ] , keywords : i } ; function o ( e , t ) { const a = [ { begin : e , end : t } ]
; return a [ 0 ] . contains = a , a } const l = { className : "string" ,
contains : [ e . BACKSLASH _ESCAPE , r ] , variants : [ { begin : /'/ , end : /'/ } , { begin : /"/ , end : /"/
} , { begin : /`/ , end : /`/ } , { begin : "%[Qwi]?\\(" , end : "\\)" , contains : o ( "\\(" , "\\)" ) } , {
begin : "%[Qwi]?\\[" , end : "\\]" , contains : o ( "\\[" , "\\]" ) } , { begin : "%[Qwi]?\\{" ,
end : /\}/ , contains : o ( /\{/ , /\}/ ) } , { begin : "%[Qwi]?<" , end : ">" , contains : o ( "<" , ">" ) } , {
begin : "%[Qwi]?\\|" , end : "\\|" } , { begin : /<<-\w+$/ , end : /^\s*\w+$/ } ] , relevance : 0 } , _ = {
className : "string" , variants : [ { begin : "%q\\(" , end : "\\)" , contains : o ( "\\(" , "\\)" ) } , {
begin : "%q\\[" , end : "\\]" , contains : o ( "\\[" , "\\]" ) } , { begin : "%q\\{" , end : /\}/ ,
contains : o ( /\{/ , /\}/ ) } , { begin : "%q<" , end : ">" , contains : o ( "<" , ">" ) } , { begin : "%q\\|" ,
end : "\\|" } , { begin : /<<-'\w+'$/ , end : /^\s*\w+$/ } ] , relevance : 0 } , c = {
begin : "(?!%\\})(" + e . RE _STARTERS _RE + "|\\n|\\b(case|if|select|unless|until|when|while)\\b)\\s*" ,
keywords : "case if select unless until when while" , contains : [ { className : "regexp" ,
contains : [ e . BACKSLASH _ESCAPE , r ] , variants : [ { begin : "//[a-z]*" , relevance : 0 } , {
begin : "/(?!\\/)" , end : "/[a-z]*" } ] } ] , relevance : 0 } , d = [ s , l , _ , { className : "regexp" ,
contains : [ e . BACKSLASH _ESCAPE , r ] , variants : [ { begin : "%r\\(" , end : "\\)" ,
contains : o ( "\\(" , "\\)" ) } , { begin : "%r\\[" , end : "\\]" , contains : o ( "\\[" , "\\]" ) } , {
begin : "%r\\{" , end : /\}/ , contains : o ( /\{/ , /\}/ ) } , { begin : "%r<" , end : ">" ,
contains : o ( "<" , ">" ) } , { begin : "%r\\|" , end : "\\|" } ] , relevance : 0 } , c , {
className : "meta" , begin : "@\\[" , end : "\\]" ,
contains : [ e . inherit ( e . QUOTE _STRING _MODE , { className : "string" } ) ] } , {
className : "variable" ,
begin : "(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"
} , e . HASH _COMMENT _MODE , { className : "class" , beginKeywords : "class module struct" ,
end : "$|;" , illegal : /=/ , contains : [ e . HASH _COMMENT _MODE , e . inherit ( e . TITLE _MODE , {
begin : n } ) , { begin : "<" } ] } , { className : "class" , beginKeywords : "lib enum union" ,
end : "$|;" , illegal : /=/ , contains : [ e . HASH _COMMENT _MODE , e . inherit ( e . TITLE _MODE , {
begin : n } ) ] } , { beginKeywords : "annotation" , end : "$|;" , illegal : /=/ ,
contains : [ e . HASH _COMMENT _MODE , e . inherit ( e . TITLE _MODE , { begin : n } ) ] , relevance : 2 } , {
className : "function" , beginKeywords : "def" , end : /\B\b/ ,
contains : [ e . inherit ( e . TITLE _MODE , { begin : a , endsParent : ! 0 } ) ] } , {
className : "function" , beginKeywords : "fun macro" , end : /\B\b/ ,
contains : [ e . inherit ( e . TITLE _MODE , { begin : a , endsParent : ! 0 } ) ] , relevance : 2 } , {
className : "symbol" , begin : e . UNDERSCORE _IDENT _RE + "(!|\\?)?:" , relevance : 0 } , {
className : "symbol" , begin : ":" , contains : [ l , { begin : a } ] , relevance : 0 } , {
className : "number" , variants : [ { begin : "\\b0b([01_]+)" + t } , { begin : "\\b0o([0-7_]+)" + t
} , { begin : "\\b0x([A-Fa-f0-9_]+)" + t } , {
begin : "\\b([1-9][0-9_]*[0-9]|[0-9])(\\.[0-9][0-9_]*)?([eE]_?[-+]?[0-9_]*)?(_?f(32|64))?(?!_)"
} , { begin : "\\b([1-9][0-9_]*|0)" + t } ] , relevance : 0 } ]
; return r . contains = d , s . contains = d . slice ( 1 ) , { name : "Crystal" , aliases : [ "cr" ] ,
keywords : i , contains : d } } , grmr _csharp : e => { const t = {
2021-10-19 23:53:22 -07:00
keyword : [ "abstract" , "as" , "base" , "break" , "case" , "catch" , "class" , "const" , "continue" , "do" , "else" , "event" , "explicit" , "extern" , "finally" , "fixed" , "for" , "foreach" , "goto" , "if" , "implicit" , "in" , "interface" , "internal" , "is" , "lock" , "namespace" , "new" , "operator" , "out" , "override" , "params" , "private" , "protected" , "public" , "readonly" , "record" , "ref" , "return" , "sealed" , "sizeof" , "stackalloc" , "static" , "struct" , "switch" , "this" , "throw" , "try" , "typeof" , "unchecked" , "unsafe" , "using" , "virtual" , "void" , "volatile" , "while" ] . concat ( [ "add" , "alias" , "and" , "ascending" , "async" , "await" , "by" , "descending" , "equals" , "from" , "get" , "global" , "group" , "init" , "into" , "join" , "let" , "nameof" , "not" , "notnull" , "on" , "or" , "orderby" , "partial" , "remove" , "select" , "set" , "unmanaged" , "value|0" , "var" , "when" , "where" , "with" , "yield" ] ) ,
built _in : [ "bool" , "byte" , "char" , "decimal" , "delegate" , "double" , "dynamic" , "enum" , "float" , "int" , "long" , "nint" , "nuint" , "object" , "sbyte" , "short" , "string" , "ulong" , "uint" , "ushort" ] ,
2022-01-15 21:29:41 -08:00
literal : [ "default" , "false" , "null" , "true" ] } , a = e . inherit ( e . TITLE _MODE , {
begin : "[a-zA-Z](\\.?\\w)*" } ) , n = { className : "number" , variants : [ {
2021-10-19 23:53:22 -07:00
begin : "\\b(0b[01']+)" } , {
begin : "(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)" } , {
begin : "(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)"
} ] , relevance : 0 } , i = { className : "string" , begin : '@"' , end : '"' , contains : [ { begin : '""' } ]
} , r = e . inherit ( i , { illegal : /\n/ } ) , s = { className : "subst" , begin : /\{/ , end : /\}/ ,
2022-01-15 21:29:41 -08:00
keywords : t } , o = e . inherit ( s , { illegal : /\n/ } ) , l = { className : "string" , begin : /\$"/ ,
2021-10-19 23:53:22 -07:00
end : '"' , illegal : /\n/ , contains : [ { begin : /\{\{/ } , { begin : /\}\}/
2022-01-15 21:29:41 -08:00
} , e . BACKSLASH _ESCAPE , o ] } , _ = { className : "string" , begin : /\$@"/ , end : '"' , contains : [ {
begin : /\{\{/ } , { begin : /\}\}/ } , { begin : '""' } , s ] } , c = e . inherit ( _ , { illegal : /\n/ ,
2021-10-19 23:53:22 -07:00
contains : [ { begin : /\{\{/ } , { begin : /\}\}/ } , { begin : '""' } , o ] } )
2022-01-15 21:29:41 -08:00
; s . contains = [ _ , l , i , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , n , e . C _BLOCK _COMMENT _MODE ] ,
o . contains = [ c , l , r , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , n , e . inherit ( e . C _BLOCK _COMMENT _MODE , {
illegal : /\n/ } ) ] ; const d = { variants : [ _ , l , i , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ]
} , m = { begin : "<" , end : ">" , contains : [ { beginKeywords : "in out" } , a ]
} , p = e . IDENT _RE + "(<" + e . IDENT _RE + "(\\s*,\\s*" + e . IDENT _RE + ")*>)?(\\[\\])?" , u = {
2021-10-19 23:53:22 -07:00
begin : "@" + e . IDENT _RE , relevance : 0 } ; return { name : "C#" , aliases : [ "cs" , "c#" ] ,
2022-01-15 21:29:41 -08:00
keywords : t , illegal : /::/ , contains : [ e . COMMENT ( "///" , "$" , { returnBegin : ! 0 ,
2021-10-19 23:53:22 -07:00
contains : [ { className : "doctag" , variants : [ { begin : "///" , relevance : 0 } , {
begin : "\x3c!--|--\x3e" } , { begin : "</?" , end : ">" } ] } ]
} ) , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , { className : "meta" , begin : "#" ,
end : "$" , keywords : {
keyword : "if else elif endif define undef warning error line region endregion pragma checksum"
2022-01-15 21:29:41 -08:00
} } , d , n , { beginKeywords : "class interface" , relevance : 0 , end : /[{;=]/ ,
2021-10-19 23:53:22 -07:00
illegal : /[^\s:,]/ , contains : [ { beginKeywords : "where class"
2022-01-15 21:29:41 -08:00
} , a , m , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , { beginKeywords : "namespace" ,
2021-10-19 23:53:22 -07:00
relevance : 0 , end : /[{;=]/ , illegal : /[^\s:]/ ,
2022-01-15 21:29:41 -08:00
contains : [ a , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , {
2021-10-19 23:53:22 -07:00
beginKeywords : "record" , relevance : 0 , end : /[{;=]/ , illegal : /[^\s:]/ ,
2022-01-15 21:29:41 -08:00
contains : [ a , m , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , { className : "meta" ,
2021-10-19 23:53:22 -07:00
begin : "^\\s*\\[(?=[\\w])" , excludeBegin : ! 0 , end : "\\]" , excludeEnd : ! 0 , contains : [ {
className : "string" , begin : /"/ , end : /"/ } ] } , {
beginKeywords : "new return throw await else" , relevance : 0 } , { className : "function" ,
2022-01-15 21:29:41 -08:00
begin : "(" + p + "\\s+)+" + e . IDENT _RE + "\\s*(<[^=]+>\\s*)?\\(" , returnBegin : ! 0 ,
end : /\s*[{;=]/ , excludeEnd : ! 0 , keywords : t , contains : [ {
2021-10-19 23:53:22 -07:00
beginKeywords : "public private protected static internal protected abstract async extern override unsafe virtual new sealed partial" ,
relevance : 0 } , { begin : e . IDENT _RE + "\\s*(<[^=]+>\\s*)?\\(" , returnBegin : ! 0 ,
2022-01-15 21:29:41 -08:00
contains : [ e . TITLE _MODE , m ] , relevance : 0 } , { match : /\(\)/ } , { className : "params" ,
begin : /\(/ , end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 , keywords : t , relevance : 0 ,
contains : [ d , n , e . C _BLOCK _COMMENT _MODE ]
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , u ] } } , grmr _csp : e => ( { name : "CSP" ,
case _insensitive : ! 1 , keywords : { $pattern : "[a-zA-Z][a-zA-Z0-9_-]*" ,
keyword : [ "base-uri" , "child-src" , "connect-src" , "default-src" , "font-src" , "form-action" , "frame-ancestors" , "frame-src" , "img-src" , "manifest-src" , "media-src" , "object-src" , "plugin-types" , "report-uri" , "sandbox" , "script-src" , "style-src" , "trusted-types" , "unsafe-hashes" , "worker-src" ]
} , contains : [ { className : "string" , begin : "'" , end : "'" } , { className : "attribute" ,
begin : "^Content" , end : ":" , excludeEnd : ! 0 } ] } ) , grmr _css : e => {
const t = e . regex , a = me ( e ) , n = [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ] ; return {
2021-10-19 23:53:22 -07:00
name : "CSS" , case _insensitive : ! 0 , illegal : /[=|'\$]/ , keywords : {
keyframePosition : "from to" } , classNameAliases : { keyframePosition : "selector-tag" } ,
2022-01-15 21:29:41 -08:00
contains : [ a . BLOCK _COMMENT , { begin : /-(webkit|moz|ms|o)-(?=[a-z])/
} , a . CSS _NUMBER _MODE , { className : "selector-id" , begin : /#[A-Za-z0-9_-]+/ , relevance : 0
2021-10-19 23:53:22 -07:00
} , { className : "selector-class" , begin : "\\.[a-zA-Z-][a-zA-Z0-9_-]*" , relevance : 0
2022-01-15 21:29:41 -08:00
} , a . ATTRIBUTE _SELECTOR _MODE , { className : "selector-pseudo" , variants : [ {
begin : ":(" + Ee . join ( "|" ) + ")" } , { begin : ":(:)?(" + Se . join ( "|" ) + ")" } ]
} , a . CSS _VARIABLE , { className : "attribute" , begin : "\\b(" + ge . join ( "|" ) + ")\\b" } , {
2021-10-19 23:53:22 -07:00
begin : /:/ , end : /[;}{]/ ,
2022-01-15 21:29:41 -08:00
contains : [ a . BLOCK _COMMENT , a . HEXCOLOR , a . IMPORTANT , a . CSS _NUMBER _MODE , ... n , {
2021-10-19 23:53:22 -07:00
begin : /(url|data-uri)\(/ , end : /\)/ , relevance : 0 , keywords : { built _in : "url data-uri"
} , contains : [ { className : "string" , begin : /[^)]/ , endsWithParent : ! 0 , excludeEnd : ! 0 } ]
2022-01-15 21:29:41 -08:00
} , a . FUNCTION _DISPATCH ] } , { begin : t . lookahead ( /@/ ) , end : "[{;]" , relevance : 0 ,
2021-10-19 23:53:22 -07:00
illegal : /:/ , contains : [ { className : "keyword" , begin : /@-?\w[\w]*(-\w+)*/ } , {
begin : /\s/ , endsWithParent : ! 0 , excludeEnd : ! 0 , relevance : 0 , keywords : {
2022-01-15 21:29:41 -08:00
$pattern : /[a-z-]+/ , keyword : "and or not only" , attribute : ue . join ( " " ) } , contains : [ {
begin : /[a-z-]+(?=:)/ , className : "attribute" } , ... n , a . CSS _NUMBER _MODE ] } ] } , {
className : "selector-tag" , begin : "\\b(" + pe . join ( "|" ) + ")\\b" } ] } } , grmr _d : e => {
const t = { $pattern : e . UNDERSCORE _IDENT _RE ,
keyword : "abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__" ,
built _in : "bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring" ,
literal : "false null true"
} , a = "((0|[1-9][\\d_]*)|0[bB][01_]+|0[xX]([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))" , n = "\\\\(['\"\\?\\\\abfnrtv]|u[\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\dA-Fa-f]{2}|U[\\dA-Fa-f]{8})|&[a-zA-Z\\d]{2,};" , i = {
className : "number" , begin : "\\b" + a + "(L|u|U|Lu|LU|uL|UL)?" , relevance : 0 } , r = {
className : "number" ,
begin : "\\b(((0[xX](([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)\\.([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*)|\\.?([\\da-fA-F][\\da-fA-F_]*|_[\\da-fA-F][\\da-fA-F_]*))[pP][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))|((0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)(\\.\\d*|([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)))|\\d+\\.(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d)|\\.(0|[1-9][\\d_]*)([eE][+-]?(0|[1-9][\\d_]*|\\d[\\d_]*|[\\d_]+?\\d))?))([fF]|L|i|[fF]i|Li)?|" + a + "(i|[fF]i|Li))" ,
relevance : 0 } , s = { className : "string" , begin : "'(" + n + "|.)" , end : "'" , illegal : "." } , o = {
className : "string" , begin : '"' , contains : [ { begin : n , relevance : 0 } ] , end : '"[cwd]?'
} , l = e . COMMENT ( "\\/\\+" , "\\+\\/" , { contains : [ "self" ] , relevance : 10 } ) ; return {
name : "D" , keywords : t , contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , l , {
className : "string" , begin : 'x"[\\da-fA-F\\s\\n\\r]*"[cwd]?' , relevance : 10 } , o , {
className : "string" , begin : '[rq]"' , end : '"[cwd]?' , relevance : 5 } , { className : "string" ,
begin : "`" , end : "`[cwd]?" } , { className : "string" , begin : 'q"\\{' , end : '\\}"' } , r , i , s , {
className : "meta" , begin : "^#!" , end : "$" , relevance : 5 } , { className : "meta" ,
begin : "#(line)" , end : "$" , relevance : 5 } , { className : "keyword" ,
begin : "@[a-zA-Z_][a-zA-Z_\\d]*" } ] } } , grmr _markdown : e => { const t = {
begin : /<\/?[A-Za-z_]/ , end : ">" , subLanguage : "xml" , relevance : 0 } , a = { variants : [ {
begin : /\[.+?\]\[.*?\]/ , relevance : 0 } , {
begin : /\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/ ,
relevance : 2 } , {
begin : e . regex . concat ( /\[.+?\]\(/ , /[A-Za-z][A-Za-z0-9+.-]*/ , /:\/\/.*?\)/ ) ,
relevance : 2 } , { begin : /\[.+?\]\([./?&#].*?\)/ , relevance : 1 } , {
begin : /\[.*?\]\(.*?\)/ , relevance : 0 } ] , returnBegin : ! 0 , contains : [ { match : /\[(?=\])/
} , { className : "string" , relevance : 0 , begin : "\\[" , end : "\\]" , excludeBegin : ! 0 ,
returnEnd : ! 0 } , { className : "link" , relevance : 0 , begin : "\\]\\(" , end : "\\)" ,
excludeBegin : ! 0 , excludeEnd : ! 0 } , { className : "symbol" , relevance : 0 , begin : "\\]\\[" ,
end : "\\]" , excludeBegin : ! 0 , excludeEnd : ! 0 } ] } , n = { className : "strong" , contains : [ ] ,
variants : [ { begin : /_{2}/ , end : /_{2}/ } , { begin : /\*{2}/ , end : /\*{2}/ } ] } , i = {
className : "emphasis" , contains : [ ] , variants : [ { begin : /\*(?!\*)/ , end : /\*/ } , {
begin : /_(?!_)/ , end : /_/ , relevance : 0 } ] } ; n . contains . push ( i ) , i . contains . push ( n )
; let r = [ t , a ]
; return n . contains = n . contains . concat ( r ) , i . contains = i . contains . concat ( r ) ,
r = r . concat ( n , i ) , { name : "Markdown" , aliases : [ "md" , "mkdown" , "mkd" ] , contains : [ {
className : "section" , variants : [ { begin : "^#{1,6}" , end : "$" , contains : r } , {
begin : "(?=^.+?\\n[=-]{2,}$)" , contains : [ { begin : "^[=-]*$" } , { begin : "^" , end : "\\n" ,
contains : r } ] } ] } , t , { className : "bullet" , begin : "^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)" ,
end : "\\s+" , excludeEnd : ! 0 } , n , i , { className : "quote" , begin : "^>\\s+" , contains : r ,
end : "$" } , { className : "code" , variants : [ { begin : "(`{3,})[^`](.|\\n)*?\\1`*[ ]*" } , {
begin : "(~{3,})[^~](.|\\n)*?\\1~*[ ]*" } , { begin : "```" , end : "```+[ ]*$" } , {
begin : "~~~" , end : "~~~+[ ]*$" } , { begin : "`.+?`" } , { begin : "(?=^( {4}|\\t))" ,
contains : [ { begin : "^( {4}|\\t)" , end : "(\\n)$" } ] , relevance : 0 } ] } , {
begin : "^[-\\*]{3,}" , end : "$" } , a , { begin : /^\[[^\n]+\]:/ , returnBegin : ! 0 , contains : [ {
className : "symbol" , begin : /\[/ , end : /\]/ , excludeBegin : ! 0 , excludeEnd : ! 0 } , {
className : "link" , begin : /:\s*/ , end : /$/ , excludeBegin : ! 0 } ] } ] } } , grmr _dart : e => {
const t = { className : "subst" , variants : [ { begin : "\\$[A-Za-z0-9_]+" } ] } , a = {
className : "subst" , variants : [ { begin : /\$\{/ , end : /\}/ } ] ,
keywords : "true false null this is new super" } , n = { className : "string" , variants : [ {
begin : "r'''" , end : "'''" } , { begin : 'r"""' , end : '"""' } , { begin : "r'" , end : "'" ,
illegal : "\\n" } , { begin : 'r"' , end : '"' , illegal : "\\n" } , { begin : "'''" , end : "'''" ,
contains : [ e . BACKSLASH _ESCAPE , t , a ] } , { begin : '"""' , end : '"""' ,
contains : [ e . BACKSLASH _ESCAPE , t , a ] } , { begin : "'" , end : "'" , illegal : "\\n" ,
contains : [ e . BACKSLASH _ESCAPE , t , a ] } , { begin : '"' , end : '"' , illegal : "\\n" ,
contains : [ e . BACKSLASH _ESCAPE , t , a ] } ] } ; a . contains = [ e . C _NUMBER _MODE , n ]
; const i = [ "Comparable" , "DateTime" , "Duration" , "Function" , "Iterable" , "Iterator" , "List" , "Map" , "Match" , "Object" , "Pattern" , "RegExp" , "Set" , "Stopwatch" , "String" , "StringBuffer" , "StringSink" , "Symbol" , "Type" , "Uri" , "bool" , "double" , "int" , "num" , "Element" , "ElementList" ] , r = i . map ( ( e => e + "?" ) )
; return { name : "Dart" , keywords : {
keyword : [ "abstract" , "as" , "assert" , "async" , "await" , "break" , "case" , "catch" , "class" , "const" , "continue" , "covariant" , "default" , "deferred" , "do" , "dynamic" , "else" , "enum" , "export" , "extends" , "extension" , "external" , "factory" , "false" , "final" , "finally" , "for" , "Function" , "get" , "hide" , "if" , "implements" , "import" , "in" , "inferface" , "is" , "late" , "library" , "mixin" , "new" , "null" , "on" , "operator" , "part" , "required" , "rethrow" , "return" , "set" , "show" , "static" , "super" , "switch" , "sync" , "this" , "throw" , "true" , "try" , "typedef" , "var" , "void" , "while" , "with" , "yield" ] ,
built _in : i . concat ( r ) . concat ( [ "Never" , "Null" , "dynamic" , "print" , "document" , "querySelector" , "querySelectorAll" , "window" ] ) ,
$pattern : /[A-Za-z][A-Za-z0-9_]*\??/ } ,
contains : [ n , e . COMMENT ( /\/\*\*(?!\/)/ , /\*\// , { subLanguage : "markdown" , relevance : 0
} ) , e . COMMENT ( /\/{3,} ?/ , /$/ , { contains : [ { subLanguage : "markdown" , begin : "." ,
end : "$" , relevance : 0 } ] } ) , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , {
className : "class" , beginKeywords : "class interface" , end : /\{/ , excludeEnd : ! 0 ,
contains : [ { beginKeywords : "extends implements" } , e . UNDERSCORE _TITLE _MODE ]
} , e . C _NUMBER _MODE , { className : "meta" , begin : "@[A-Za-z]+" } , { begin : "=>" } ] } } ,
grmr _delphi : e => {
const t = [ "exports" , "register" , "file" , "shl" , "array" , "record" , "property" , "for" , "mod" , "while" , "set" , "ally" , "label" , "uses" , "raise" , "not" , "stored" , "class" , "safecall" , "var" , "interface" , "or" , "private" , "static" , "exit" , "index" , "inherited" , "to" , "else" , "stdcall" , "override" , "shr" , "asm" , "far" , "resourcestring" , "finalization" , "packed" , "virtual" , "out" , "and" , "protected" , "library" , "do" , "xorwrite" , "goto" , "near" , "function" , "end" , "div" , "overload" , "object" , "unit" , "begin" , "string" , "on" , "inline" , "repeat" , "until" , "destructor" , "write" , "message" , "program" , "with" , "read" , "initialization" , "except" , "default" , "nil" , "if" , "case" , "cdecl" , "in" , "downto" , "threadvar" , "of" , "try" , "pascal" , "const" , "external" , "constructor" , "type" , "public" , "then" , "implementation" , "finally" , "published" , "procedure" , "absolute" , "reintroduce" , "operator" , "as" , "is" , "abstract" , "alias" , "assembler" , "bitpacked" , "break" , "continue" , "cppdecl" , "cvar" , "enumerator" , "experimental" , "platform" , "deprecated" , "unimplemented" , "dynamic" , "export" , "far16" , "forward" , "generic" , "helper" , "implements" , "interrupt" , "iochecks" , "local" , "name" , "nodefault" , "noreturn" , "nostackframe" , "oldfpccall" , "otherwise" , "saveregisters" , "softfloat" , "specialize" , "strict" , "unaligned" , "varargs" ] , a = [ e . C _LINE _COMMENT _MODE , e . COMMENT ( /\{/ , /\}/ , {
relevance : 0 } ) , e . COMMENT ( /\(\*/ , /\*\)/ , { relevance : 10 } ) ] , n = { className : "meta" ,
variants : [ { begin : /\{\$/ , end : /\}/ } , { begin : /\(\*\$/ , end : /\*\)/ } ] } , i = {
className : "string" , begin : /'/ , end : /'/ , contains : [ { begin : /''/ } ] } , r = {
className : "string" , begin : /(#\d+)+/ } , s = { begin : e . IDENT _RE + "\\s*=\\s*class\\s*\\(" ,
returnBegin : ! 0 , contains : [ e . TITLE _MODE ] } , o = { className : "function" ,
beginKeywords : "function constructor destructor procedure" , end : /[:;]/ ,
keywords : "function constructor|10 destructor|10 procedure|10" ,
contains : [ e . TITLE _MODE , { className : "params" , begin : /\(/ , end : /\)/ , keywords : t ,
contains : [ i , r , n ] . concat ( a ) } , n ] . concat ( a ) } ; return { name : "Delphi" ,
aliases : [ "dpr" , "dfm" , "pas" , "pascal" ] , case _insensitive : ! 0 , keywords : t ,
illegal : /"|\$[G-Zg-z]|\/\*|<\/|\|/ , contains : [ i , r , e . NUMBER _MODE , {
className : "number" , relevance : 0 , variants : [ { begin : "\\$[0-9A-Fa-f]+" } , {
begin : "&[0-7]+" } , { begin : "%[01]+" } ] } , s , o , n ] . concat ( a ) } } , grmr _diff : e => {
const t = e . regex ; return { name : "Diff" , aliases : [ "patch" ] , contains : [ {
2021-10-19 23:53:22 -07:00
className : "meta" , relevance : 10 ,
2022-01-15 21:29:41 -08:00
match : t . either ( /^@@ +-\d+,\d+ +\+\d+,\d+ +@@/ , /^\*\*\* +\d+,\d+ +\*\*\*\*$/ , /^--- +\d+,\d+ +----$/ )
2021-10-19 23:53:22 -07:00
} , { className : "comment" , variants : [ {
2022-01-15 21:29:41 -08:00
begin : t . either ( /Index: / , /^index/ , /={3,}/ , /^-{3}/ , /^\*{3} / , /^\+{3}/ , /^diff --git/ ) ,
2021-10-19 23:53:22 -07:00
end : /$/ } , { match : /^\*{15}$/ } ] } , { className : "addition" , begin : /^\+/ , end : /$/ } , {
className : "deletion" , begin : /^-/ , end : /$/ } , { className : "addition" , begin : /^!/ ,
2022-01-15 21:29:41 -08:00
end : /$/ } ] } } , grmr _django : e => { const t = { begin : /\|[A-Za-z]+:?/ , keywords : {
name : "truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone"
} , contains : [ e . QUOTE _STRING _MODE , e . APOS _STRING _MODE ] } ; return { name : "Django" ,
aliases : [ "jinja" ] , case _insensitive : ! 0 , subLanguage : "xml" ,
contains : [ e . COMMENT ( /\{%\s*comment\s*%\}/ , /\{%\s*endcomment\s*%\}/ ) , e . COMMENT ( /\{#/ , /#\}/ ) , {
className : "template-tag" , begin : /\{%/ , end : /%\}/ , contains : [ { className : "name" ,
begin : /\w+/ , keywords : {
name : "comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim"
} , starts : { endsWithParent : ! 0 , keywords : "in by as" , contains : [ t ] , relevance : 0 } } ] } , {
className : "template-variable" , begin : /\{\{/ , end : /\}\}/ , contains : [ t ] } ] } } ,
grmr _dns : e => ( { name : "DNS Zone" , aliases : [ "bind" , "zone" ] ,
keywords : [ "IN" , "A" , "AAAA" , "AFSDB" , "APL" , "CAA" , "CDNSKEY" , "CDS" , "CERT" , "CNAME" , "DHCID" , "DLV" , "DNAME" , "DNSKEY" , "DS" , "HIP" , "IPSECKEY" , "KEY" , "KX" , "LOC" , "MX" , "NAPTR" , "NS" , "NSEC" , "NSEC3" , "NSEC3PARAM" , "PTR" , "RRSIG" , "RP" , "SIG" , "SOA" , "SRV" , "SSHFP" , "TA" , "TKEY" , "TLSA" , "TSIG" , "TXT" ] ,
contains : [ e . COMMENT ( ";" , "$" , { relevance : 0 } ) , { className : "meta" ,
begin : /^\$(TTL|GENERATE|INCLUDE|ORIGIN)\b/ } , { className : "number" ,
begin : "((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)(\\.(25[0-5]|2[0-4]\\d|1\\d\\d|[1-9]?\\d)){3}))|:)))\\b"
} , { className : "number" ,
begin : "((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\b"
} , e . inherit ( e . NUMBER _MODE , { begin : /\b\d+[dhwm]?/ } ) ] } ) , grmr _dockerfile : e => ( {
name : "Dockerfile" , aliases : [ "docker" ] , case _insensitive : ! 0 ,
keywords : [ "from" , "maintainer" , "expose" , "env" , "arg" , "user" , "onbuild" , "stopsignal" ] ,
contains : [ e . HASH _COMMENT _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . NUMBER _MODE , {
beginKeywords : "run cmd entrypoint volume add copy workdir label healthcheck shell" ,
starts : { end : /[^\\]$/ , subLanguage : "bash" } } ] , illegal : "</" } ) , grmr _dos : e => {
const t = e . COMMENT ( /^\s*@?rem\b/ , /$/ , { relevance : 10 } ) ; return {
name : "Batch file (DOS)" , aliases : [ "bat" , "cmd" ] , case _insensitive : ! 0 ,
illegal : /\/\*/ , keywords : {
keyword : [ "if" , "else" , "goto" , "for" , "in" , "do" , "call" , "exit" , "not" , "exist" , "errorlevel" , "defined" , "equ" , "neq" , "lss" , "leq" , "gtr" , "geq" ] ,
built _in : [ "prn" , "nul" , "lpt3" , "lpt2" , "lpt1" , "con" , "com4" , "com3" , "com2" , "com1" , "aux" , "shift" , "cd" , "dir" , "echo" , "setlocal" , "endlocal" , "set" , "pause" , "copy" , "append" , "assoc" , "at" , "attrib" , "break" , "cacls" , "cd" , "chcp" , "chdir" , "chkdsk" , "chkntfs" , "cls" , "cmd" , "color" , "comp" , "compact" , "convert" , "date" , "dir" , "diskcomp" , "diskcopy" , "doskey" , "erase" , "fs" , "find" , "findstr" , "format" , "ftype" , "graftabl" , "help" , "keyb" , "label" , "md" , "mkdir" , "mode" , "more" , "move" , "path" , "pause" , "print" , "popd" , "pushd" , "promt" , "rd" , "recover" , "rem" , "rename" , "replace" , "restore" , "rmdir" , "shift" , "sort" , "start" , "subst" , "time" , "title" , "tree" , "type" , "ver" , "verify" , "vol" , "ping" , "net" , "ipconfig" , "taskkill" , "xcopy" , "ren" , "del" ]
} , contains : [ { className : "variable" , begin : /%%[^ ]|%[^ ]+?%|![^ ]+?!/ } , {
className : "function" , begin : "^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)" ,
end : "goto:eof" , contains : [ e . inherit ( e . TITLE _MODE , {
begin : "([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*" } ) , t ] } , {
className : "number" , begin : "\\b\\d+" , relevance : 0 } , t ] } } , grmr _dsconfig : e => ( {
keywords : "dsconfig" , contains : [ { className : "keyword" , begin : "^dsconfig" , end : /\s/ ,
excludeEnd : ! 0 , relevance : 10 } , { className : "built_in" ,
begin : /(list|create|get|set|delete)-(\w+)/ , end : /\s/ , excludeEnd : ! 0 ,
illegal : "!@#$%^&*()" , relevance : 10 } , { className : "built_in" , begin : /--(\w+)/ ,
end : /\s/ , excludeEnd : ! 0 } , { className : "string" , begin : /"/ , end : /"/ } , {
className : "string" , begin : /'/ , end : /'/ } , { className : "string" , begin : /[\w\-?]+:\w+/ ,
end : /\W/ , relevance : 0 } , { className : "string" , begin : /\w+(\-\w+)*/ , end : /(?=\W)/ ,
relevance : 0 } , e . HASH _COMMENT _MODE ] } ) , grmr _dts : e => { const t = { className : "string" ,
variants : [ e . inherit ( e . QUOTE _STRING _MODE , { begin : '((u8?|U)|L)?"' } ) , {
begin : '(u8?|U)?R"' , end : '"' , contains : [ e . BACKSLASH _ESCAPE ] } , { begin : "'\\\\?." ,
end : "'" , illegal : "." } ] } , a = { className : "number" , variants : [ {
begin : "\\b(\\d+(\\.\\d*)?|\\.\\d+)(u|U|l|L|ul|UL|f|F)" } , { begin : e . C _NUMBER _RE } ] ,
relevance : 0 } , n = { className : "meta" , begin : "#" , end : "$" , keywords : {
keyword : "if else elif endif define undef ifdef ifndef" } , contains : [ { begin : /\\\n/ ,
relevance : 0 } , { beginKeywords : "include" , end : "$" , keywords : { keyword : "include" } ,
contains : [ e . inherit ( t , { className : "string" } ) , { className : "string" , begin : "<" ,
end : ">" , illegal : "\\n" } ] } , t , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , i = {
className : "variable" , begin : /&[a-z\d_]*\b/ } ; return { name : "Device Tree" , contains : [ {
className : "title.class" , begin : /^\/(?=\s*\{)/ , relevance : 10 } , i , {
className : "keyword" , begin : "/[a-z][a-z\\d-]*/" } , { className : "symbol" ,
begin : "^\\s*[a-zA-Z_][a-zA-Z\\d_]*:" } , { className : "title.class" ,
begin : /[a-zA-Z_][a-zA-Z\d_@-]*(?=\s\{)/ } , { relevance : 0 ,
match : [ /[a-z][a-z-,]+/ , /\s*/ , /=/ ] , scope : { 1 : "attr" , 3 : "operator" } } , {
match : /[a-z][a-z-,]+(?=;)/ , relevance : 0 , scope : "attr" } , { className : "params" ,
relevance : 0 , begin : "<" , end : ">" , contains : [ a , i ]
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , a , t , n , { scope : "punctuation" ,
relevance : 0 , match : /\};|[;{}]/ } , { begin : e . IDENT _RE + "::" , keywords : "" } ] } } ,
grmr _dust : e => ( { name : "Dust" , aliases : [ "dst" ] , case _insensitive : ! 0 ,
subLanguage : "xml" , contains : [ { className : "template-tag" , begin : /\{[#\/]/ , end : /\}/ ,
illegal : /;/ , contains : [ { className : "name" , begin : /[a-zA-Z\.-]+/ , starts : {
endsWithParent : ! 0 , relevance : 0 , contains : [ e . QUOTE _STRING _MODE ] } } ] } , {
className : "template-variable" , begin : /\{/ , end : /\}/ , illegal : /;/ ,
keywords : "if eq ne lt lte gt gte select default math sep" } ] } ) , grmr _ebnf : e => {
const t = e . COMMENT ( /\(\*/ , /\*\)/ ) ; return { name : "Extended Backus-Naur Form" ,
illegal : /\S/ , contains : [ t , { className : "attribute" ,
begin : /^[ ]*[a-zA-Z]+([\s_-]+[a-zA-Z]+)*/ } , { begin : /=/ , end : /[.;]/ , contains : [ t , {
className : "meta" , begin : /\?.*\?/ } , { className : "string" ,
variants : [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , { begin : "`" , end : "`" } ] } ] } ] } } ,
grmr _elixir : e => { const t = e . regex , a = "[a-zA-Z_][a-zA-Z0-9_.]*(!|\\?)?" , n = {
$pattern : a ,
keyword : [ "after" , "alias" , "and" , "case" , "catch" , "cond" , "defstruct" , "do" , "else" , "end" , "fn" , "for" , "if" , "import" , "in" , "not" , "or" , "quote" , "raise" , "receive" , "require" , "reraise" , "rescue" , "try" , "unless" , "unquote" , "unquote_splicing" , "use" , "when" , "with|0" ] ,
literal : [ "false" , "nil" , "true" ] } , i = { className : "subst" , begin : /#\{/ , end : /\}/ ,
keywords : n } , r = { match : /\\[\s\S]/ , scope : "char.escape" , relevance : 0 } , s = [ { begin : /"/ ,
end : /"/ } , { begin : /'/ , end : /'/ } , { begin : /\// , end : /\// } , { begin : /\|/ , end : /\|/ } , {
begin : /\(/ , end : /\)/ } , { begin : /\[/ , end : /\]/ } , { begin : /\{/ , end : /\}/ } , { begin : /</ ,
end : />/ } ] , o = e => ( { scope : "char.escape" , begin : t . concat ( /\\/ , e ) , relevance : 0 } ) , l = {
className : "string" , begin : "~[a-z](?=[/|([{<\"'])" ,
contains : s . map ( ( t => e . inherit ( t , { contains : [ o ( t . end ) , r , i ] } ) ) ) } , _ = {
className : "string" , begin : "~[A-Z](?=[/|([{<\"'])" ,
contains : s . map ( ( t => e . inherit ( t , { contains : [ o ( t . end ) ] } ) ) ) } , c = { className : "regex" ,
variants : [ { begin : "~r(?=[/|([{<\"'])" , contains : s . map ( ( a => e . inherit ( a , {
end : t . concat ( a . end , /[uismxfU]{0,7}/ ) , contains : [ o ( a . end ) , r , i ] } ) ) ) } , {
begin : "~R(?=[/|([{<\"'])" , contains : s . map ( ( a => e . inherit ( a , {
end : t . concat ( a . end , /[uismxfU]{0,7}/ ) , contains : [ o ( a . end ) ] } ) ) ) } ] } , d = {
className : "string" , contains : [ e . BACKSLASH _ESCAPE , i ] , variants : [ { begin : /"""/ ,
end : /"""/ } , { begin : /'''/ , end : /'''/ } , { begin : /~S"""/ , end : /"""/ , contains : [ ] } , {
begin : /~S"/ , end : /"/ , contains : [ ] } , { begin : /~S'''/ , end : /'''/ , contains : [ ] } , {
begin : /~S'/ , end : /'/ , contains : [ ] } , { begin : /'/ , end : /'/ } , { begin : /"/ , end : /"/ } ] } , m = {
className : "function" , beginKeywords : "def defp defmacro defmacrop" , end : /\B\b/ ,
contains : [ e . inherit ( e . TITLE _MODE , { begin : a , endsParent : ! 0 } ) ] } , p = e . inherit ( m , {
className : "class" , beginKeywords : "defimpl defmodule defprotocol defrecord" ,
end : /\bdo\b|$|;/ } ) , u = [ d , c , _ , l , e . HASH _COMMENT _MODE , p , m , { begin : "::" } , {
className : "symbol" , begin : ":(?![\\s:])" , contains : [ d , {
begin : "[a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?"
} ] , relevance : 0 } , { className : "symbol" , begin : a + ":(?!:)" , relevance : 0 } , {
className : "number" ,
begin : "(\\b0o[0-7_]+)|(\\b0b[01_]+)|(\\b0x[0-9a-fA-F_]+)|(-?\\b[0-9][0-9_]*(\\.[0-9_]+([eE][-+]?[0-9]+)?)?)" ,
relevance : 0 } , { className : "variable" , begin : "(\\$\\W)|((\\$|@@?)(\\w+))" } ]
; return i . contains = u , { name : "Elixir" , aliases : [ "ex" , "exs" ] , keywords : n , contains : u }
} , grmr _elm : e => { const t = { variants : [ e . COMMENT ( "--" , "$" ) , e . COMMENT ( /\{-/ , /-\}/ , {
contains : [ "self" ] } ) ] } , a = { className : "type" , begin : "\\b[A-Z][\\w']*" , relevance : 0
} , n = { begin : "\\(" , end : "\\)" , illegal : '"' , contains : [ { className : "type" ,
begin : "\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?" } , t ] } ; return { name : "Elm" ,
keywords : [ "let" , "in" , "if" , "then" , "else" , "case" , "of" , "where" , "module" , "import" , "exposing" , "type" , "alias" , "as" , "infix" , "infixl" , "infixr" , "port" , "effect" , "command" , "subscription" ] ,
contains : [ { beginKeywords : "port effect module" , end : "exposing" ,
keywords : "port effect module where command subscription exposing" ,
contains : [ n , t ] , illegal : "\\W\\.|;" } , { begin : "import" , end : "$" ,
keywords : "import as exposing" , contains : [ n , t ] , illegal : "\\W\\.|;" } , { begin : "type" ,
end : "$" , keywords : "type alias" , contains : [ a , n , { begin : /\{/ , end : /\}/ ,
contains : n . contains } , t ] } , { beginKeywords : "infix infixl infixr" , end : "$" ,
contains : [ e . C _NUMBER _MODE , t ] } , { begin : "port" , end : "$" , keywords : "port" , contains : [ t ]
} , { className : "string" , begin : "'\\\\?." , end : "'" , illegal : "."
} , e . QUOTE _STRING _MODE , e . C _NUMBER _MODE , a , e . inherit ( e . TITLE _MODE , {
begin : "^[_a-z][\\w']*" } ) , t , { begin : "->|<-" } ] , illegal : /;/ } } , grmr _ruby : e => {
const t = e . regex , a = "([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)" , n = {
keyword : "and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__" ,
built _in : "proc lambda" , literal : "true false nil" } , i = { className : "doctag" ,
begin : "@[A-Za-z]+" } , r = { begin : "#<" , end : ">" } , s = [ e . COMMENT ( "#" , "$" , { contains : [ i ]
} ) , e . COMMENT ( "^=begin" , "^=end" , { contains : [ i ] , relevance : 10
} ) , e . COMMENT ( "^__END__" , "\\n$" ) ] , o = { className : "subst" , begin : /#\{/ , end : /\}/ ,
keywords : n } , l = { className : "string" , contains : [ e . BACKSLASH _ESCAPE , o ] , variants : [ {
begin : /'/ , end : /'/ } , { begin : /"/ , end : /"/ } , { begin : /`/ , end : /`/ } , { begin : /%[qQwWx]?\(/ ,
end : /\)/ } , { begin : /%[qQwWx]?\[/ , end : /\]/ } , { begin : /%[qQwWx]?\{/ , end : /\}/ } , {
begin : /%[qQwWx]?</ , end : />/ } , { begin : /%[qQwWx]?\// , end : /\// } , { begin : /%[qQwWx]?%/ ,
end : /%/ } , { begin : /%[qQwWx]?-/ , end : /-/ } , { begin : /%[qQwWx]?\|/ , end : /\|/ } , {
begin : /\B\?(\\\d{1,3})/ } , { begin : /\B\?(\\x[A-Fa-f0-9]{1,2})/ } , {
begin : /\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/ } , {
begin : /\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/ } , {
begin : /\B\?\\(c|C-)[\x20-\x7e]/ } , { begin : /\B\?\\?\S/ } , {
begin : t . concat ( /<<[-~]?'?/ , t . lookahead ( /(\w+)(?=\W)[^\n]*\n(?:[^\n]*\n)*?\s*\1\b/ ) ) ,
contains : [ e . END _SAME _AS _BEGIN ( { begin : /(\w+)/ , end : /(\w+)/ ,
contains : [ e . BACKSLASH _ESCAPE , o ] } ) ] } ] } , _ = "[0-9](_?[0-9])*" , c = { className : "number" ,
relevance : 0 , variants : [ {
begin : ` \\ b([1-9](_?[0-9])*|0)( \\ .( ${ _ } ))?([eE][+-]?( ${ _ } )|r)?i? \\ b ` } , {
begin : "\\b0[dD][0-9](_?[0-9])*r?i?\\b" } , { begin : "\\b0[bB][0-1](_?[0-1])*r?i?\\b"
} , { begin : "\\b0[oO][0-7](_?[0-7])*r?i?\\b" } , {
begin : "\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b" } , {
begin : "\\b0(_?[0-7])+r?i?\\b" } ] } , d = { className : "params" , begin : "\\(" , end : "\\)" ,
endsParent : ! 0 , keywords : n } , m = [ l , { className : "class" , beginKeywords : "class module" ,
end : "$|;" , illegal : /=/ , contains : [ e . inherit ( e . TITLE _MODE , {
begin : "[A-Za-z_]\\w*(::\\w+)*(\\?|!)?" } ) , { begin : "<\\s*" , contains : [ {
begin : "(" + e . IDENT _RE + "::)?" + e . IDENT _RE , relevance : 0 } ] } ] . concat ( s ) } , {
className : "function" , begin : t . concat ( /def\s+/ , t . lookahead ( a + "\\s*(\\(|;|$)" ) ) ,
relevance : 0 , keywords : "def" , end : "$|;" , contains : [ e . inherit ( e . TITLE _MODE , { begin : a
} ) , d ] . concat ( s ) } , { begin : e . IDENT _RE + "::" } , { className : "symbol" ,
begin : e . UNDERSCORE _IDENT _RE + "(!|\\?)?:" , relevance : 0 } , { className : "symbol" ,
begin : ":(?!\\s)" , contains : [ l , { begin : a } ] , relevance : 0 } , c , { className : "variable" ,
begin : "(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])" } , {
className : "params" , begin : /\|/ , end : /\|/ , relevance : 0 , keywords : n } , {
begin : "(" + e . RE _STARTERS _RE + "|unless)\\s*" , keywords : "unless" , contains : [ {
className : "regexp" , contains : [ e . BACKSLASH _ESCAPE , o ] , illegal : /\n/ , variants : [ {
begin : "/" , end : "/[a-z]*" } , { begin : /%r\{/ , end : /\}[a-z]*/ } , { begin : "%r\\(" ,
end : "\\)[a-z]*" } , { begin : "%r!" , end : "![a-z]*" } , { begin : "%r\\[" , end : "\\][a-z]*" } ]
} ] . concat ( r , s ) , relevance : 0 } ] . concat ( r , s ) ; o . contains = m , d . contains = m ; const p = [ {
begin : /^\s*=>/ , starts : { end : "$" , contains : m } } , { className : "meta" ,
begin : "^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])" ,
starts : { end : "$" , contains : m } } ] ; return s . unshift ( r ) , { name : "Ruby" ,
aliases : [ "rb" , "gemspec" , "podspec" , "thor" , "irb" ] , keywords : n , illegal : /\/\*/ ,
contains : [ e . SHEBANG ( { binary : "ruby" } ) ] . concat ( p ) . concat ( s ) . concat ( m ) } } ,
grmr _erb : e => ( { name : "ERB" , subLanguage : "xml" , contains : [ e . COMMENT ( "<%#" , "%>" ) , {
begin : "<%[%=-]?" , end : "[%-]?%>" , subLanguage : "ruby" , excludeBegin : ! 0 , excludeEnd : ! 0
} ] } ) , grmr _erlang _repl : e => { const t = e . regex ; return { name : "Erlang REPL" , keywords : {
built _in : "spawn spawn_link self" ,
keyword : "after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor"
} , contains : [ { className : "meta" , begin : "^[0-9]+> " , relevance : 10
} , e . COMMENT ( "%" , "$" ) , { className : "number" ,
begin : "\\b(\\d+(_\\d+)*#[a-fA-F0-9]+(_[a-fA-F0-9]+)*|\\d+(_\\d+)*(\\.\\d+(_\\d+)*)?([eE][-+]?\\d+)?)" ,
relevance : 0 } , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , {
begin : t . concat ( /\?(::)?/ , /([A-Z]\w*)/ , /((::)[A-Z]\w*)*/ ) } , { begin : "->" } , {
begin : "ok" } , { begin : "!" } , {
begin : "(\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\b[a-z'][a-zA-Z0-9_']*)" ,
relevance : 0 } , { begin : "[A-Z][a-zA-Z0-9_']*" , relevance : 0 } ] } } , grmr _erlang : e => {
const t = "[a-z'][a-zA-Z0-9_']*" , a = "(" + t + ":" + t + "|" + t + ")" , n = {
keyword : "after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor" ,
literal : "false true" } , i = e . COMMENT ( "%" , "$" ) , r = { className : "number" ,
begin : "\\b(\\d+(_\\d+)*#[a-fA-F0-9]+(_[a-fA-F0-9]+)*|\\d+(_\\d+)*(\\.\\d+(_\\d+)*)?([eE][-+]?\\d+)?)" ,
relevance : 0 } , s = { begin : "fun\\s+" + t + "/\\d+" } , o = { begin : a + "\\(" , end : "\\)" ,
returnBegin : ! 0 , relevance : 0 , contains : [ { begin : a , relevance : 0 } , { begin : "\\(" ,
end : "\\)" , endsWithParent : ! 0 , returnEnd : ! 0 , relevance : 0 } ] } , l = { begin : /\{/ , end : /\}/ ,
relevance : 0 } , _ = { begin : "\\b_([A-Z][A-Za-z0-9_]*)?" , relevance : 0 } , c = {
begin : "[A-Z][a-zA-Z0-9_]*" , relevance : 0 } , d = { begin : "#" + e . UNDERSCORE _IDENT _RE ,
relevance : 0 , returnBegin : ! 0 , contains : [ { begin : "#" + e . UNDERSCORE _IDENT _RE ,
relevance : 0 } , { begin : /\{/ , end : /\}/ , relevance : 0 } ] } , m = {
beginKeywords : "fun receive if try case" , end : "end" , keywords : n }
; m . contains = [ i , s , e . inherit ( e . APOS _STRING _MODE , { className : ""
} ) , m , o , e . QUOTE _STRING _MODE , r , l , _ , c , d ]
; const p = [ i , s , m , o , e . QUOTE _STRING _MODE , r , l , _ , c , d ]
; o . contains [ 1 ] . contains = p , l . contains = p , d . contains [ 1 ] . contains = p ; const u = {
className : "params" , begin : "\\(" , end : "\\)" , contains : p } ; return { name : "Erlang" ,
aliases : [ "erl" ] , keywords : n , illegal : "(</|\\*=|\\+=|-=|/\\*|\\*/|\\(\\*|\\*\\))" ,
contains : [ { className : "function" , begin : "^" + t + "\\s*\\(" , end : "->" , returnBegin : ! 0 ,
illegal : "\\(|#|//|/\\*|\\\\|:|;" , contains : [ u , e . inherit ( e . TITLE _MODE , { begin : t } ) ] ,
starts : { end : ";|\\." , keywords : n , contains : p } } , i , { begin : "^-" , end : "\\." , relevance : 0 ,
excludeEnd : ! 0 , returnBegin : ! 0 , keywords : { $pattern : "-" + e . IDENT _RE ,
keyword : [ "-module" , "-record" , "-undef" , "-export" , "-ifdef" , "-ifndef" , "-author" , "-copyright" , "-doc" , "-vsn" , "-import" , "-include" , "-include_lib" , "-compile" , "-define" , "-else" , "-endif" , "-file" , "-behaviour" , "-behavior" , "-spec" ] . map ( ( e => e + "|1.5" ) ) . join ( " " )
} , contains : [ u ] } , r , e . QUOTE _STRING _MODE , d , _ , c , l , { begin : /\.$/ } ] } } , grmr _excel : e => ( {
name : "Excel formulae" , aliases : [ "xlsx" , "xls" ] , case _insensitive : ! 0 , keywords : {
$pattern : /[a-zA-Z][\w\.]*/ ,
built _in : [ "ABS" , "ACCRINT" , "ACCRINTM" , "ACOS" , "ACOSH" , "ACOT" , "ACOTH" , "AGGREGATE" , "ADDRESS" , "AMORDEGRC" , "AMORLINC" , "AND" , "ARABIC" , "AREAS" , "ASC" , "ASIN" , "ASINH" , "ATAN" , "ATAN2" , "ATANH" , "AVEDEV" , "AVERAGE" , "AVERAGEA" , "AVERAGEIF" , "AVERAGEIFS" , "BAHTTEXT" , "BASE" , "BESSELI" , "BESSELJ" , "BESSELK" , "BESSELY" , "BETADIST" , "BETA.DIST" , "BETAINV" , "BETA.INV" , "BIN2DEC" , "BIN2HEX" , "BIN2OCT" , "BINOMDIST" , "BINOM.DIST" , "BINOM.DIST.RANGE" , "BINOM.INV" , "BITAND" , "BITLSHIFT" , "BITOR" , "BITRSHIFT" , "BITXOR" , "CALL" , "CEILING" , "CEILING.MATH" , "CEILING.PRECISE" , "CELL" , "CHAR" , "CHIDIST" , "CHIINV" , "CHITEST" , "CHISQ.DIST" , "CHISQ.DIST.RT" , "CHISQ.INV" , "CHISQ.INV.RT" , "CHISQ.TEST" , "CHOOSE" , "CLEAN" , "CODE" , "COLUMN" , "COLUMNS" , "COMBIN" , "COMBINA" , "COMPLEX" , "CONCAT" , "CONCATENATE" , "CONFIDENCE" , "CONFIDENCE.NORM" , "CONFIDENCE.T" , "CONVERT" , "CORREL" , "COS" , "COSH" , "COT" , "COTH" , "COUNT" , "COUNTA" , "COUNTBLANK" , "COUNTIF" , "COUNTIFS" , "COUPDAYBS" , "COUPDAYS" , "COUPDAYSNC" , "COUPNCD" , "COUPNUM" , "COUPPCD" , "COVAR" , "COVARIANCE.P" , "COVARIANCE.S" , "CRITBINOM" , "CSC" , "CSCH" , "CUBEKPIMEMBER" , "CUBEMEMBER" , "CUBEMEMBERPROPERTY" , "CUBERANKEDMEMBER" , "CUBESET" , "CUBESETCOUNT" , "CUBEVALUE" , "CUMIPMT" , "CUMPRINC" , "DATE" , "DATEDIF" , "DATEVALUE" , "DAVERAGE" , "DAY" , "DAYS" , "DAYS360" , "DB" , "DBCS" , "DCOUNT" , "DCOUNTA" , "DDB" , "DEC2BIN" , "DEC2HEX" , "DEC2OCT" , "DECIMAL" , "DEGREES" , "DELTA" , "DEVSQ" , "DGET" , "DISC" , "DMAX" , "DMIN" , "DOLLAR" , "DOLLARDE" , "DOLLARFR" , "DPRODUCT" , "DSTDEV" , "DSTDEVP" , "DSUM" , "DURATION" , "DVAR" , "DVARP" , "EDATE" , "EFFECT" , "ENCODEURL" , "EOMONTH" , "ERF" , "ERF.PRECISE" , "ERFC" , "ERFC.PRECISE" , "ERROR.TYPE" , "EUROCONVERT" , "EVEN" , "EXACT" , "EXP" , "EXPON.DIST" , "EXPONDIST" , "FACT" , "FACTDOUBLE" , "FALSE|0" , "F.DIST" , "FDIST" , "F.DIST.RT" , "FILTERXML" , "FIND" , "FINDB" , "F.INV" , "F.INV.RT" , "FINV" , "FISHER" , "FISHERINV" , "FIXED" , "FLOOR" , "FLOOR.MATH" , "FLOOR.PRECISE" , "FORECAST" , "FORECAST.ETS" , "FORECAST.ETS.CONFINT" , "FORECAST.ETS.SEASONALITY" , "FORECAST.ETS.STAT" , "FORECAST.LINEAR" , "FORMULATEXT" , "FREQUENCY" , "F.TEST" , "FTEST" , "FV" , "FVSCHEDULE" , "GAMMA" , "GAMMA.DIST" , "GAMMADIST" , "GAMMA.INV" , "GAMMAINV" , "GAMMALN" , "GAMMALN.PRECISE" , "GAUSS" , "GCD" , "GEOMEAN" , "GESTEP" , "GETPIVOTDATA" , "GROWTH" , "HARMEAN" , "HEX2BIN" , "HEX2DEC" , "HEX2OCT" , "HLOOKUP" , "HOUR" , "HYPERLINK" , "HYPGEOM.DIST" , "HYPGEOMDIST" , "IF" , "IFERROR" , "IFNA" , "IFS" , "IMABS" , "IMAGINARY" , "IMARGUMENT" , "IMCONJUGATE" , "IMCOS" , "IMCOSH" , "IMCOT" , "IMCSC" , "IMCSCH" , "IMDIV" , "IMEXP" , "IMLN" , "IMLOG10" , "IMLOG2" , "IMPOWER" , "IMPRODUCT" , "IMREAL" , "IMSEC" , "IMSECH" , "IMSIN" , "IMSINH" , "IMSQRT" , "IMSUB" , "IMSUM" , "IMTAN" , "INDEX" , "INDIRECT" , "INFO" , "INT" , "INTERCEPT" , "INTRATE" , "IPMT" , "IRR" , "ISBLANK" , "ISERR" , "ISERROR" , "ISEVEN" , "ISFORMULA" , "ISLOGICAL" , "ISNA" , "ISNONTEXT" , "ISNUMBER" , "ISODD" , "ISREF" , "ISTEXT" , "ISO.CEILING" , "ISOWEEKNUM" , "ISPMT" , "JIS" , "KURT" , "LARGE" , "LCM" , "LEFT" , "LEFTB" , "LEN" , "LENB" , "LINEST" , "LN" , "LOG" , "LOG10" , "LOGEST" , "LOGINV" , "LOGNORM.DIST" , "LOGNORMDIST" , "LOGNORM.INV" , "LOOKUP" , "LOWER" , "MATCH" , "MAX" , "MAXA" , "MAXIFS" , "MDETERM" , "MDURATION" , "MEDIAN" , "MID" , "MIDBs" , "MIN" , "MINIFS" , "MINA" , "MINUTE" , "MINVERSE" , "MIRR" , "MMULT" , "MOD" , "MODE" , "MODE.MULT" , "MODE.SNGL" , "MONTH" , "MROUND" , "MULTINOMIAL" , "MUNIT" , "N" , "NA" , "NEGBINOM.DIST" , "NEGBINOMDIST" , "NETWORKDAYS" , "NETWORKDAYS.INTL" , "NOMINAL" , "NORM.DIST" , "NORMDIST" , "NORMINV" , "NORM.INV" , "NORM.S.DIST" , "NORMSDIST" , "NORM.S.INV" , "NORMSINV" , "NOT" , "NOW" , "NPER" , "NPV" , "NUMBERVALUE" , "OCT2BIN" , "OCT2DEC" , "OCT2HEX" , "ODD" , "ODDFPRICE" , "ODDFYIELD" , "ODDLPRICE" , "ODDLYIELD" , "OFFSET" , "OR" , "PDURATION" , "PEARSON" , "PERCENTILE.EXC" , "PERCENTILE.INC" , "PERCENTILE" , "PERCENTRANK.EXC" , "PERCENTRANK.INC" , "PERCENTRANK" , "PERMUT" , "PERMUTATIONA" , "PHI" , "PHONETIC" , "PI" , "PMT" , "POISSON.DIST" , "POISSON" , "POWER" , "PPMT" , "PRICE" , "PRICEDISC" , "PRICEMAT" , "PROB" , "PRODUCT" , "PROPER" , "PV" , "QUARTILE" , "QUARTILE.EXC" , "QUARTILE.INC" , "QUOTIENT" , "RADIANS" , "RAND" , "RANDBETWEEN" , "RANK.AVG" , "RANK.EQ" , "RANK" , "RATE" , "RECEIVED" , "REGISTER.ID" , "REPLACE" , "REPLACEB" , "REPT" , "RIGHT" , "RIGHTB" , "ROMAN" , "ROUND" , "ROUNDDOWN" , "ROUNDUP" , "ROW" , "ROWS" , "RRI" , "RSQ" , "RTD" , "SEARCH" , "SEARCHB" , "SEC" , "SECH" , "SECOND" , "SERIESSUM" , "SHEET" , "SHEETS" , "SIGN" , "SIN" , "SINH" , "SKEW" , "SKEW.P" , "SLN" , "SLOPE" , "SMALL" , "SQL.REQUEST" , "SQRT" , "SQRTPI" , "STANDARDIZE" , "STDEV" , "STDEV.P" , "STDEV.S" , "STDEVA" , "STDEVP" , "STDEVPA" , "STEYX" , " SUBSTITUT
} , contains : [ { begin : /^=/ , end : /[^=]/ , returnEnd : ! 0 , illegal : /=/ , relevance : 10 } , {
className : "symbol" , begin : /\b[A-Z]{1,2}\d+\b/ , end : /[^\d]/ , excludeEnd : ! 0 ,
relevance : 0 } , { className : "symbol" , begin : /[A-Z]{0,2}\d*:[A-Z]{0,2}\d*/ , relevance : 0
} , e . BACKSLASH _ESCAPE , e . QUOTE _STRING _MODE , { className : "number" ,
begin : e . NUMBER _RE + "(%)?" , relevance : 0 } , e . COMMENT ( /\bN\(/ , /\)/ , { excludeBegin : ! 0 ,
excludeEnd : ! 0 , illegal : /\n/ } ) ] } ) , grmr _fix : e => ( { name : "FIX" , contains : [ {
begin : /[^\u2401\u0001]+/ , end : /[\u2401\u0001]/ , excludeEnd : ! 0 , returnBegin : ! 0 ,
returnEnd : ! 1 , contains : [ { begin : /([^\u2401\u0001=]+)/ , end : /=([^\u2401\u0001=]+)/ ,
returnEnd : ! 0 , returnBegin : ! 1 , className : "attr" } , { begin : /=/ , end : /([\u2401\u0001])/ ,
excludeEnd : ! 0 , excludeBegin : ! 0 , className : "string" } ] } ] , case _insensitive : ! 0 } ) ,
grmr _flix : e => ( { name : "Flix" , keywords : {
keyword : [ "case" , "class" , "def" , "else" , "enum" , "if" , "impl" , "import" , "in" , "lat" , "rel" , "index" , "let" , "match" , "namespace" , "switch" , "type" , "yield" , "with" ] ,
literal : [ "true" , "false" ] } ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , { className : "string" ,
begin : /'(.|\\[xXuU][a-zA-Z0-9]+)'/ } , { className : "string" , variants : [ { begin : '"' ,
end : '"' } ] } , { className : "function" , beginKeywords : "def" , end : /[:={\[(\n;]/ ,
excludeEnd : ! 0 , contains : [ { className : "title" , relevance : 0 ,
begin : /[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/
} ] } , e . C _NUMBER _MODE ] } ) , grmr _fortran : e => { const t = e . regex , a = {
variants : [ e . COMMENT ( "!" , "$" , { relevance : 0 } ) , e . COMMENT ( "^C[ ]" , "$" , { relevance : 0
} ) , e . COMMENT ( "^C$" , "$" , { relevance : 0 } ) ]
} , n = /(_[a-z_\d]+)?/ , i = /([de][+-]?\d+)?/ , r = { className : "number" , variants : [ {
begin : t . concat ( /\b\d+/ , /\.(\d*)/ , i , n ) } , { begin : t . concat ( /\b\d+/ , i , n ) } , {
begin : t . concat ( /\.\d+/ , i , n ) } ] , relevance : 0 } , s = { className : "function" ,
beginKeywords : "subroutine function program" , illegal : "[${=\\n]" ,
contains : [ e . UNDERSCORE _TITLE _MODE , { className : "params" , begin : "\\(" , end : "\\)" } ] }
; return { name : "Fortran" , case _insensitive : ! 0 , aliases : [ "f90" , "f95" ] , keywords : {
keyword : [ "kind" , "do" , "concurrent" , "local" , "shared" , "while" , "private" , "call" , "intrinsic" , "where" , "elsewhere" , "type" , "endtype" , "endmodule" , "endselect" , "endinterface" , "end" , "enddo" , "endif" , "if" , "forall" , "endforall" , "only" , "contains" , "default" , "return" , "stop" , "then" , "block" , "endblock" , "endassociate" , "public" , "subroutine|10" , "function" , "program" , ".and." , ".or." , ".not." , ".le." , ".eq." , ".ge." , ".gt." , ".lt." , "goto" , "save" , "else" , "use" , "module" , "select" , "case" , "access" , "blank" , "direct" , "exist" , "file" , "fmt" , "form" , "formatted" , "iostat" , "name" , "named" , "nextrec" , "number" , "opened" , "rec" , "recl" , "sequential" , "status" , "unformatted" , "unit" , "continue" , "format" , "pause" , "cycle" , "exit" , "c_null_char" , "c_alert" , "c_backspace" , "c_form_feed" , "flush" , "wait" , "decimal" , "round" , "iomsg" , "synchronous" , "nopass" , "non_overridable" , "pass" , "protected" , "volatile" , "abstract" , "extends" , "import" , "non_intrinsic" , "value" , "deferred" , "generic" , "final" , "enumerator" , "class" , "associate" , "bind" , "enum" , "c_int" , "c_short" , "c_long" , "c_long_long" , "c_signed_char" , "c_size_t" , "c_int8_t" , "c_int16_t" , "c_int32_t" , "c_int64_t" , "c_int_least8_t" , "c_int_least16_t" , "c_int_least32_t" , "c_int_least64_t" , "c_int_fast8_t" , "c_int_fast16_t" , "c_int_fast32_t" , "c_int_fast64_t" , "c_intmax_t" , "C_intptr_t" , "c_float" , "c_double" , "c_long_double" , "c_float_complex" , "c_double_complex" , "c_long_double_complex" , "c_bool" , "c_char" , "c_null_ptr" , "c_null_funptr" , "c_new_line" , "c_carriage_return" , "c_horizontal_tab" , "c_vertical_tab" , "iso_c_binding" , "c_loc" , "c_funloc" , "c_associated" , "c_f_pointer" , "c_ptr" , "c_funptr" , "iso_fortran_env" , "character_storage_size" , "error_unit" , "file_storage_size" , "input_unit" , "iostat_end" , "iostat_eor" , "numeric_storage_size" , "output_unit" , "c_f_procpointer" , "ieee_arithmetic" , "ieee_support_underflow_control" , "ieee_get_underflow_mode" , "ieee_set_underflow_mode" , "newunit" , "contiguous" , "recursive" , "pad" , "position" , "action" , "delim" , "readwrite" , "eor" , "advance" , "nml" , "interface" , "procedure" , "namelist" , "include" , "sequence" , "elemental" , "pure" , "impure" , "integer" , "real" , "character" , "complex" , "logical" , "codimension" , "dimension" , "allocatable|10" , "parameter" , "external" , "implicit|10" , "none" , "double" , "precision" , "assign" , "intent" , "optional" , "pointer" , "target" , "in" , "out" , "common" , "equivalence" , "data" ] ,
literal : [ ".False." , ".True." ] ,
built _in : [ "alog" , "alog10" , "amax0" , "amax1" , "amin0" , "amin1" , "amod" , "cabs" , "ccos" , "cexp" , "clog" , "csin" , "csqrt" , "dabs" , "dacos" , "dasin" , "datan" , "datan2" , "dcos" , "dcosh" , "ddim" , "dexp" , "dint" , "dlog" , "dlog10" , "dmax1" , "dmin1" , "dmod" , "dnint" , "dsign" , "dsin" , "dsinh" , "dsqrt" , "dtan" , "dtanh" , "float" , "iabs" , "idim" , "idint" , "idnint" , "ifix" , "isign" , "max0" , "max1" , "min0" , "min1" , "sngl" , "algama" , "cdabs" , "cdcos" , "cdexp" , "cdlog" , "cdsin" , "cdsqrt" , "cqabs" , "cqcos" , "cqexp" , "cqlog" , "cqsin" , "cqsqrt" , "dcmplx" , "dconjg" , "derf" , "derfc" , "dfloat" , "dgamma" , "dimag" , "dlgama" , "iqint" , "qabs" , "qacos" , "qasin" , "qatan" , "qatan2" , "qcmplx" , "qconjg" , "qcos" , "qcosh" , "qdim" , "qerf" , "qerfc" , "qexp" , "qgamma" , "qimag" , "qlgama" , "qlog" , "qlog10" , "qmax1" , "qmin1" , "qmod" , "qnint" , "qsign" , "qsin" , "qsinh" , "qsqrt" , "qtan" , "qtanh" , "abs" , "acos" , "aimag" , "aint" , "anint" , "asin" , "atan" , "atan2" , "char" , "cmplx" , "conjg" , "cos" , "cosh" , "exp" , "ichar" , "index" , "int" , "log" , "log10" , "max" , "min" , "nint" , "sign" , "sin" , "sinh" , "sqrt" , "tan" , "tanh" , "print" , "write" , "dim" , "lge" , "lgt" , "lle" , "llt" , "mod" , "nullify" , "allocate" , "deallocate" , "adjustl" , "adjustr" , "all" , "allocated" , "any" , "associated" , "bit_size" , "btest" , "ceiling" , "count" , "cshift" , "date_and_time" , "digits" , "dot_product" , "eoshift" , "epsilon" , "exponent" , "floor" , "fraction" , "huge" , "iand" , "ibclr" , "ibits" , "ibset" , "ieor" , "ior" , "ishft" , "ishftc" , "lbound" , "len_trim" , "matmul" , "maxexponent" , "maxloc" , "maxval" , "merge" , "minexponent" , "minloc" , "minval" , "modulo" , "mvbits" , "nearest" , "pack" , "present" , "product" , "radix" , "random_number" , "random_seed" , "range" , "repeat" , "reshape" , "rrspacing" , "scale" , "scan" , "selected_int_kind" , "selected_real_kind" , "set_exponent" , "shape" , "size" , "spacing" , "spread" , "sum" , "system_clock" , "tiny" , "transpose" , "trim" , "ubound" , "unpack" , "verify" , "achar" , "iachar" , "transfer" , "dble" , "entry" , "dprod" , "cpu_time" , "command_argument_count" , "get_command" , "get_command_argument" , "get_environment_variable" , "is_iostat_end" , "ieee_arithmetic" , "ieee_support_underflow_control" , "ieee_get_underflow_mode" , "ieee_set_underflow_mode" , "is_iostat_eor" , "move_alloc" , "new_line" , "selected_char_kind" , "same_type_as" , "extends_type_of" , "acosh" , "asinh" , "atanh" , "bessel_j0" , "bessel_j1" , "bessel_jn" , "bessel_y0" , "bessel_y1" , "bessel_yn" , "erf" , "erfc" , "erfc_scaled" , "gamma" , "log_gamma" , "hypot" , "norm2" , "atomic_define" , "atomic_ref" , "execute_command_line" , "leadz" , "trailz" , "storage_size" , "merge_bits" , "bge" , "bgt" , "ble" , "blt" , "dshiftl" , "dshiftr" , "findloc" , "iall" , "iany" , "iparity" , "image_index" , "lcobound" , "ucobound" , "maskl" , "maskr" , "num_images" , "parity" , "popcnt" , "poppar" , "shifta" , "shiftl" , "shiftr" , "this_image" , "sync" , "change" , "team" , "co_broadcast" , "co_max" , "co_min" , "co_sum" , "co_reduce" ]
} , illegal : /\/\*/ , contains : [ { className : "string" , relevance : 0 ,
variants : [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ] } , s , { begin : /^C\s*=(?!=)/ ,
relevance : 0 } , a , r ] } } , grmr _fsharp : e => { const t = { scope : "keyword" ,
match : /\b(yield|return|let|do|match|use)!/
} , a = [ "bool" , "byte" , "sbyte" , "int8" , "int16" , "int32" , "uint8" , "uint16" , "uint32" , "int" , "uint" , "int64" , "uint64" , "nativeint" , "unativeint" , "decimal" , "float" , "double" , "float32" , "single" , "char" , "string" , "unit" , "bigint" , "option" , "voption" , "list" , "array" , "seq" , "byref" , "exn" , "inref" , "nativeptr" , "obj" , "outref" , "voidptr" , "Result" ] , n = {
keyword : [ "abstract" , "and" , "as" , "assert" , "base" , "begin" , "class" , "default" , "delegate" , "do" , "done" , "downcast" , "downto" , "elif" , "else" , "end" , "exception" , "extern" , "finally" , "fixed" , "for" , "fun" , "function" , "global" , "if" , "in" , "inherit" , "inline" , "interface" , "internal" , "lazy" , "let" , "match" , "member" , "module" , "mutable" , "namespace" , "new" , "of" , "open" , "or" , "override" , "private" , "public" , "rec" , "return" , "static" , "struct" , "then" , "to" , "try" , "type" , "upcast" , "use" , "val" , "void" , "when" , "while" , "with" , "yield" ] ,
literal : [ "true" , "false" , "null" , "Some" , "None" , "Ok" , "Error" , "infinity" , "infinityf" , "nan" , "nanf" ] ,
built _in : [ "not" , "ref" , "raise" , "reraise" , "dict" , "readOnlyDict" , "set" , "get" , "enum" , "sizeof" , "typeof" , "typedefof" , "nameof" , "nullArg" , "invalidArg" , "invalidOp" , "id" , "fst" , "snd" , "ignore" , "lock" , "using" , "box" , "unbox" , "tryUnbox" , "printf" , "printfn" , "sprintf" , "eprintf" , "eprintfn" , "fprintf" , "fprintfn" , "failwith" , "failwithf" ] ,
"variable.constant" : [ "__LINE__" , "__SOURCE_DIRECTORY__" , "__SOURCE_FILE__" ] } , i = {
variants : [ e . COMMENT ( /\(\*(?!\))/ , /\*\)/ , { contains : [ "self" ]
} ) , e . C _LINE _COMMENT _MODE ] } , r = { scope : "variable" , begin : /``/ , end : /``/
} , s = /\B('|\^)/ , o = { scope : "symbol" , variants : [ { match : E ( s , /``.*?``/ ) } , {
match : E ( s , e . UNDERSCORE _IDENT _RE ) } ] , relevance : 0 } , l = ( { includeEqual : e } ) => { let t
; t = e ? "!%&*+-/<=>@^|~?" : "!%&*+-/<>@^|~?"
; const a = E ( "[" , ... Array . from ( t ) . map ( c ) , "]" ) , n = S ( a , /\./ ) , i = E ( n , m ( n ) ) , r = S ( E ( i , n , "*" ) , E ( a , "+" ) )
; return { scope : "operator" , match : S ( r , /:\?>/ , /:\?/ , /:>/ , /:=/ , /::?/ , /\$/ ) ,
relevance : 0 } } , _ = l ( { includeEqual : ! 0 } ) , d = l ( { includeEqual : ! 1 } ) , p = ( t , s ) => ( {
begin : E ( t , m ( E ( /\s*/ , S ( /\w/ , /'/ , /\^/ , /#/ , /``/ , /\(/ , /{\|/ ) ) ) ) , beginScope : s ,
end : m ( S ( /\n/ , /=/ ) ) , relevance : 0 , keywords : e . inherit ( n , { type : a } ) ,
contains : [ i , o , e . inherit ( r , { scope : null } ) , d ]
} ) , u = p ( /:/ , "operator" ) , g = p ( /\bof\b/ , "keyword" ) , T = {
begin : [ /(^|\s+)/ , /type/ , /\s+/ , /[a-zA-Z_](\w|')*/ ] , beginScope : { 2 : "keyword" ,
4 : "title.class" } , end : m ( /\(|=|$/ ) , keywords : n , contains : [ i , e . inherit ( r , { scope : null
} ) , o , { scope : "operator" , match : /<|>/ } , u ] } , b = { scope : "computation-expression" ,
match : /\b[_a-z]\w*(?=\s*\{)/ } , C = {
begin : [ /^\s*/ , E ( /#/ , S ( "if" , "else" , "endif" , "line" , "nowarn" , "light" , "r" , "i" , "I" , "load" , "time" , "help" , "quit" ) ) , /\b/ ] ,
beginScope : { 2 : "meta" } , end : m ( /\s|$/ ) } , R = {
variants : [ e . BINARY _NUMBER _MODE , e . C _NUMBER _MODE ] } , N = { scope : "string" , begin : /"/ ,
end : /"/ , contains : [ e . BACKSLASH _ESCAPE ] } , O = { scope : "string" , begin : /@"/ , end : /"/ ,
contains : [ { match : /""/ } , e . BACKSLASH _ESCAPE ] } , f = { scope : "string" , begin : /"""/ ,
end : /"""/ , relevance : 2 } , I = { scope : "subst" , begin : /\{/ , end : /\}/ , keywords : n } , h = {
scope : "string" , begin : /\$"/ , end : /"/ , contains : [ { match : /\{\{/ } , { match : /\}\}/
} , e . BACKSLASH _ESCAPE , I ] } , A = { scope : "string" , begin : /(\$@|@\$)"/ , end : /"/ ,
contains : [ { match : /\{\{/ } , { match : /\}\}/ } , { match : /""/ } , e . BACKSLASH _ESCAPE , I ] } , v = {
scope : "string" , begin : /\$"""/ , end : /"""/ , contains : [ { match : /\{\{/ } , { match : /\}\}/
} , I ] , relevance : 2 } , y = { scope : "string" ,
match : E ( /'/ , S ( /[^\\']/ , /\\(?:.|\d{3}|x[a-fA-F\d]{2}|u[a-fA-F\d]{4}|U[a-fA-F\d]{8})/ ) , /'/ )
} ; return I . contains = [ A , h , O , N , y , t , i , r , u , b , C , R , o , _ ] , { name : "F#" ,
aliases : [ "fs" , "f#" ] , keywords : n , illegal : /\/\*/ , classNameAliases : {
"computation-expression" : "keyword" } , contains : [ t , { variants : [ v , A , h , f , O , N , y ]
} , i , r , T , { scope : "meta" , begin : /\[</ , end : />\]/ , relevance : 2 , contains : [ r , f , O , N , y , R ]
} , g , u , b , C , R , o , _ ] } } , grmr _gams : e => { const t = e . regex , a = {
keyword : "abort acronym acronyms alias all and assign binary card diag display else eq file files for free ge gt if integer le loop lt maximizing minimizing model models ne negative no not option options or ord positive prod put putpage puttl repeat sameas semicont semiint smax smin solve sos1 sos2 sum system table then until using while xor yes" ,
literal : "eps inf na" ,
built _in : "abs arccos arcsin arctan arctan2 Beta betaReg binomial ceil centropy cos cosh cvPower div div0 eDist entropy errorf execSeed exp fact floor frac gamma gammaReg log logBeta logGamma log10 log2 mapVal max min mod ncpCM ncpF ncpVUpow ncpVUsin normal pi poly power randBinomial randLinear randTriangle round rPower sigmoid sign signPower sin sinh slexp sllog10 slrec sqexp sqlog10 sqr sqrec sqrt tan tanh trunc uniform uniformInt vcPower bool_and bool_eqv bool_imp bool_not bool_or bool_xor ifThen rel_eq rel_ge rel_gt rel_le rel_lt rel_ne gday gdow ghour gleap gmillisec gminute gmonth gsecond gyear jdate jnow jstart jtime errorLevel execError gamsRelease gamsVersion handleCollect handleDelete handleStatus handleSubmit heapFree heapLimit heapSize jobHandle jobKill jobStatus jobTerminate licenseLevel licenseStatus maxExecError sleep timeClose timeComp timeElapsed timeExec timeStart"
} , n = { className : "symbol" , variants : [ { begin : /=[lgenxc]=/ } , { begin : /\$/ } ] } , i = {
className : "comment" , variants : [ { begin : "'" , end : "'" } , { begin : '"' , end : '"' } ] ,
illegal : "\\n" , contains : [ e . BACKSLASH _ESCAPE ] } , r = { begin : "/" , end : "/" , keywords : a ,
contains : [ i , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , e . C _NUMBER _MODE ]
} , s = /[a-z0-9&#*=?@\\><:,()$[\]_.{}!+%^-]+/ , o = {
begin : /[a-z][a-z0-9_]*(\([a-z0-9_, ]*\))?[ \t]+/ , excludeBegin : ! 0 , end : "$" ,
endsWithParent : ! 0 , contains : [ i , r , { className : "comment" ,
begin : t . concat ( s , t . anyNumberOfTimes ( t . concat ( /[ ]+/ , s ) ) ) , relevance : 0 } ] } ; return {
name : "GAMS" , aliases : [ "gms" ] , case _insensitive : ! 0 , keywords : a ,
contains : [ e . COMMENT ( /^\$ontext/ , /^\$offtext/ ) , { className : "meta" ,
begin : "^\\$[a-z0-9]+" , end : "$" , returnBegin : ! 0 , contains : [ { className : "keyword" ,
begin : "^\\$[a-z0-9]+" } ]
} , e . COMMENT ( "^\\*" , "$" ) , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , {
beginKeywords : "set sets parameter parameters variable variables scalar scalars equation equations" ,
end : ";" ,
contains : [ e . COMMENT ( "^\\*" , "$" ) , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , r , o ]
} , { beginKeywords : "table" , end : ";" , returnBegin : ! 0 , contains : [ {
beginKeywords : "table" , end : "$" , contains : [ o ]
} , e . COMMENT ( "^\\*" , "$" ) , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , e . C _NUMBER _MODE ]
} , { className : "function" , begin : /^[a-z][a-z0-9_,\-+' ()$]+\.{2}/ , returnBegin : ! 0 ,
contains : [ { className : "title" , begin : /^[a-z0-9_]+/ } , { className : "params" ,
begin : /\(/ , end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 } , n ] } , e . C _NUMBER _MODE , n ] } } ,
grmr _gauss : e => { const t = {
keyword : "bool break call callexe checkinterrupt clear clearg closeall cls comlog compile continue create debug declare delete disable dlibrary dllcall do dos ed edit else elseif enable end endfor endif endp endo errorlog errorlogat expr external fn for format goto gosub graph if keyword let lib library line load loadarray loadexe loadf loadk loadm loadp loads loadx local locate loopnextindex lprint lpwidth lshow matrix msym ndpclex new open output outwidth plot plotsym pop prcsn print printdos proc push retp return rndcon rndmod rndmult rndseed run save saveall screen scroll setarray show sparse stop string struct system trace trap threadfor threadendfor threadbegin threadjoin threadstat threadend until use while winprint ne ge le gt lt and xor or not eq eqv" ,
built _in : " abs acf aconcat aeye amax amean AmericanBinomCall AmericanBinomCall _Greeks AmericanBinomCall _ImpVol AmericanBinomPut AmericanBinomPut _Greeks AmericanBinomPut _ImpVol AmericanBSCall AmericanBSCall _Greeks AmericanBSCall _ImpVol AmericanBSPut AmericanBSPut _Greeks AmericanBSPut _ImpVol amin amult annotationGetDefaults annotationSetBkd annotationSetFont annotationSetLineColor annotationSetLineStyle annotationSetLineThickness annualTradingDays arccos arcsin areshape arrayalloc arrayindex arrayinit arraytomat asciiload asclabel astd astds asum atan atan2 atranspose axmargin balance band bandchol bandcholsol bandltsol bandrv bandsolpd bar base10 begwind besselj bessely beta box boxcox cdfBeta cdfBetaInv cdfBinomial cdfBinomialInv cdfBvn cdfBvn2 cdfBvn2e cdfCauchy cdfCauchyInv cdfChic cdfChii cdfChinc cdfChincInv cdfExp cdfExpInv cdfFc cdfFnc cdfFncInv cdfGam cdfGenPareto cdfHyperGeo cdfLaplace cdfLaplaceInv cdfLogistic cdfLogisticInv cdfmControlCreate cdfMvn cdfMvn2e cdfMvnce cdfMvne cdfMvt2e cdfMvtce cdfMvte cdfN cdfN2 cdfNc cdfNegBinomial cdfNegBinomialInv cdfNi cdfPoisson cdfPoissonInv cdfRayleigh cdfRayleighInv cdfTc cdfTci cdfTnc cdfTvn cdfWeibull cdfWeibullInv cdir ceil ChangeDir chdir chiBarSquare chol choldn cholsol cholup chrs close code cols colsf combinate combinated complex con cond conj cons ConScore contour conv convertsatostr convertstrtosa corrm corrms corrvc corrx corrxs cos cosh counts countwts crossprd crout croutp csrcol csrlin csvReadM csvReadSA cumprodc cumsumc curve cvtos datacreate datacreatecomplex datalist dataload dataloop dataopen datasave date datestr datestring datestrymd dayinyr dayofweek dbAddDatabase dbClose dbCommit dbCreateQuery dbExecQuery dbGetConnectOptions dbGetDatabaseName dbGetDriverName dbGetDrivers dbGetHostName dbGetLastErrorNum dbGetLastErrorText dbGetNumericalPrecPolicy dbGetPassword dbGetPort dbGetTableHeaders dbGetTables dbGetUserName dbHasFeature dbIsDriverAvailable dbIsOpen dbIsOpenError dbOpen dbQueryBindValue dbQueryClear dbQueryCols dbQueryExecPrepared dbQueryFetchAllM dbQueryFetchAllSA dbQueryFetchOneM dbQueryFetchOneSA dbQueryFinish dbQueryGetBoundValue dbQueryGetBoundValues dbQueryGetField dbQueryGetLastErrorNum dbQueryGetLastErrorText dbQueryGetLastInsertID dbQueryGetLastQuery dbQueryGetPosition dbQueryIsActive dbQueryIsForwardOnly dbQueryIsNull dbQueryIsSelect dbQueryIsValid dbQueryPrepare dbQueryRows dbQuerySeek dbQuerySeekFirst dbQuerySeekLast dbQuerySeekNext dbQuerySeekPrevious dbQuerySetForwardOnly dbRemoveDatabase dbRollback dbSetConnectOptions dbSetDatabaseName dbSetHostName dbSetNumericalPrecPolicy dbSetPort dbSetUserName dbTransaction DeleteFile delif delrows denseToSp denseToSpRE denToZero design det detl dfft dffti diag diagrv digamma doswin DOSWinCloseall DOSWinOpen dotfeq dotfeqmt dotfge dotfgemt dotfgt dotfgtmt dotfle dotflemt dotflt dotfltmt dotfne dotfnemt draw drop dsCreate dstat dstatmt dstatmtControlCreate dtdate dtday dttime dttodtv dttostr dttoutc dtvnormal dtvtodt dtvtoutc dummy dummybr dummydn eig eigh eighv eigv elapsedTradingDays endwind envget eof eqSolve eqSolvemt eqSolvemtControlCreate eqSolvemtOutCreate eqSolveset erf erfc erfccplx erfcplx error etdays ethsec etstr EuropeanBinomCall EuropeanBinomCall _Greeks EuropeanBinomCall _ImpVol EuropeanBinomPut EuropeanBinomPut _Greeks EuropeanBinomPut _ImpVol EuropeanBSCall EuropeanBSCall _Greeks EuropeanBSCall _ImpVol EuropeanBSPut EuropeanBSPut _Greeks EuropeanBSPut _ImpVol exctsmpl exec execbg exp extern eye fcheckerr fclearerr feq feqmt fflush fft ffti fftm fftmi fftn fge fgemt fgets fgetsa fgetsat fgetst fgt fgtmt fileinfo filesa fle flemt floor flt fltmt fmod fne fnemt fonts fopen formatcv formatnv fputs fputst fseek fstrerror ftell ftocv ftos ftostrC gamma gammacplx gammaii gausset gdaAppend gdaCreate gdaDStat gdaDStatMat gdaGetIndex gdaGetName gdaGetNames gdaGetOrders gdaGetType gdaGetTypes gdaGetVarInfo gdaIsCplx gdaLoad gdaPack gdaRead gdaReadByIndex gdaReadSome gdaReadSparse gdaReadStruct gdaReportVarInfo gdaSave gdaUpdate gdaUpdateAndPack gdaVars gdaWrite gdaWrite32 gdaWriteSome getarray getd
literal : "DB_AFTER_LAST_ROW DB_ALL_TABLES DB_BATCH_OPERATIONS DB_BEFORE_FIRST_ROW DB_BLOB DB_EVENT_NOTIFICATIONS DB_FINISH_QUERY DB_HIGH_PRECISION DB_LAST_INSERT_ID DB_LOW_PRECISION_DOUBLE DB_LOW_PRECISION_INT32 DB_LOW_PRECISION_INT64 DB_LOW_PRECISION_NUMBERS DB_MULTIPLE_RESULT_SETS DB_NAMED_PLACEHOLDERS DB_POSITIONAL_PLACEHOLDERS DB_PREPARED_QUERIES DB_QUERY_SIZE DB_SIMPLE_LOCKING DB_SYSTEM_TABLES DB_TABLES DB_TRANSACTIONS DB_UNICODE DB_VIEWS __STDIN __STDOUT __STDERR __FILE_DIR"
} , a = e . COMMENT ( "@" , "@" ) , n = { className : "meta" , begin : "#" , end : "$" , keywords : {
keyword : "define definecs|10 undef ifdef ifndef iflight ifdllcall ifmac ifos2win ifunix else endif lineson linesoff srcfile srcline"
} , contains : [ { begin : /\\\n/ , relevance : 0 } , { beginKeywords : "include" , end : "$" ,
keywords : { keyword : "include" } , contains : [ { className : "string" , begin : '"' , end : '"' ,
illegal : "\\n" } ] } , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , a ] } , i = {
begin : /\bstruct\s+/ , end : /\s/ , keywords : "struct" , contains : [ { className : "type" ,
begin : e . UNDERSCORE _IDENT _RE , relevance : 0 } ] } , r = [ { className : "params" , begin : /\(/ ,
end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 , endsWithParent : ! 0 , relevance : 0 , contains : [ {
className : "literal" , begin : /\.\.\./ } , e . C _NUMBER _MODE , e . C _BLOCK _COMMENT _MODE , a , i ]
} ] , s = { className : "title" , begin : e . UNDERSCORE _IDENT _RE , relevance : 0 } , o = ( t , n , i ) => {
const o = e . inherit ( { className : "function" , beginKeywords : t , end : n , excludeEnd : ! 0 ,
contains : [ ] . concat ( r ) } , i || { } )
; return o . contains . push ( s ) , o . contains . push ( e . C _NUMBER _MODE ) ,
o . contains . push ( e . C _BLOCK _COMMENT _MODE ) , o . contains . push ( a ) , o } , l = {
className : "built_in" , begin : "\\b(" + t . built _in . split ( " " ) . join ( "|" ) + ")\\b" } , _ = {
className : "string" , begin : '"' , end : '"' , contains : [ e . BACKSLASH _ESCAPE ] , relevance : 0
} , c = { begin : e . UNDERSCORE _IDENT _RE + "\\s*\\(" , returnBegin : ! 0 , keywords : t ,
relevance : 0 , contains : [ { beginKeywords : t . keyword } , l , { className : "built_in" ,
begin : e . UNDERSCORE _IDENT _RE , relevance : 0 } ] } , d = { begin : /\(/ , end : /\)/ , relevance : 0 ,
keywords : { built _in : t . built _in , literal : t . literal } ,
contains : [ e . C _NUMBER _MODE , e . C _BLOCK _COMMENT _MODE , a , l , c , _ , "self" ] }
; return c . contains . push ( d ) , { name : "GAUSS" , aliases : [ "gss" ] , case _insensitive : ! 0 ,
keywords : t , illegal : /(\{[%#]|[%#]\}| <- )/ ,
contains : [ e . C _NUMBER _MODE , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , a , _ , n , {
className : "keyword" ,
begin : /\bexternal (matrix|string|array|sparse matrix|struct|proc|keyword|fn)/
} , o ( "proc keyword" , ";" ) , o ( "fn" , "=" ) , { beginKeywords : "for threadfor" , end : /;/ ,
relevance : 0 , contains : [ e . C _BLOCK _COMMENT _MODE , a , d ] } , { variants : [ {
begin : e . UNDERSCORE _IDENT _RE + "\\." + e . UNDERSCORE _IDENT _RE } , {
begin : e . UNDERSCORE _IDENT _RE + "\\s*=" } ] , relevance : 0 } , c , i ] } } , grmr _gcode : e => {
const t = e . inherit ( e . C _NUMBER _MODE , {
begin : "([-+]?((\\.\\d+)|(\\d+)(\\.\\d*)?))|" + e . C _NUMBER _RE
} ) , a = [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . COMMENT ( /\(/ , /\)/ ) , t , e . inherit ( e . APOS _STRING _MODE , {
illegal : null } ) , e . inherit ( e . QUOTE _STRING _MODE , { illegal : null } ) , { className : "name" ,
begin : "([G])([0-9]+\\.?[0-9]?)" } , { className : "name" ,
begin : "([M])([0-9]+\\.?[0-9]?)" } , { className : "attr" , begin : "(VC|VS|#)" ,
end : "(\\d+)" } , { className : "attr" , begin : "(VZOFX|VZOFY|VZOFZ)" } , {
className : "built_in" ,
begin : "(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\[)" , contains : [ t ] ,
end : "\\]" } , { className : "symbol" , variants : [ { begin : "N" , end : "\\d+" , illegal : "\\W" } ] } ]
; return { name : "G-code (ISO 6983)" , aliases : [ "nc" ] , case _insensitive : ! 0 , keywords : {
$pattern : "[A-Z_][A-Z0-9_.]*" ,
keyword : "IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR"
} , contains : [ { className : "meta" , begin : "%" } , { className : "meta" , begin : "([O])([0-9]+)"
} ] . concat ( a ) } } , grmr _gherkin : e => ( { name : "Gherkin" , aliases : [ "feature" ] ,
keywords : "Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When" ,
contains : [ { className : "symbol" , begin : "\\*" , relevance : 0 } , { className : "meta" ,
begin : "@[^@\\s]+" } , { begin : "\\|" , end : "\\|\\w*$" , contains : [ { className : "string" ,
begin : "[^|]+" } ] } , { className : "variable" , begin : "<" , end : ">" } , e . HASH _COMMENT _MODE , {
className : "string" , begin : '"""' , end : '"""' } , e . QUOTE _STRING _MODE ] } ) , grmr _glsl : e => ( {
name : "GLSL" , keywords : {
keyword : "break continue discard do else for if return while switch case default attribute binding buffer ccw centroid centroid varying coherent column_major const cw depth_any depth_greater depth_less depth_unchanged early_fragment_tests equal_spacing flat fractional_even_spacing fractional_odd_spacing highp in index inout invariant invocations isolines layout line_strip lines lines_adjacency local_size_x local_size_y local_size_z location lowp max_vertices mediump noperspective offset origin_upper_left out packed patch pixel_center_integer point_mode points precise precision quads r11f_g11f_b10f r16 r16_snorm r16f r16i r16ui r32f r32i r32ui r8 r8_snorm r8i r8ui readonly restrict rg16 rg16_snorm rg16f rg16i rg16ui rg32f rg32i rg32ui rg8 rg8_snorm rg8i rg8ui rgb10_a2 rgb10_a2ui rgba16 rgba16_snorm rgba16f rgba16i rgba16ui rgba32f rgba32i rgba32ui rgba8 rgba8_snorm rgba8i rgba8ui row_major sample shared smooth std140 std430 stream triangle_strip triangles triangles_adjacency uniform varying vertices volatile writeonly" ,
type : "atomic_uint bool bvec2 bvec3 bvec4 dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 double dvec2 dvec3 dvec4 float iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray int isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow image1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D samplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 vec2 vec3 vec4 void" ,
built _in : " gl _MaxAtomicCounterBindings gl _MaxAtomicCounterBufferSize gl _MaxClipDistances gl _MaxClipPlanes gl _MaxCombinedAtomicCounterBuffers gl _MaxCombinedAtomicCounters gl _MaxCombinedImageUniforms gl _MaxCombinedImageUnitsAndFragmentOutputs gl _MaxCombinedTextureImageUnits gl _MaxComputeAtomicCounterBuffers gl _MaxComputeAtomicCounters gl _MaxComputeImageUniforms gl _MaxComputeTextureImageUnits gl _MaxComputeUniformComponents gl _MaxComputeWorkGroupCount gl _MaxComputeWorkGroupSize gl _MaxDrawBuffers gl _MaxFragmentAtomicCounterBuffers gl _MaxFragmentAtomicCounters gl _MaxFragmentImageUniforms gl _MaxFragmentInputComponents gl _MaxFragmentInputVectors gl _MaxFragmentUniformComponents gl _MaxFragmentUniformVectors gl _MaxGeometryAtomicCounterBuffers gl _MaxGeometryAtomicCounters gl _MaxGeometryImageUniforms gl _MaxGeometryInputComponents gl _MaxGeometryOutputComponents gl _MaxGeometryOutputVertices gl _MaxGeometryTextureImageUnits gl _MaxGeometryTotalOutputComponents gl _MaxGeometryUniformComponents gl _MaxGeometryVaryingComponents gl _MaxImageSamples gl _MaxImageUnits gl _MaxLights gl _MaxPatchVertices gl _MaxProgramTexelOffset gl _MaxTessControlAtomicCounterBuffers gl _MaxTessControlAtomicCounters gl _MaxTessControlImageUniforms gl _MaxTessControlInputComponents gl _MaxTessControlOutputComponents gl _MaxTessControlTextureImageUnits gl _MaxTessControlTotalOutputComponents gl _MaxTessControlUniformComponents gl _MaxTessEvaluationAtomicCounterBuffers gl _MaxTessEvaluationAtomicCounters gl _MaxTessEvaluationImageUniforms gl _MaxTessEvaluationInputComponents gl _MaxTessEvaluationOutputComponents gl _MaxTessEvaluationTextureImageUnits gl _MaxTessEvaluationUniformComponents gl _MaxTessGenLevel gl _MaxTessPatchComponents gl _MaxTextureCoords gl _MaxTextureImageUnits gl _MaxTextureUnits gl _MaxVaryingComponents gl _MaxVaryingFloats gl _MaxVaryingVectors gl _MaxVertexAtomicCounterBuffers gl _MaxVertexAtomicCounters gl _MaxVertexAttribs gl _MaxVertexImageUniforms gl _MaxVertexOutputComponents gl _MaxVertexOutputVectors gl _MaxVertexTextureImageUnits gl _MaxVertexUniformComponents gl _MaxVertexUniformVectors gl _MaxViewports gl _MinProgramTexelOffset gl _BackColor gl _BackLightModelProduct gl _BackLightProduct gl _BackMaterial gl _BackSecondaryColor gl _ClipDistance gl _ClipPlane gl _ClipVertex gl _Color gl _DepthRange gl _EyePlaneQ gl _EyePlaneR gl _EyePlaneS gl _EyePlaneT gl _Fog gl _FogCoord gl _FogFragCoord gl _FragColor gl _FragCoord gl _FragData gl _FragDepth gl _FrontColor gl _FrontFacing gl _FrontLightModelProduct gl _FrontLightProduct gl _FrontMaterial gl _FrontSecondaryColor gl _GlobalInvocationID gl _InstanceID gl _InvocationID gl _Layer gl _LightModel gl _LightSource gl _LocalInvocationID gl _LocalInvocationIndex gl _ModelViewMatrix gl _ModelViewMatrixInverse gl _ModelViewMatrixInverseTranspose gl _ModelViewMatrixTranspose gl _ModelViewProjectionMatrix gl _ModelViewProjectionMatrixInverse gl _ModelViewProjectionMatrixInverseTranspose gl _ModelViewProjectionMatrixTranspose gl _MultiTexCoord0 gl _MultiTexCoord1 gl _MultiTexCoord2 gl _MultiTexCoord3 gl _MultiTexCoord4 gl _MultiTexCoord5 gl _MultiTexCoord6 gl _MultiTexCoord7 gl _Normal gl _NormalMatrix gl _NormalScale gl _NumSamples gl _NumWorkGroups gl _ObjectPlaneQ gl _ObjectPlaneR gl _ObjectPlaneS gl _ObjectPlaneT gl _PatchVerticesIn gl _Point gl _PointCoord gl _PointSize gl _Position gl _PrimitiveID gl _PrimitiveIDIn gl _ProjectionMatrix gl _ProjectionMatrixInverse gl _ProjectionMatrixInverseTranspose gl _ProjectionMatrixTranspose gl _SampleID gl _SampleMask gl _SampleMaskIn gl _SamplePosition gl _SecondaryColor gl _TessCoord gl _TessLevelInner gl _TessLevelOuter gl _TexCoord gl _TextureEnvColor gl _TextureMatrix gl _TextureMatrixInverse gl _TextureMatrixInverseTranspose gl _TextureMatrixTranspose gl _Vertex gl _VertexID gl _ViewportIndex gl _WorkGroupID gl _WorkGroupSize gl _in gl _out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicAdd atomicAnd atomicCompSwap atomicCounter atomicCounterDecrement atomicCounterIncrement atomicExchange atomicMax atomicMin atomicOr atomicXor barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross
literal : "true false" } , illegal : '"' ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . C _NUMBER _MODE , {
className : "meta" , begin : "#" , end : "$" } ] } ) , grmr _gml : e => ( { name : "GML" ,
case _insensitive : ! 1 , keywords : {
keyword : [ "begin" , "end" , "if" , "then" , "else" , "while" , "do" , "for" , "break" , "continue" , "with" , "until" , "repeat" , "exit" , "and" , "or" , "xor" , "not" , "return" , "mod" , "div" , "switch" , "case" , "default" , "var" , "globalvar" , "enum" , "function" , "constructor" , "delete" , "#macro" , "#region" , "#endregion" ] ,
built _in : [ "is_real" , "is_string" , "is_array" , "is_undefined" , "is_int32" , "is_int64" , "is_ptr" , "is_vec3" , "is_vec4" , "is_matrix" , "is_bool" , "is_method" , "is_struct" , "is_infinity" , "is_nan" , "is_numeric" , "typeof" , "variable_global_exists" , "variable_global_get" , "variable_global_set" , "variable_instance_exists" , "variable_instance_get" , "variable_instance_set" , "variable_instance_get_names" , "variable_struct_exists" , "variable_struct_get" , "variable_struct_get_names" , "variable_struct_names_count" , "variable_struct_remove" , "variable_struct_set" , "array_delete" , "array_insert" , "array_length" , "array_length_1d" , "array_length_2d" , "array_height_2d" , "array_equals" , "array_create" , "array_copy" , "array_pop" , "array_push" , "array_resize" , "array_sort" , "random" , "random_range" , "irandom" , "irandom_range" , "random_set_seed" , "random_get_seed" , "randomize" , "randomise" , "choose" , "abs" , "round" , "floor" , "ceil" , "sign" , "frac" , "sqrt" , "sqr" , "exp" , "ln" , "log2" , "log10" , "sin" , "cos" , "tan" , "arcsin" , "arccos" , "arctan" , "arctan2" , "dsin" , "dcos" , "dtan" , "darcsin" , "darccos" , "darctan" , "darctan2" , "degtorad" , "radtodeg" , "power" , "logn" , "min" , "max" , "mean" , "median" , "clamp" , "lerp" , "dot_product" , "dot_product_3d" , "dot_product_normalised" , "dot_product_3d_normalised" , "dot_product_normalized" , "dot_product_3d_normalized" , "math_set_epsilon" , "math_get_epsilon" , "angle_difference" , "point_distance_3d" , "point_distance" , "point_direction" , "lengthdir_x" , "lengthdir_y" , "real" , "string" , "int64" , "ptr" , "string_format" , "chr" , "ansi_char" , "ord" , "string_length" , "string_byte_length" , "string_pos" , "string_copy" , "string_char_at" , "string_ord_at" , "string_byte_at" , "string_set_byte_at" , "string_delete" , "string_insert" , "string_lower" , "string_upper" , "string_repeat" , "string_letters" , "string_digits" , "string_lettersdigits" , "string_replace" , "string_replace_all" , "string_count" , "string_hash_to_newline" , "clipboard_has_text" , "clipboard_set_text" , "clipboard_get_text" , "date_current_datetime" , "date_create_datetime" , "date_valid_datetime" , "date_inc_year" , "date_inc_month" , "date_inc_week" , "date_inc_day" , "date_inc_hour" , "date_inc_minute" , "date_inc_second" , "date_get_year" , "date_get_month" , "date_get_week" , "date_get_day" , "date_get_hour" , "date_get_minute" , "date_get_second" , "date_get_weekday" , "date_get_day_of_year" , "date_get_hour_of_year" , "date_get_minute_of_year" , "date_get_second_of_year" , "date_year_span" , "date_month_span" , "date_week_span" , "date_day_span" , "date_hour_span" , "date_minute_span" , "date_second_span" , "date_compare_datetime" , "date_compare_date" , "date_compare_time" , "date_date_of" , "date_time_of" , "date_datetime_string" , "date_date_string" , "date_time_string" , "date_days_in_month" , "date_days_in_year" , "date_leap_year" , "date_is_today" , "date_set_timezone" , "date_get_timezone" , "game_set_speed" , "game_get_speed" , "motion_set" , "motion_add" , "place_free" , "place_empty" , "place_meeting" , "place_snapped" , "move_random" , "move_snap" , "move_towards_point" , "move_contact_solid" , "move_contact_all" , "move_outside_solid" , "move_outside_all" , "move_bounce_solid" , "move_bounce_all" , "move_wrap" , "distance_to_point" , "distance_to_object" , "position_empty" , "position_meeting" , "path_start" , "path_end" , "mp_linear_step" , "mp_potential_step" , "mp_linear_step_object" , "mp_potential_step_object" , "mp_potential_settings" , "mp_linear_path" , "mp_potential_path" , "mp_linear_path_object" , "mp_potential_path_object" , "mp_grid_create" , "mp_grid_destroy" , "mp_grid_clear_all" , "mp_grid_clear_cell" , "mp_grid_clear_rectangle" , "mp_grid_add_cell" , "mp_grid_get_cell" , "mp_grid_add_rectangle" , "mp_grid_add_instances" , "mp_grid_path" , "mp_grid_draw" , "mp_grid_to_ds_grid" , "collision_point" , "collision_rectangle" , "collision_circle" , "collision_ellipse" , "collision_line" , "collision_point_list" , "collision_rectangle_list" , "collision_circle_list" , "collision_ellipse_list" , "collision_line_list" , "instance_position_list" , "instance_place_list" , "point_in_rectangle" , "point_in_triangle" , "point_in_circle" , "rectangle_in_rectangle" , "rectangle_in_triangle" , "rectangle_in_circle" , "instance_find" , "instance_exists" , "instance_number" , "instance_position" , "instance_nearest" , "instance_furthest" , "instance_place" , "instance_create_depth" , "instance_create_layer" , " i
literal : [ "true" , "false" , "all" , "noone" , "undefined" , "pointer_invalid" , "pointer_null" ] ,
symbol : [ "other" , "global" , "local" , "path_action_stop" , "path_action_restart" , "path_action_continue" , "path_action_reverse" , "pi" , "GM_build_date" , "GM_version" , "GM_runtime_version" , "timezone_local" , "timezone_utc" , "gamespeed_fps" , "gamespeed_microseconds" , "ev_create" , "ev_destroy" , "ev_step" , "ev_alarm" , "ev_keyboard" , "ev_mouse" , "ev_collision" , "ev_other" , "ev_draw" , "ev_draw_begin" , "ev_draw_end" , "ev_draw_pre" , "ev_draw_post" , "ev_keypress" , "ev_keyrelease" , "ev_trigger" , "ev_left_button" , "ev_right_button" , "ev_middle_button" , "ev_no_button" , "ev_left_press" , "ev_right_press" , "ev_middle_press" , "ev_left_release" , "ev_right_release" , "ev_middle_release" , "ev_mouse_enter" , "ev_mouse_leave" , "ev_mouse_wheel_up" , "ev_mouse_wheel_down" , "ev_global_left_button" , "ev_global_right_button" , "ev_global_middle_button" , "ev_global_left_press" , "ev_global_right_press" , "ev_global_middle_press" , "ev_global_left_release" , "ev_global_right_release" , "ev_global_middle_release" , "ev_joystick1_left" , "ev_joystick1_right" , "ev_joystick1_up" , "ev_joystick1_down" , "ev_joystick1_button1" , "ev_joystick1_button2" , "ev_joystick1_button3" , "ev_joystick1_button4" , "ev_joystick1_button5" , "ev_joystick1_button6" , "ev_joystick1_button7" , "ev_joystick1_button8" , "ev_joystick2_left" , "ev_joystick2_right" , "ev_joystick2_up" , "ev_joystick2_down" , "ev_joystick2_button1" , "ev_joystick2_button2" , "ev_joystick2_button3" , "ev_joystick2_button4" , "ev_joystick2_button5" , "ev_joystick2_button6" , "ev_joystick2_button7" , "ev_joystick2_button8" , "ev_outside" , "ev_boundary" , "ev_game_start" , "ev_game_end" , "ev_room_start" , "ev_room_end" , "ev_no_more_lives" , "ev_animation_end" , "ev_end_of_path" , "ev_no_more_health" , "ev_close_button" , "ev_user0" , "ev_user1" , "ev_user2" , "ev_user3" , "ev_user4" , "ev_user5" , "ev_user6" , "ev_user7" , "ev_user8" , "ev_user9" , "ev_user10" , "ev_user11" , "ev_user12" , "ev_user13" , "ev_user14" , "ev_user15" , "ev_step_normal" , "ev_step_begin" , "ev_step_end" , "ev_gui" , "ev_gui_begin" , "ev_gui_end" , "ev_cleanup" , "ev_gesture" , "ev_gesture_tap" , "ev_gesture_double_tap" , "ev_gesture_drag_start" , "ev_gesture_dragging" , "ev_gesture_drag_end" , "ev_gesture_flick" , "ev_gesture_pinch_start" , "ev_gesture_pinch_in" , "ev_gesture_pinch_out" , "ev_gesture_pinch_end" , "ev_gesture_rotate_start" , "ev_gesture_rotating" , "ev_gesture_rotate_end" , "ev_global_gesture_tap" , "ev_global_gesture_double_tap" , "ev_global_gesture_drag_start" , "ev_global_gesture_dragging" , "ev_global_gesture_drag_end" , "ev_global_gesture_flick" , "ev_global_gesture_pinch_start" , "ev_global_gesture_pinch_in" , "ev_global_gesture_pinch_out" , "ev_global_gesture_pinch_end" , "ev_global_gesture_rotate_start" , "ev_global_gesture_rotating" , "ev_global_gesture_rotate_end" , "vk_nokey" , "vk_anykey" , "vk_enter" , "vk_return" , "vk_shift" , "vk_control" , "vk_alt" , "vk_escape" , "vk_space" , "vk_backspace" , "vk_tab" , "vk_pause" , "vk_printscreen" , "vk_left" , "vk_right" , "vk_up" , "vk_down" , "vk_home" , "vk_end" , "vk_delete" , "vk_insert" , "vk_pageup" , "vk_pagedown" , "vk_f1" , "vk_f2" , "vk_f3" , "vk_f4" , "vk_f5" , "vk_f6" , "vk_f7" , "vk_f8" , "vk_f9" , "vk_f10" , "vk_f11" , "vk_f12" , "vk_numpad0" , "vk_numpad1" , "vk_numpad2" , "vk_numpad3" , "vk_numpad4" , "vk_numpad5" , "vk_numpad6" , "vk_numpad7" , "vk_numpad8" , "vk_numpad9" , "vk_divide" , "vk_multiply" , "vk_subtract" , "vk_add" , "vk_decimal" , "vk_lshift" , "vk_lcontrol" , "vk_lalt" , "vk_rshift" , "vk_rcontrol" , "vk_ralt" , "mb_any" , "mb_none" , "mb_left" , "mb_right" , "mb_middle" , "c_aqua" , "c_black" , "c_blue" , "c_dkgray" , "c_fuchsia" , "c_gray" , "c_green" , "c_lime" , "c_ltgray" , "c_maroon" , "c_navy" , "c_olive" , "c_purple" , "c_red" , "c_silver" , "c_teal" , "c_white" , "c_yellow" , "c_orange" , "fa_left" , "fa_center" , "fa_right" , "fa_top" , "fa_middle" , "fa_bottom" , "pr_pointlist" , "pr_linelist" , "pr_linestrip" , "pr_trianglelist" , "pr_trianglestrip" , "pr_trianglefan" , "bm_complex" , "bm_normal" , "bm_add" , "bm_max" , "bm_subtract" , "bm_zero" , "bm_one" , "bm_src_colour" , "bm_inv_src_colour" , "bm_src_color" , "bm_inv_src_color" , "bm_src_alpha" , "bm_inv_src_alpha" , "bm_dest_alpha" , "bm_inv_dest_alpha" , "bm_dest_colour" , "bm_inv_dest_colour" , "bm_dest_color" , "bm_inv_dest_color" , "bm_src_alpha_sat" , "tf_point" , "tf_linear" , "tf_anisotropic" , "mip_off" , "mip_on" , "mip_markedonly" , "audio_falloff_none" , "audio_falloff_inverse_distance" , " audio _falloff _
"variable.language" : [ "self" , "argument_relative" , "argument" , "argument0" , "argument1" , "argument2" , "argument3" , "argument4" , "argument5" , "argument6" , "argument7" , "argument8" , "argument9" , "argument10" , "argument11" , "argument12" , "argument13" , "argument14" , "argument15" , "argument_count" , "x|0" , "y|0" , "xprevious" , "yprevious" , "xstart" , "ystart" , "hspeed" , "vspeed" , "direction" , "speed" , "friction" , "gravity" , "gravity_direction" , "path_index" , "path_position" , "path_positionprevious" , "path_speed" , "path_scale" , "path_orientation" , "path_endaction" , "object_index" , "id|0" , "solid" , "persistent" , "mask_index" , "instance_count" , "instance_id" , "room_speed" , "fps" , "fps_real" , "current_time" , "current_year" , "current_month" , "current_day" , "current_weekday" , "current_hour" , "current_minute" , "current_second" , "alarm" , "timeline_index" , "timeline_position" , "timeline_speed" , "timeline_running" , "timeline_loop" , "room" , "room_first" , "room_last" , "room_width" , "room_height" , "room_caption" , "room_persistent" , "score" , "lives" , "health" , "show_score" , "show_lives" , "show_health" , "caption_score" , "caption_lives" , "caption_health" , "event_type" , "event_number" , "event_object" , "event_action" , "application_surface" , "gamemaker_pro" , "gamemaker_registered" , "gamemaker_version" , "error_occurred" , "error_last" , "debug_mode" , "keyboard_key" , "keyboard_lastkey" , "keyboard_lastchar" , "keyboard_string" , "mouse_x" , "mouse_y" , "mouse_button" , "mouse_lastbutton" , "cursor_sprite" , "visible" , "sprite_index" , "sprite_width" , "sprite_height" , "sprite_xoffset" , "sprite_yoffset" , "image_number" , "image_index" , "image_speed" , "depth" , "image_xscale" , "image_yscale" , "image_angle" , "image_alpha" , "image_blend" , "bbox_left" , "bbox_right" , "bbox_top" , "bbox_bottom" , "layer" , "background_colour" , "background_showcolour" , "background_color" , "background_showcolor" , "view_enabled" , "view_current" , "view_visible" , "view_xview" , "view_yview" , "view_wview" , "view_hview" , "view_xport" , "view_yport" , "view_wport" , "view_hport" , "view_angle" , "view_hborder" , "view_vborder" , "view_hspeed" , "view_vspeed" , "view_object" , "view_surface_id" , "view_camera" , "game_id" , "game_display_name" , "game_project_name" , "game_save_id" , "working_directory" , "temp_directory" , "program_directory" , "browser_width" , "browser_height" , "os_type" , "os_device" , "os_browser" , "os_version" , "display_aa" , "async_load" , "delta_time" , "webgl_enabled" , "event_data" , "iap_data" , "phy_rotation" , "phy_position_x" , "phy_position_y" , "phy_angular_velocity" , "phy_linear_velocity_x" , "phy_linear_velocity_y" , "phy_speed_x" , "phy_speed_y" , "phy_speed" , "phy_angular_damping" , "phy_linear_damping" , "phy_bullet" , "phy_fixed_rotation" , "phy_active" , "phy_mass" , "phy_inertia" , "phy_com_x" , "phy_com_y" , "phy_dynamic" , "phy_kinematic" , "phy_sleeping" , "phy_collision_points" , "phy_collision_x" , "phy_collision_y" , "phy_col_normal_x" , "phy_col_normal_y" , "phy_position_xprevious" , "phy_position_yprevious" ]
} ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . C _NUMBER _MODE ]
} ) , grmr _go : e => { const t = {
2021-10-19 23:53:22 -07:00
keyword : [ "break" , "case" , "chan" , "const" , "continue" , "default" , "defer" , "else" , "fallthrough" , "for" , "func" , "go" , "goto" , "if" , "import" , "interface" , "map" , "package" , "range" , "return" , "select" , "struct" , "switch" , "type" , "var" ] ,
type : [ "bool" , "byte" , "complex64" , "complex128" , "error" , "float32" , "float64" , "int8" , "int16" , "int32" , "int64" , "string" , "uint8" , "uint16" , "uint32" , "uint64" , "int" , "uint" , "uintptr" , "rune" ] ,
literal : [ "true" , "false" , "iota" , "nil" ] ,
built _in : [ "append" , "cap" , "close" , "complex" , "copy" , "imag" , "len" , "make" , "new" , "panic" , "print" , "println" , "real" , "recover" , "delete" ]
2022-01-15 21:29:41 -08:00
} ; return { name : "Go" , aliases : [ "golang" ] , keywords : t , illegal : "</" ,
2021-10-19 23:53:22 -07:00
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , { className : "string" ,
variants : [ e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , { begin : "`" , end : "`" } ] } , {
className : "number" , variants : [ { begin : e . C _NUMBER _RE + "[i]" , relevance : 1
} , e . C _NUMBER _MODE ] } , { begin : /:=/ } , { className : "function" , beginKeywords : "func" ,
end : "\\s*(\\{|$)" , excludeEnd : ! 0 , contains : [ e . TITLE _MODE , { className : "params" ,
2022-01-15 21:29:41 -08:00
begin : /\(/ , end : /\)/ , endsParent : ! 0 , keywords : t , illegal : /["']/ } ] } ] } } ,
grmr _golo : e => ( { name : "Golo" , keywords : {
keyword : [ "println" , "readln" , "print" , "import" , "module" , "function" , "local" , "return" , "let" , "var" , "while" , "for" , "foreach" , "times" , "in" , "case" , "when" , "match" , "with" , "break" , "continue" , "augment" , "augmentation" , "each" , "find" , "filter" , "reduce" , "if" , "then" , "else" , "otherwise" , "try" , "catch" , "finally" , "raise" , "throw" , "orIfNull" , "DynamicObject|10" , "DynamicVariable" , "struct" , "Observable" , "map" , "set" , "vector" , "list" , "array" ] ,
literal : [ "true" , "false" , "null" ] } ,
contains : [ e . HASH _COMMENT _MODE , e . QUOTE _STRING _MODE , e . C _NUMBER _MODE , {
className : "meta" , begin : "@[A-Za-z]+" } ] } ) , grmr _gradle : e => ( { name : "Gradle" ,
case _insensitive : ! 0 ,
keywords : [ "task" , "project" , "allprojects" , "subprojects" , "artifacts" , "buildscript" , "configurations" , "dependencies" , "repositories" , "sourceSets" , "description" , "delete" , "from" , "into" , "include" , "exclude" , "source" , "classpath" , "destinationDir" , "includes" , "options" , "sourceCompatibility" , "targetCompatibility" , "group" , "flatDir" , "doLast" , "doFirst" , "flatten" , "todir" , "fromdir" , "ant" , "def" , "abstract" , "break" , "case" , "catch" , "continue" , "default" , "do" , "else" , "extends" , "final" , "finally" , "for" , "if" , "implements" , "instanceof" , "native" , "new" , "private" , "protected" , "public" , "return" , "static" , "switch" , "synchronized" , "throw" , "throws" , "transient" , "try" , "volatile" , "while" , "strictfp" , "package" , "import" , "false" , "null" , "super" , "this" , "true" , "antlrtask" , "checkstyle" , "codenarc" , "copy" , "boolean" , "byte" , "char" , "class" , "double" , "float" , "int" , "interface" , "long" , "short" , "void" , "compile" , "runTime" , "file" , "fileTree" , "abs" , "any" , "append" , "asList" , "asWritable" , "call" , "collect" , "compareTo" , "count" , "div" , "dump" , "each" , "eachByte" , "eachFile" , "eachLine" , "every" , "find" , "findAll" , "flatten" , "getAt" , "getErr" , "getIn" , "getOut" , "getText" , "grep" , "immutable" , "inject" , "inspect" , "intersect" , "invokeMethods" , "isCase" , "join" , "leftShift" , "minus" , "multiply" , "newInputStream" , "newOutputStream" , "newPrintWriter" , "newReader" , "newWriter" , "next" , "plus" , "pop" , "power" , "previous" , "print" , "println" , "push" , "putAt" , "read" , "readBytes" , "readLines" , "reverse" , "reverseEach" , "round" , "size" , "sort" , "splitEachLine" , "step" , "subMap" , "times" , "toInteger" , "toList" , "tokenize" , "upto" , "waitForOrKill" , "withPrintWriter" , "withReader" , "withStream" , "withWriter" , "withWriterAppend" , "write" , "writeLine" ] ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . NUMBER _MODE , e . REGEXP _MODE ]
} ) , grmr _groovy : e => {
const t = e . regex , a = "[A-Za-z0-9_$]+" , n = be ( [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . COMMENT ( "/\\*\\*" , "\\*/" , {
relevance : 0 , contains : [ { begin : /\w+@/ , relevance : 0 } , { className : "doctag" ,
begin : "@[A-Za-z]+" } ] } ) ] ) , i = { className : "regexp" , begin : /~?\/[^\/\n]+\// ,
contains : [ e . BACKSLASH _ESCAPE ]
} , r = be ( [ e . BINARY _NUMBER _MODE , e . C _NUMBER _MODE ] ) , s = be ( [ { begin : /"""/ , end : /"""/ } , {
begin : /'''/ , end : /'''/ } , { begin : "\\$/" , end : "/\\$" , relevance : 10
} , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ] , { className : "string" } ) , o = {
match : [ /(class|interface|trait|enum|extends|implements)/ , /\s+/ , e . UNDERSCORE _IDENT _RE ] ,
scope : { 1 : "keyword" , 3 : "title.class" } } ; return { name : "Groovy" , keywords : {
"variable.language" : "this super" , literal : "true false null" ,
type : [ "byte" , "short" , "char" , "int" , "long" , "boolean" , "float" , "double" , "void" ] ,
keyword : [ "def" , "as" , "in" , "assert" , "trait" , "abstract" , "static" , "volatile" , "transient" , "public" , "private" , "protected" , "synchronized" , "final" , "class" , "interface" , "enum" , "if" , "else" , "for" , "while" , "switch" , "case" , "break" , "default" , "continue" , "throw" , "throws" , "try" , "catch" , "finally" , "implements" , "extends" , "new" , "import" , "package" , "return" , "instanceof" ]
} , contains : [ e . SHEBANG ( { binary : "groovy" , relevance : 10 } ) , n , s , i , r , o , {
className : "meta" , begin : "@[A-Za-z]+" , relevance : 0 } , { className : "attr" ,
begin : a + "[ \t]*:" , relevance : 0 } , { begin : /\?/ , end : /:/ , relevance : 0 ,
contains : [ n , s , i , r , "self" ] } , { className : "symbol" ,
begin : "^[ \t]*" + t . lookahead ( a + ":" ) , excludeBegin : ! 0 , end : a + ":" , relevance : 0 } ] ,
illegal : /#|<\// } } , grmr _haml : e => ( { name : "HAML" , case _insensitive : ! 0 , contains : [ {
className : "meta" ,
begin : "^!!!( (5|1\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\b.*))?$" ,
relevance : 10 } , e . COMMENT ( "^\\s*(!=#|=#|-#|/).*$" , null , { relevance : 0 } ) , {
begin : "^\\s*(-|=|!=)(?!#)" , end : /$/ , subLanguage : "ruby" , excludeBegin : ! 0 ,
excludeEnd : ! 0 } , { className : "tag" , begin : "^\\s*%" , contains : [ {
className : "selector-tag" , begin : "\\w+" } , { className : "selector-id" , begin : "#[\\w-]+"
} , { className : "selector-class" , begin : "\\.[\\w-]+" } , { begin : /\{\s*/ , end : /\s*\}/ ,
contains : [ { begin : ":\\w+\\s*=>" , end : ",\\s+" , returnBegin : ! 0 , endsWithParent : ! 0 ,
contains : [ { className : "attr" , begin : ":\\w+"
} , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , { begin : "\\w+" , relevance : 0 } ] } ] } , {
begin : "\\(\\s*" , end : "\\s*\\)" , excludeEnd : ! 0 , contains : [ { begin : "\\w+\\s*=" ,
end : "\\s+" , returnBegin : ! 0 , endsWithParent : ! 0 , contains : [ { className : "attr" ,
begin : "\\w+" , relevance : 0 } , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , { begin : "\\w+" ,
relevance : 0 } ] } ] } ] } , { begin : "^\\s*[=~]\\s*" } , { begin : /#\{/ , end : /\}/ ,
subLanguage : "ruby" , excludeBegin : ! 0 , excludeEnd : ! 0 } ] } ) , grmr _handlebars : e => {
const t = e . regex , a = { $pattern : /[\w.\/]+/ ,
built _in : [ "action" , "bindattr" , "collection" , "component" , "concat" , "debugger" , "each" , "each-in" , "get" , "hash" , "if" , "in" , "input" , "link-to" , "loc" , "log" , "lookup" , "mut" , "outlet" , "partial" , "query-params" , "render" , "template" , "textarea" , "unbound" , "unless" , "view" , "with" , "yield" ]
} , n = /\[\]|\[[^\]]+\]/ , i = /[^\s!"#%&'()*+,.\/;<=>@\[\\\]^`{|}~]+/ , r = t . either ( /""|"[^"]+"/ , /''|'[^']+'/ , n , i ) , s = t . concat ( t . optional ( /\.|\.\/|\// ) , r , t . anyNumberOfTimes ( t . concat ( /(\.|\/)/ , r ) ) ) , o = t . concat ( "(" , n , "|" , i , ")(?==)" ) , l = {
begin : s } , _ = e . inherit ( l , { keywords : { $pattern : /[\w.\/]+/ ,
literal : [ "true" , "false" , "undefined" , "null" ] } } ) , c = { begin : /\(/ , end : /\)/ } , d = {
className : "attr" , begin : o , relevance : 0 , starts : { begin : /=/ , end : /=/ , starts : {
contains : [ e . NUMBER _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , _ , c ] } } } , m = {
contains : [ e . NUMBER _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , { begin : /as\s+\|/ ,
keywords : { keyword : "as" } , end : /\|/ , contains : [ { begin : /\w+/ } ] } , d , _ , c ] , returnEnd : ! 0
} , p = e . inherit ( l , { className : "name" , keywords : a , starts : e . inherit ( m , { end : /\)/ } ) } )
; c . contains = [ p ] ; const u = e . inherit ( l , { keywords : a , className : "name" ,
starts : e . inherit ( m , { end : /\}\}/ } ) } ) , E = e . inherit ( l , { keywords : a , className : "name"
} ) , S = e . inherit ( l , { className : "name" , keywords : a , starts : e . inherit ( m , { end : /\}\}/ } ) } )
; return { name : "Handlebars" ,
aliases : [ "hbs" , "html.hbs" , "html.handlebars" , "htmlbars" ] , case _insensitive : ! 0 ,
subLanguage : "xml" , contains : [ { begin : /\\\{\{/ , skip : ! 0 } , { begin : /\\\\(?=\{\{)/ ,
skip : ! 0 } , e . COMMENT ( /\{\{!--/ , /--\}\}/ ) , e . COMMENT ( /\{\{!/ , /\}\}/ ) , {
className : "template-tag" , begin : /\{\{\{\{(?!\/)/ , end : /\}\}\}\}/ , contains : [ u ] ,
starts : { end : /\{\{\{\{\// , returnEnd : ! 0 , subLanguage : "xml" } } , {
className : "template-tag" , begin : /\{\{\{\{\// , end : /\}\}\}\}/ , contains : [ E ] } , {
className : "template-tag" , begin : /\{\{#/ , end : /\}\}/ , contains : [ u ] } , {
className : "template-tag" , begin : /\{\{(?=else\}\})/ , end : /\}\}/ , keywords : "else" } , {
className : "template-tag" , begin : /\{\{(?=else if)/ , end : /\}\}/ , keywords : "else if"
} , { className : "template-tag" , begin : /\{\{\// , end : /\}\}/ , contains : [ E ] } , {
className : "template-variable" , begin : /\{\{\{/ , end : /\}\}\}/ , contains : [ S ] } , {
className : "template-variable" , begin : /\{\{/ , end : /\}\}/ , contains : [ S ] } ] } } ,
grmr _haskell : e => { const t = { variants : [ e . COMMENT ( "--" , "$" ) , e . COMMENT ( /\{-/ , /-\}/ , {
contains : [ "self" ] } ) ] } , a = { className : "meta" , begin : /\{-#/ , end : /#-\}/ } , n = {
className : "meta" , begin : "^#" , end : "$" } , i = { className : "type" ,
begin : "\\b[A-Z][\\w']*" , relevance : 0 } , r = { begin : "\\(" , end : "\\)" , illegal : '"' ,
contains : [ a , n , { className : "type" , begin : "\\b[A-Z][\\w]*(\\((\\.\\.|,|\\w+)\\))?"
} , e . inherit ( e . TITLE _MODE , { begin : "[_a-z][\\w']*" } ) , t ] } , s = "([0-9a-fA-F]_*)+" , o = {
className : "number" , relevance : 0 , variants : [ {
match : "\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b" } , {
match : ` \\ b0[xX]_*( ${ s } )( \\ .( ${ s } ))?([pP][+-]?(([0-9]_*)+))? \\ b ` } , {
match : "\\b0[oO](([0-7]_*)+)\\b" } , { match : "\\b0[bB](([01]_*)+)\\b" } ] } ; return {
name : "Haskell" , aliases : [ "hs" ] ,
keywords : "let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec" ,
contains : [ { beginKeywords : "module" , end : "where" , keywords : "module where" ,
contains : [ r , t ] , illegal : "\\W\\.|;" } , { begin : "\\bimport\\b" , end : "$" ,
keywords : "import qualified as hiding" , contains : [ r , t ] , illegal : "\\W\\.|;" } , {
className : "class" , begin : "^(\\s*)?(class|instance)\\b" , end : "where" ,
keywords : "class family instance where" , contains : [ i , r , t ] } , { className : "class" ,
begin : "\\b(data|(new)?type)\\b" , end : "$" ,
keywords : "data family type newtype deriving" , contains : [ a , i , r , { begin : /\{/ ,
end : /\}/ , contains : r . contains } , t ] } , { beginKeywords : "default" , end : "$" ,
contains : [ i , r , t ] } , { beginKeywords : "infix infixl infixr" , end : "$" ,
contains : [ e . C _NUMBER _MODE , t ] } , { begin : "\\bforeign\\b" , end : "$" ,
keywords : "foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe" ,
contains : [ i , e . QUOTE _STRING _MODE , t ] } , { className : "meta" ,
begin : "#!\\/usr\\/bin\\/env runhaskell" , end : "$"
} , a , n , e . QUOTE _STRING _MODE , o , i , e . inherit ( e . TITLE _MODE , { begin : "^[_a-z][\\w']*"
} ) , t , { begin : "->|<-" } ] } } , grmr _haxe : e => ( { name : "Haxe" , aliases : [ "hx" ] , keywords : {
keyword : "break case cast catch continue default do dynamic else enum extern for function here if import in inline never new override package private get set public return static super switch this throw trace try typedef untyped using var while Int Float String Bool Dynamic Void Array " ,
built _in : "trace this" , literal : "true false null _" } , contains : [ {
className : "string" , begin : "'" , end : "'" , contains : [ e . BACKSLASH _ESCAPE , {
className : "subst" , begin : "\\$\\{" , end : "\\}" } , { className : "subst" , begin : "\\$" ,
end : /\W\}/ } ]
} , e . QUOTE _STRING _MODE , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . C _NUMBER _MODE , {
className : "meta" , begin : "@:" , end : "$" } , { className : "meta" , begin : "#" , end : "$" ,
keywords : { keyword : "if else elseif end error" } } , { className : "type" ,
begin : ":[ \t]*" , end : "[^A-Za-z0-9_ \t\\->]" , excludeBegin : ! 0 , excludeEnd : ! 0 ,
relevance : 0 } , { className : "type" , begin : ":[ \t]*" , end : "\\W" , excludeBegin : ! 0 ,
excludeEnd : ! 0 } , { className : "type" , begin : "new *" , end : "\\W" , excludeBegin : ! 0 ,
excludeEnd : ! 0 } , { className : "class" , beginKeywords : "enum" , end : "\\{" ,
contains : [ e . TITLE _MODE ] } , { className : "class" , beginKeywords : "abstract" ,
end : "[\\{$]" , contains : [ { className : "type" , begin : "\\(" , end : "\\)" , excludeBegin : ! 0 ,
excludeEnd : ! 0 } , { className : "type" , begin : "from +" , end : "\\W" , excludeBegin : ! 0 ,
excludeEnd : ! 0 } , { className : "type" , begin : "to +" , end : "\\W" , excludeBegin : ! 0 ,
excludeEnd : ! 0 } , e . TITLE _MODE ] , keywords : { keyword : "abstract from to" } } , {
className : "class" , begin : "\\b(class|interface) +" , end : "[\\{$]" , excludeEnd : ! 0 ,
keywords : "class interface" , contains : [ { className : "keyword" ,
begin : "\\b(extends|implements) +" , keywords : "extends implements" , contains : [ {
className : "type" , begin : e . IDENT _RE , relevance : 0 } ] } , e . TITLE _MODE ] } , {
className : "function" , beginKeywords : "function" , end : "\\(" , excludeEnd : ! 0 ,
illegal : "\\S" , contains : [ e . TITLE _MODE ] } ] , illegal : /<\// } ) , grmr _hsp : e => ( {
name : "HSP" , case _insensitive : ! 0 , keywords : { $pattern : /[\w._]+/ ,
keyword : "goto gosub return break repeat loop continue wait await dim sdim foreach dimtype dup dupptr end stop newmod delmod mref run exgoto on mcall assert logmes newlab resume yield onexit onerror onkey onclick oncmd exist delete mkdir chdir dirlist bload bsave bcopy memfile if else poke wpoke lpoke getstr chdpm memexpand memcpy memset notesel noteadd notedel noteload notesave randomize noteunsel noteget split strrep setease button chgdisp exec dialog mmload mmplay mmstop mci pset pget syscolor mes print title pos circle cls font sysfont objsize picload color palcolor palette redraw width gsel gcopy gzoom gmode bmpsave hsvcolor getkey listbox chkbox combox input mesbox buffer screen bgscr mouse objsel groll line clrobj boxf objprm objmode stick grect grotate gsquare gradf objimage objskip objenable celload celdiv celput newcom querycom delcom cnvstow comres axobj winobj sendmsg comevent comevarg sarrayconv callfunc cnvwtos comevdisp libptr system hspstat hspver stat cnt err strsize looplev sublev iparam wparam lparam refstr refdval int rnd strlen length length2 length3 length4 vartype gettime peek wpeek lpeek varptr varuse noteinfo instr abs limit getease str strmid strf getpath strtrim sin cos tan atan sqrt double absf expf logf limitf powf geteasef mousex mousey mousew hwnd hinstance hdc ginfo objinfo dirinfo sysinfo thismod __hspver__ __hsp30__ __date__ __time__ __line__ __file__ _debug __hspdef__ and or xor not screen_normal screen_palette screen_hide screen_fixedsize screen_tool screen_frame gmode_gdi gmode_mem gmode_rgb0 gmode_alpha gmode_rgb0alpha gmode_add gmode_sub gmode_pixela ginfo_mx ginfo_my ginfo_act ginfo_sel ginfo_wx1 ginfo_wy1 ginfo_wx2 ginfo_wy2 ginfo_vx ginfo_vy ginfo_sizex ginfo_sizey ginfo_winx ginfo_winy ginfo_mesx ginfo_mesy ginfo_r ginfo_g ginfo_b ginfo_paluse ginfo_dispx ginfo_dispy ginfo_cx ginfo_cy ginfo_intid ginfo_newid ginfo_sx ginfo_sy objinfo_mode objinfo_bmscr objinfo_hwnd notemax notesize dir_cur dir_exe dir_win dir_sys dir_cmdline dir_desktop dir_mydoc dir_tv font_normal font_bold font_italic font_underline font_strikeout font_antialias objmode_normal objmode_guifont objmode_usefont gsquare_grad msgothic msmincho do until while wend for next _break _continue switch case default swbreak swend ddim ldim alloc m_pi rad2deg deg2rad ease_linear ease_quad_in ease_quad_out ease_quad_inout ease_cubic_in ease_cubic_out ease_cubic_inout ease_quartic_in ease_quartic_out ease_quartic_inout ease_bounce_in ease_bounce_out ease_bounce_inout ease_shake_in ease_shake_out ease_shake_inout ease_loop"
} ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , {
className : "string" , begin : /\{"/ , end : /"\}/ , contains : [ e . BACKSLASH _ESCAPE ]
} , e . COMMENT ( ";" , "$" , { relevance : 0 } ) , { className : "meta" , begin : "#" , end : "$" ,
keywords : {
keyword : "addion cfunc cmd cmpopt comfunc const defcfunc deffunc define else endif enum epack func global if ifdef ifndef include modcfunc modfunc modinit modterm module pack packopt regcmd runtime undef usecom uselib"
} , contains : [ e . inherit ( e . QUOTE _STRING _MODE , { className : "string"
} ) , e . NUMBER _MODE , e . C _NUMBER _MODE , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ]
} , { className : "symbol" , begin : "^\\*(\\w+|@)" } , e . NUMBER _MODE , e . C _NUMBER _MODE ] } ) ,
grmr _http : e => { const t = "HTTP/(2|1\\.[01])" , a = { className : "attribute" ,
begin : e . regex . concat ( "^" , /[A-Za-z][A-Za-z0-9-]*/ , "(?=\\:\\s)" ) , starts : {
contains : [ { className : "punctuation" , begin : /: / , relevance : 0 , starts : { end : "$" ,
relevance : 0 } } ] } } , n = [ a , { begin : "\\n\\n" , starts : { subLanguage : [ ] , endsWithParent : ! 0 }
} ] ; return { name : "HTTP" , aliases : [ "https" ] , illegal : /\S/ , contains : [ {
begin : "^(?=" + t + " \\d{3})" , end : /$/ , contains : [ { className : "meta" , begin : t } , {
className : "number" , begin : "\\b\\d{3}\\b" } ] , starts : { end : /\b\B/ , illegal : /\S/ ,
contains : n } } , { begin : "(?=^[A-Z]+ (.*?) " + t + "$)" , end : /$/ , contains : [ {
className : "string" , begin : " " , end : " " , excludeBegin : ! 0 , excludeEnd : ! 0 } , {
className : "meta" , begin : t } , { className : "keyword" , begin : "[A-Z]+" } ] , starts : {
end : /\b\B/ , illegal : /\S/ , contains : n } } , e . inherit ( a , { relevance : 0 } ) ] } } , grmr _hy : e => {
const t = "a-zA-Z_\\-!.?+*=<>&#'" , a = "[" + t + "][" + t + "0-9/;:]*" , n = { $pattern : a ,
built _in : "!= % %= & &= * ** **= *= *map + += , --build-class-- --import-- -= . / // //= /= < << <<= <= = > >= >> >>= @ @= ^ ^= abs accumulate all and any ap-compose ap-dotimes ap-each ap-each-while ap-filter ap-first ap-if ap-last ap-map ap-map-when ap-pipe ap-reduce ap-reject apply as-> ascii assert assoc bin break butlast callable calling-module-name car case cdr chain chr coll? combinations compile compress cond cons cons? continue count curry cut cycle dec def default-method defclass defmacro defmacro-alias defmacro/g! defmain defmethod defmulti defn defn-alias defnc defnr defreader defseq del delattr delete-route dict-comp dir disassemble dispatch-reader-macro distinct divmod do doto drop drop-last drop-while empty? end-sequence eval eval-and-compile eval-when-compile even? every? except exec filter first flatten float? fn fnc fnr for for* format fraction genexpr gensym get getattr global globals group-by hasattr hash hex id identity if if* if-not if-python2 import in inc input instance? integer integer-char? integer? interleave interpose is is-coll is-cons is-empty is-even is-every is-float is-instance is-integer is-integer-char is-iterable is-iterator is-keyword is-neg is-none is-not is-numeric is-odd is-pos is-string is-symbol is-zero isinstance islice issubclass iter iterable? iterate iterator? keyword keyword? lambda last len let lif lif-not list* list-comp locals loop macro-error macroexpand macroexpand-1 macroexpand-all map max merge-with method-decorator min multi-decorator multicombinations name neg? next none? nonlocal not not-in not? nth numeric? oct odd? open or ord partition permutations pos? post-route postwalk pow prewalk print product profile/calls profile/cpu put-route quasiquote quote raise range read read-str recursive-replace reduce remove repeat repeatedly repr require rest round route route-with-methods rwm second seq set-comp setattr setv some sorted string string? sum switch symbol? take take-nth take-while tee try unless unquote unquote-splicing vars walk when while with with* with-decorator with-gensyms xi xor yield yield-from zero? zip zip-longest | |= ~"
} , i = { begin : a , relevance : 0 } , r = { className : "number" , begin : "[-+]?\\d+(\\.\\d+)?" ,
relevance : 0 } , s = e . inherit ( e . QUOTE _STRING _MODE , { illegal : null
} ) , o = e . COMMENT ( ";" , "$" , { relevance : 0 } ) , l = { className : "literal" ,
begin : /\b([Tt]rue|[Ff]alse|nil|None)\b/ } , _ = { begin : "[\\[\\{]" , end : "[\\]\\}]" ,
relevance : 0 } , c = { className : "comment" , begin : "\\^" + a
} , d = e . COMMENT ( "\\^\\{" , "\\}" ) , m = { className : "symbol" , begin : "[:]{1,2}" + a } , p = {
begin : "\\(" , end : "\\)" } , u = { endsWithParent : ! 0 , relevance : 0 } , E = { className : "name" ,
relevance : 0 , keywords : n , begin : a , starts : u } , S = [ p , s , c , d , o , m , _ , r , l , i ]
; return p . contains = [ e . COMMENT ( "comment" , "" ) , E , u ] , u . contains = S , _ . contains = S , {
name : "Hy" , aliases : [ "hylang" ] , illegal : /\S/ ,
contains : [ e . SHEBANG ( ) , p , s , c , d , o , m , _ , r , l ] } } , grmr _inform7 : e => ( { name : "Inform 7" ,
aliases : [ "i7" ] , case _insensitive : ! 0 , keywords : {
keyword : "thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule"
} , contains : [ { className : "string" , begin : '"' , end : '"' , relevance : 0 , contains : [ {
className : "subst" , begin : "\\[" , end : "\\]" } ] } , { className : "section" ,
begin : /^(Volume|Book|Part|Chapter|Section|Table)\b/ , end : "$" } , {
begin : /^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\b/ ,
end : ":" , contains : [ { begin : "\\(This" , end : "\\)" } ] } , { className : "comment" ,
begin : "\\[" , end : "\\]" , contains : [ "self" ] } ] } ) , grmr _ini : e => { const t = e . regex , a = {
className : "number" , relevance : 0 , variants : [ { begin : /([+-]+)?[\d]+_[\d_]+/ } , {
begin : e . NUMBER _RE } ] } , n = e . COMMENT ( ) ; n . variants = [ { begin : /;/ , end : /$/ } , { begin : /#/ ,
end : /$/ } ] ; const i = { className : "variable" , variants : [ { begin : /\$[\w\d"][\w\d_]*/ } , {
begin : /\$\{(.*?)\}/ } ] } , r = { className : "literal" ,
begin : /\bon|off|true|false|yes|no\b/ } , s = { className : "string" ,
2021-10-19 23:53:22 -07:00
contains : [ e . BACKSLASH _ESCAPE ] , variants : [ { begin : "'''" , end : "'''" , relevance : 10 } , {
begin : '"""' , end : '"""' , relevance : 10 } , { begin : '"' , end : '"' } , { begin : "'" , end : "'" } ]
2022-01-15 21:29:41 -08:00
} , o = { begin : /\[/ , end : /\]/ , contains : [ n , r , i , s , a , "self" ] , relevance : 0
} , l = t . either ( /[A-Za-z0-9_-]+/ , /"(\\"|[^"])*"/ , /'[^']*'/ ) ; return {
2021-10-19 23:53:22 -07:00
name : "TOML, also INI" , aliases : [ "toml" ] , case _insensitive : ! 0 , illegal : /\S/ ,
2022-01-15 21:29:41 -08:00
contains : [ n , { className : "section" , begin : /\[+/ , end : /\]+/ } , {
begin : t . concat ( l , "(\\s*\\.\\s*" , l , ")*" , t . lookahead ( /\s*=\s*[^#\s]/ ) ) ,
className : "attr" , starts : { end : /$/ , contains : [ n , o , r , i , s , a ] } } ] } } , grmr _irpf90 : e => {
const t = e . regex , a = /(_[a-z_\d]+)?/ , n = /([de][+-]?\d+)?/ , i = { className : "number" ,
variants : [ { begin : t . concat ( /\b\d+/ , /\.(\d*)/ , n , a ) } , { begin : t . concat ( /\b\d+/ , n , a )
} , { begin : t . concat ( /\.\d+/ , n , a ) } ] , relevance : 0 } ; return { name : "IRPF90" ,
case _insensitive : ! 0 , keywords : { literal : ".False. .True." ,
keyword : "kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read" ,
built _in : "alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_of acosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here"
} , illegal : /\/\*/ , contains : [ e . inherit ( e . APOS _STRING _MODE , { className : "string" ,
relevance : 0 } ) , e . inherit ( e . QUOTE _STRING _MODE , { className : "string" , relevance : 0 } ) , {
className : "function" , beginKeywords : "subroutine function program" ,
illegal : "[${=\\n]" , contains : [ e . UNDERSCORE _TITLE _MODE , { className : "params" ,
begin : "\\(" , end : "\\)" } ] } , e . COMMENT ( "!" , "$" , { relevance : 0
} ) , e . COMMENT ( "begin_doc" , "end_doc" , { relevance : 10 } ) , i ] } } , grmr _isbl : e => {
const t = "[A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_!][A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_0-9]*" , a = {
className : "number" , begin : e . NUMBER _RE , relevance : 0 } , n = { className : "string" ,
variants : [ { begin : '"' , end : '"' } , { begin : "'" , end : "'" } ] } , i = { className : "doctag" ,
begin : "\\b(?:TODO|DONE|BEGIN|END|STUB|CHG|FIXME|NOTE|BUG|XXX)\\b" , relevance : 0
} , r = { variants : [ { className : "comment" , begin : "//" , end : "$" , relevance : 0 ,
contains : [ e . PHRASAL _WORDS _MODE , i ] } , { className : "comment" , begin : "/\\*" , end : "\\*/" ,
relevance : 0 , contains : [ e . PHRASAL _WORDS _MODE , i ] } ] } , s = { $pattern : t ,
keyword : "and \u0438 else \u0438\u043d\u0430\u0447\u0435 endexcept endfinally endforeach \u043a\u043e\u043d\u0435\u0446\u0432\u0441\u0435 endif \u043a\u043e\u043d\u0435\u0446\u0435\u0441\u043b\u0438 endwhile \u043a\u043e\u043d\u0435\u0446\u043f\u043e\u043a\u0430 except exitfor finally foreach \u0432\u0441\u0435 if \u0435\u0441\u043b\u0438 in \u0432 not \u043d\u0435 or \u0438\u043b\u0438 try while \u043f\u043e\u043a\u0430 " ,
built _in : " SYSRES _CONST _ACCES _RIGHT _TYPE _EDIT SYSRES _CONST _ACCES _RIGHT _TYPE _FULL SYSRES _CONST _ACCES _RIGHT _TYPE _VIEW SYSRES _CONST _ACCESS _MODE _REQUISITE _CODE SYSRES _CONST _ACCESS _NO _ACCESS _VIEW SYSRES _CONST _ACCESS _NO _ACCESS _VIEW _CODE SYSRES _CONST _ACCESS _RIGHTS _ADD _REQUISITE _CODE SYSRES _CONST _ACCESS _RIGHTS _ADD _REQUISITE _YES _CODE SYSRES _CONST _ACCESS _RIGHTS _CHANGE _REQUISITE _CODE SYSRES _CONST _ACCESS _RIGHTS _CHANGE _REQUISITE _YES _CODE SYSRES _CONST _ACCESS _RIGHTS _DELETE _REQUISITE _CODE SYSRES _CONST _ACCESS _RIGHTS _DELETE _REQUISITE _YES _CODE SYSRES _CONST _ACCESS _RIGHTS _EXECUTE _REQUISITE _CODE SYSRES _CONST _ACCESS _RIGHTS _EXECUTE _REQUISITE _YES _CODE SYSRES _CONST _ACCESS _RIGHTS _NO _ACCESS _REQUISITE _CODE SYSRES _CONST _ACCESS _RIGHTS _NO _ACCESS _REQUISITE _YES _CODE SYSRES _CONST _ACCESS _RIGHTS _RATIFY _REQUISITE _CODE SYSRES _CONST _ACCESS _RIGHTS _RATIFY _REQUISITE _YES _CODE SYSRES _CONST _ACCESS _RIGHTS _REQUISITE _CODE SYSRES _CONST _ACCESS _RIGHTS _VIEW SYSRES _CONST _ACCESS _RIGHTS _VIEW _CODE SYSRES _CONST _ACCESS _RIGHTS _VIEW _REQUISITE _CODE SYSRES _CONST _ACCESS _RIGHTS _VIEW _REQUISITE _YES _CODE SYSRES _CONST _ACCESS _TYPE _CHANGE SYSRES _CONST _ACCESS _TYPE _CHANGE _CODE SYSRES _CONST _ACCESS _TYPE _EXISTS SYSRES _CONST _ACCESS _TYPE _EXISTS _CODE SYSRES _CONST _ACCESS _TYPE _FULL SYSRES _CONST _ACCESS _TYPE _FULL _CODE SYSRES _CONST _ACCESS _TYPE _VIEW SYSRES _CONST _ACCESS _TYPE _VIEW _CODE SYSRES _CONST _ACTION _TYPE _ABORT SYSRES _CONST _ACTION _TYPE _ACCEPT SYSRES _CONST _ACTION _TYPE _ACCESS _RIGHTS SYSRES _CONST _ACTION _TYPE _ADD _ATTACHMENT SYSRES _CONST _ACTION _TYPE _CHANGE _CARD SYSRES _CONST _ACTION _TYPE _CHANGE _KIND SYSRES _CONST _ACTION _TYPE _CHANGE _STORAGE SYSRES _CONST _ACTION _TYPE _CONTINUE SYSRES _CONST _ACTION _TYPE _COPY SYSRES _CONST _ACTION _TYPE _CREATE SYSRES _CONST _ACTION _TYPE _CREATE _VERSION SYSRES _CONST _ACTION _TYPE _DELETE SYSRES _CONST _ACTION _TYPE _DELETE _ATTACHMENT SYSRES _CONST _ACTION _TYPE _DELETE _VERSION SYSRES _CONST _ACTION _TYPE _DISABLE _DELEGATE _ACCESS _RIGHTS SYSRES _CONST _ACTION _TYPE _ENABLE _DELEGATE _ACCESS _RIGHTS SYSRES _CONST _ACTION _TYPE _ENCRYPTION _BY _CERTIFICATE SYSRES _CONST _ACTION _TYPE _ENCRYPTION _BY _CERTIFICATE _AND _PASSWORD SYSRES _CONST _ACTION _TYPE _ENCRYPTION _BY _PASSWORD SYSRES _CONST _ACTION _TYPE _EXPORT _WITH _LOCK SYSRES _CONST _ACTION _TYPE _EXPORT _WITHOUT _LOCK SYSRES _CONST _ACTION _TYPE _IMPORT _WITH _UNLOCK SYSRES _CONST _ACTION _TYPE _IMPORT _WITHOUT _UNLOCK SYSRES _CONST _ACTION _TYPE _LIFE _CYCLE _STAGE SYSRES _CONST _ACTION _TYPE _LOCK SYSRES _CONST _ACTION _TYPE _LOCK _FOR _SERVER SYSRES _CONST _ACTION _TYPE _LOCK _MODIFY SYSRES _CONST _ACTION _TYPE _MARK _AS _READED SYSRES _CONST _ACTION _TYPE _MARK _AS _UNREADED SYSRES _CONST _ACTION _TYPE _MODIFY SYSRES _CONST _ACTION _TYPE _MODIFY _CARD SYSRES _CONST _ACTION _TYPE _MOVE _TO _ARCHIVE SYSRES _CONST _ACTION _TYPE _OFF _ENCRYPTION SYSRES _CONST _ACTION _TYPE _PASSWORD _CHANGE SYSRES _CONST _ACTION _TYPE _PERFORM SYSRES _CONST _ACTION _TYPE _RECOVER _FROM _LOCAL _COPY SYSRES _CONST _ACTION _TYPE _RESTART SYSRES _CONST _ACTION _TYPE _RESTORE _FROM _ARCHIVE SYSRES _CONST _ACTION _TYPE _REVISION SYSRES _CONST _ACTION _TYPE _SEND _BY _MAIL SYSRES _CONST _ACTION _TYPE _SIGN SYSRES _CONST _ACTION _TYPE _START SYSRES _CONST _ACTION _TYPE _UNLOCK SYSRES _CONST _ACTION _TYPE _UNLOCK _FROM _SERVER SYSRES _CONST _ACTION _TYPE _VERSION _STATE SYSRES _CONST _ACTION _TYPE _VERSION _VISIBILITY SYSRES _CONST _ACTION _TYPE _VIEW SYSRES _CONST _ACTION _TYPE _VIEW _SHADOW _COPY SYSRES _CONST _ACTION _TYPE _WORKFLOW _DESCRIPTION _MODIFY SYSRES _CONST _ACTION _TYPE _WRITE _HISTORY SYSRES _CONST _ACTIVE _VERSION _STATE _PICK _VALUE SYSRES _CONST _ADD _REFERENCE _MODE _NAME SYSRES _CONST _ADDITION _REQUISITE _CODE SYSRES _CONST _ADDITIONAL _PARAMS _REQUISITE _CODE SYSRES _CONST _ADITIONAL _JOB _END _DATE _REQUISITE _NAME SYSRES _CONST _ADITIONAL _JOB _READ _REQUISITE _NAME SYSRES _CONST _ADITIONAL _JOB _START _DATE _REQUISITE _NAME SYSRES _CONST _ADITIONAL _JOB _STATE _REQUISITE _NAME SYSRES _CONST _ADMINISTRATION _HISTORY _ADDING _USER _TO _GROUP _ACTION SYSRES _CONST _ADMINISTRATION _HISTORY _ADDING _USER _TO _GROUP _ACTION _CODE SYSRES _CONST _ADMINISTRATION _HISTORY _CREATION _COMP _ACTION SYSRES _CONST _ADMINISTRATION _HISTORY _CREATION _COMP _ACTION _CODE SYSRES _CONST _ADMINISTRATION _HISTORY _CREATION _GROUP _ACTION SYSRES _CONST _ADMINISTRATION _HISTORY _CREATION _GROUP _ACTION _CODE SYSRES _CONST _ADMINISTRATION _HISTORY _CR
class : "AltState Application CallType ComponentTokens CreatedJobs CreatedNotices ControlState DialogResult Dialogs EDocuments EDocumentVersionSource Folders GlobalIDs Job Jobs InputValue LookUpReference LookUpRequisiteNames LookUpSearch Object ParentComponent Processes References Requisite ReportName Reports Result Scripts Searches SelectedAttachments SelectedItems SelectMode Sender ServerEvents ServiceFactory ShiftState SubTask SystemDialogs Tasks Wizard Wizards Work \u0412\u044b\u0437\u043e\u0432\u0421\u043f\u043e\u0441\u043e\u0431 \u0418\u043c\u044f\u041e\u0442\u0447\u0435\u0442\u0430 \u0420\u0435\u043a\u0432\u0417\u043d\u0430\u0447 " ,
literal : "null true false nil " } , o = { begin : "\\.\\s*" + e . UNDERSCORE _IDENT _RE ,
keywords : s , relevance : 0 } , l = { className : "type" ,
begin : ":[ \\t]*(IApplication|IAccessRights|IAccountRepository|IAccountSelectionRestrictions|IAction|IActionList|IAdministrationHistoryDescription|IAnchors|IApplication|IArchiveInfo|IAttachment|IAttachmentList|ICheckListBox|ICheckPointedList|IColumn|IComponent|IComponentDescription|IComponentToken|IComponentTokenFactory|IComponentTokenInfo|ICompRecordInfo|IConnection|IContents|IControl|IControlJob|IControlJobInfo|IControlList|ICrypto|ICrypto2|ICustomJob|ICustomJobInfo|ICustomListBox|ICustomObjectWizardStep|ICustomWork|ICustomWorkInfo|IDataSet|IDataSetAccessInfo|IDataSigner|IDateCriterion|IDateRequisite|IDateRequisiteDescription|IDateValue|IDeaAccessRights|IDeaObjectInfo|IDevelopmentComponentLock|IDialog|IDialogFactory|IDialogPickRequisiteItems|IDialogsFactory|IDICSFactory|IDocRequisite|IDocumentInfo|IDualListDialog|IECertificate|IECertificateInfo|IECertificates|IEditControl|IEditorForm|IEdmsExplorer|IEdmsObject|IEdmsObjectDescription|IEdmsObjectFactory|IEdmsObjectInfo|IEDocument|IEDocumentAccessRights|IEDocumentDescription|IEDocumentEditor|IEDocumentFactory|IEDocumentInfo|IEDocumentStorage|IEDocumentVersion|IEDocumentVersionListDialog|IEDocumentVersionSource|IEDocumentWizardStep|IEDocVerSignature|IEDocVersionState|IEnabledMode|IEncodeProvider|IEncrypter|IEvent|IEventList|IException|IExternalEvents|IExternalHandler|IFactory|IField|IFileDialog|IFolder|IFolderDescription|IFolderDialog|IFolderFactory|IFolderInfo|IForEach|IForm|IFormTitle|IFormWizardStep|IGlobalIDFactory|IGlobalIDInfo|IGrid|IHasher|IHistoryDescription|IHyperLinkControl|IImageButton|IImageControl|IInnerPanel|IInplaceHint|IIntegerCriterion|IIntegerList|IIntegerRequisite|IIntegerValue|IISBLEditorForm|IJob|IJobDescription|IJobFactory|IJobForm|IJobInfo|ILabelControl|ILargeIntegerCriterion|ILargeIntegerRequisite|ILargeIntegerValue|ILicenseInfo|ILifeCycleStage|IList|IListBox|ILocalIDInfo|ILocalization|ILock|IMemoryDataSet|IMessagingFactory|IMetadataRepository|INotice|INoticeInfo|INumericCriterion|INumericRequisite|INumericValue|IObject|IObjectDescription|IObjectImporter|IObjectInfo|IObserver|IPanelGroup|IPickCriterion|IPickProperty|IPickRequisite|IPickRequisiteDescription|IPickRequisiteItem|IPickRequisiteItems|IPickValue|IPrivilege|IPrivilegeList|IProcess|IProcessFactory|IProcessMessage|IProgress|IProperty|IPropertyChangeEvent|IQuery|IReference|IReferenceCriterion|IReferenceEnabledMode|IReferenceFactory|IReferenceHistoryDescription|IReferenceInfo|IReferenceRecordCardWizardStep|IReferenceRequisiteDescription|IReferencesFactory|IReferenceValue|IRefRequisite|IReport|IReportFactory|IRequisite|IRequisiteDescription|IRequisiteDescriptionList|IRequisiteFactory|IRichEdit|IRouteStep|IRule|IRuleList|ISchemeBlock|IScript|IScriptFactory|ISearchCriteria|ISearchCriterion|ISearchDescription|ISearchFactory|ISearchFolderInfo|ISearchForObjectDescription|ISearchResultRestrictions|ISecuredContext|ISelectDialog|IServerEvent|IServerEventFactory|IServiceDialog|IServiceFactory|ISignature|ISignProvider|ISignProvider2|ISignProvider3|ISimpleCriterion|IStringCriterion|IStringList|IStringRequisite|IStringRequisiteDescription|IStringValue|ISystemDialogsFactory|ISystemInfo|ITabSheet|ITask|ITaskAbortReasonInfo|ITaskCardWizardStep|ITaskDescription|ITaskFactory|ITaskInfo|ITaskRoute|ITextCriterion|ITextRequisite|ITextValue|ITreeListSelectDialog|IUser|IUserList|IValue|IView|IWebBrowserControl|IWizard|IWizardAction|IWizardFactory|IWizardFormElement|IWizardParam|IWizardPickParam|IWizardReferenceParam|IWizardStep|IWorkAccessRights|IWorkDescription|IWorkflowAskableParam|IWorkflowAskableParams|IWorkflowBlock|IWorkflowBlockResult|IWorkflowEnabledMode|IWorkflowParam|IWorkflowPickParam|IWorkflowReferenceParam|IWorkState|IWorkTreeCustomNode|IWorkTreeJobNode|IWorkTreeTaskNode|IXMLEditorForm|SBCrypto)" ,
end : "[ \\t]*=" , excludeEnd : ! 0 } , _ = { className : "variable" , keywords : s , begin : t ,
relevance : 0 , contains : [ l , o ]
} , c = "[A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_][A-Za-z\u0410-\u042f\u0430-\u044f\u0451\u0401_0-9]*\\("
; return { name : "ISBL" , case _insensitive : ! 0 , keywords : s ,
illegal : "\\$|\\?|%|,|;$|~|#|@|</" , contains : [ { className : "function" , begin : c ,
end : "\\)$" , returnBegin : ! 0 , keywords : s , illegal : "[\\[\\]\\|\\$\\?%,~#@]" ,
contains : [ { className : "title" , keywords : { $pattern : t ,
built _in : " AddSubString AdjustLineBreaks AmountInWords Analysis ArrayDimCount ArrayHighBound ArrayLowBound ArrayOf ArrayReDim Assert Assigned BeginOfMonth BeginOfPeriod BuildProfilingOperationAnalysis CallProcedure CanReadFile CArrayElement CDataSetRequisite ChangeDate ChangeReferenceDataset Char CharPos CheckParam CheckParamValue CompareStrings ConstantExists ControlState ConvertDateStr Copy CopyFile CreateArray CreateCachedReference CreateConnection CreateDialog CreateDualListDialog CreateEditor CreateException CreateFile CreateFolderDialog CreateInputDialog CreateLinkFile CreateList CreateLock CreateMemoryDataSet CreateObject CreateOpenDialog CreateProgress CreateQuery CreateReference CreateReport CreateSaveDialog CreateScript CreateSQLPivotFunction CreateStringList CreateTreeListSelectDialog CSelectSQL CSQL CSubString CurrentUserID CurrentUserName CurrentVersion DataSetLocateEx DateDiff DateTimeDiff DateToStr DayOfWeek DeleteFile DirectoryExists DisableCheckAccessRights DisableCheckFullShowingRestriction DisableMassTaskSendingRestrictions DropTable DupeString EditText EnableCheckAccessRights EnableCheckFullShowingRestriction EnableMassTaskSendingRestrictions EndOfMonth EndOfPeriod ExceptionExists ExceptionsOff ExceptionsOn Execute ExecuteProcess Exit ExpandEnvironmentVariables ExtractFileDrive ExtractFileExt ExtractFileName ExtractFilePath ExtractParams FileExists FileSize FindFile FindSubString FirmContext ForceDirectories Format FormatDate FormatNumeric FormatSQLDate FormatString FreeException GetComponent GetComponentLaunchParam GetConstant GetLastException GetReferenceRecord GetRefTypeByRefID GetTableID GetTempFolder IfThen In IndexOf InputDialog InputDialogEx InteractiveMode IsFileLocked IsGraphicFile IsNumeric Length LoadString LoadStringFmt LocalTimeToUTC LowerCase Max MessageBox MessageBoxEx MimeDecodeBinary MimeDecodeString MimeEncodeBinary MimeEncodeString Min MoneyInWords MoveFile NewID Now OpenFile Ord Precision Raise ReadCertificateFromFile ReadFile ReferenceCodeByID ReferenceNumber ReferenceRequisiteMode ReferenceRequisiteValue RegionDateSettings RegionNumberSettings RegionTimeSettings RegRead RegWrite RenameFile Replace Round SelectServerCode SelectSQL ServerDateTime SetConstant SetManagedFolderFieldsState ShowConstantsInputDialog ShowMessage Sleep Split SQL SQL2XLSTAB SQLProfilingSendReport StrToDate SubString SubStringCount SystemSetting Time TimeDiff Today Transliterate Trim UpperCase UserStatus UTCToLocalTime ValidateXML VarIsClear VarIsEmpty VarIsNull WorkTimeDiff WriteFile WriteFileEx WriteObjectHistory \u0410\u043d\u0430\u043b\u0438\u0437 \u0411\u0430\u0437\u0430\u0414\u0430\u043d\u043d\u044b\u0445 \u0411\u043b\u043e\u043a\u0415\u0441\u0442\u044c \u0411\u043b\u043e\u043a\u0415\u0441\u0442\u044c\u0420\u0430\u0441\u0448 \u0411\u043b\u043e\u043a\u0418\u043d\u0444\u043e \u0411\u043b\u043e\u043a\u0421\u043d\u044f\u0442\u044c \u0411\u043b\u043e\u043a\u0421\u043d\u044f\u0442\u044c\u0420\u0430\u0441\u0448 \u0411\u043b\u043e\u043a\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0412\u0432\u043e\u0434 \u0412\u0432\u043e\u0434\u041c\u0435\u043d\u044e \u0412\u0435\u0434\u0421 \u0412\u0435\u0434\u0421\u043f\u0440 \u0412\u0435\u0440\u0445\u043d\u044f\u044f\u0413\u0440\u0430\u043d\u0438\u0446\u0430\u041c\u0430\u0441\u0441\u0438\u0432\u0430 \u0412\u043d\u0435\u0448\u041f\u0440\u043e\u0433\u0440 \u0412\u043e\u0441\u0441\u0442 \u0412\u0440\u0435\u043c\u0435\u043d\u043d\u0430\u044f\u041f\u0430\u043f\u043a\u0430 \u0412\u0440\u0435\u043c\u044f \u0412\u044b\u0431\u043e\u0440SQL \u0412\u044b\u0431\u0440\u0430\u0442\u044c\u0417\u0430\u043f\u0438\u0441\u044c \u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c\u0421\u0442\u0440 \u0412\u044b\u0437\u0432\u0430\u0442\u044c \u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0412\u044b\u043f\u041f\u0440\u043e\u0433\u0440 \u0413\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0439\u0424\u0430\u0439\u043b \u0413\u0440\u0443\u043f\u043f\u0430\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0414\u0430\u0442\u0430\u0412\u0440
} , begin : c , end : "\\(" , returnBegin : ! 0 , excludeEnd : ! 0 } , o , _ , n , a , r ] } , l , o , _ , n , a , r ] } } ,
grmr _java : e => { e . regex
; const t = "[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*" , a = t + Oe ( "(?:<" + t + "~~~(?:\\s*,\\s*" + t + "~~~)*>)?" , /~~~/g , 2 ) , n = {
keyword : [ "synchronized" , "abstract" , "private" , "var" , "static" , "if" , "const " , "for" , "while" , "strictfp" , "finally" , "protected" , "import" , "native" , "final" , "void" , "enum" , "else" , "break" , "transient" , "catch" , "instanceof" , "volatile" , "case" , "assert" , "package" , "default" , "public" , "try" , "switch" , "continue" , "throws" , "protected" , "public" , "private" , "module" , "requires" , "exports" , "do" , "sealed" ] ,
2021-10-19 23:53:22 -07:00
literal : [ "false" , "true" , "null" ] ,
type : [ "char" , "boolean" , "long" , "float" , "int" , "byte" , "short" , "double" ] ,
2022-01-15 21:29:41 -08:00
built _in : [ "super" , "this" ] } , i = { className : "meta" , begin : "@" + t , contains : [ {
2021-10-19 23:53:22 -07:00
begin : /\(/ , end : /\)/ , contains : [ "self" ] } ] } , r = { className : "params" , begin : /\(/ ,
2022-01-15 21:29:41 -08:00
end : /\)/ , keywords : n , relevance : 0 , contains : [ e . C _BLOCK _COMMENT _MODE ] , endsParent : ! 0 }
; return { name : "Java" , aliases : [ "jsp" ] , keywords : n , illegal : /<\/|#/ ,
2021-10-19 23:53:22 -07:00
contains : [ e . COMMENT ( "/\\*\\*" , "\\*/" , { relevance : 0 , contains : [ { begin : /\w+@/ ,
relevance : 0 } , { className : "doctag" , begin : "@[A-Za-z]+" } ] } ) , {
begin : /import java\.[a-z]+\./ , keywords : "import" , relevance : 2
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , { begin : /"""/ , end : /"""/ ,
className : "string" , contains : [ e . BACKSLASH _ESCAPE ]
} , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , {
2022-01-15 21:29:41 -08:00
match : [ /\b(?:class|interface|enum|extends|implements|new)/ , /\s+/ , t ] , className : {
1 : "keyword" , 3 : "title.class" } } , { match : /non-sealed/ , scope : "keyword" } , {
begin : [ t , /\s+/ , t , /\s+/ , /=/ ] , className : { 1 : "type" , 3 : "variable" , 5 : "operator" } } , {
begin : [ /record/ , /\s+/ , t ] , className : { 1 : "keyword" , 3 : "title.class" } ,
contains : [ r , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , {
2021-10-19 23:53:22 -07:00
beginKeywords : "new throw return else" , relevance : 0 } , {
2022-01-15 21:29:41 -08:00
begin : [ "(?:" + a + "\\s+)" , e . UNDERSCORE _IDENT _RE , /\s*(?=\()/ ] , className : {
2 : "title.function" } , keywords : n , contains : [ { className : "params" , begin : /\(/ ,
end : /\)/ , keywords : n , relevance : 0 ,
contains : [ i , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , Ne , e . C _BLOCK _COMMENT _MODE ]
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , Ne , i ] } } , grmr _javascript : fe ,
grmr _jboss _cli : e => ( { name : "JBoss CLI" , aliases : [ "wildfly-cli" ] , keywords : {
$pattern : "[a-z-]+" ,
keyword : "alias batch cd clear command connect connection-factory connection-info data-source deploy deployment-info deployment-overlay echo echo-dmr help history if jdbc-driver-info jms-queue|20 jms-topic|20 ls patch pwd quit read-attribute read-operation reload rollout-plan run-batch set shutdown try unalias undeploy unset version xa-data-source" ,
literal : "true false" } , contains : [ e . HASH _COMMENT _MODE , e . QUOTE _STRING _MODE , {
className : "params" , begin : /--[\w\-=\/]+/ } , { className : "function" ,
begin : /:[\w\-.]+/ , relevance : 0 } , { className : "string" , begin : /\B([\/.])[\w\-.\/=]+/
} , { className : "params" , begin : /\(/ , end : /\)/ , contains : [ { begin : /[\w-]+ *=/ ,
returnBegin : ! 0 , relevance : 0 , contains : [ { className : "attr" , begin : /[\w-]+/ } ] } ] ,
relevance : 0 } ] } ) , grmr _json : e => ( { name : "JSON" , contains : [ { className : "attr" ,
2021-10-19 23:53:22 -07:00
begin : /"(\\.|[^\\"\r\n])*"(?=\s*:)/ , relevance : 1.01 } , { match : /[{}[\],:]/ ,
className : "punctuation" , relevance : 0 } , e . QUOTE _STRING _MODE , {
beginKeywords : "true false null"
} , e . C _NUMBER _MODE , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] , illegal : "\\S" } ) ,
2022-01-15 21:29:41 -08:00
grmr _julia : e => { var t = "[A-Za-z_\\u00A1-\\uFFFF][A-Za-z_0-9\\u00A1-\\uFFFF]*" , a = {
$pattern : t ,
keyword : [ "baremodule" , "begin" , "break" , "catch" , "ccall" , "const" , "continue" , "do" , "else" , "elseif" , "end" , "export" , "false" , "finally" , "for" , "function" , "global" , "if" , "import" , "in" , "isa" , "let" , "local" , "macro" , "module" , "quote" , "return" , "true" , "try" , "using" , "where" , "while" ] ,
literal : [ "ARGS" , "C_NULL" , "DEPOT_PATH" , "ENDIAN_BOM" , "ENV" , "Inf" , "Inf16" , "Inf32" , "Inf64" , "InsertionSort" , "LOAD_PATH" , "MergeSort" , "NaN" , "NaN16" , "NaN32" , "NaN64" , "PROGRAM_FILE" , "QuickSort" , "RoundDown" , "RoundFromZero" , "RoundNearest" , "RoundNearestTiesAway" , "RoundNearestTiesUp" , "RoundToZero" , "RoundUp" , "VERSION|0" , "devnull" , "false" , "im" , "missing" , "nothing" , "pi" , "stderr" , "stdin" , "stdout" , "true" , "undef" , "\u03c0" , "\u212f" ] ,
built _in : [ "AbstractArray" , "AbstractChannel" , "AbstractChar" , "AbstractDict" , "AbstractDisplay" , "AbstractFloat" , "AbstractIrrational" , "AbstractMatrix" , "AbstractRange" , "AbstractSet" , "AbstractString" , "AbstractUnitRange" , "AbstractVecOrMat" , "AbstractVector" , "Any" , "ArgumentError" , "Array" , "AssertionError" , "BigFloat" , "BigInt" , "BitArray" , "BitMatrix" , "BitSet" , "BitVector" , "Bool" , "BoundsError" , "CapturedException" , "CartesianIndex" , "CartesianIndices" , "Cchar" , "Cdouble" , "Cfloat" , "Channel" , "Char" , "Cint" , "Cintmax_t" , "Clong" , "Clonglong" , "Cmd" , "Colon" , "Complex" , "ComplexF16" , "ComplexF32" , "ComplexF64" , "CompositeException" , "Condition" , "Cptrdiff_t" , "Cshort" , "Csize_t" , "Cssize_t" , "Cstring" , "Cuchar" , "Cuint" , "Cuintmax_t" , "Culong" , "Culonglong" , "Cushort" , "Cvoid" , "Cwchar_t" , "Cwstring" , "DataType" , "DenseArray" , "DenseMatrix" , "DenseVecOrMat" , "DenseVector" , "Dict" , "DimensionMismatch" , "Dims" , "DivideError" , "DomainError" , "EOFError" , "Enum" , "ErrorException" , "Exception" , "ExponentialBackOff" , "Expr" , "Float16" , "Float32" , "Float64" , "Function" , "GlobalRef" , "HTML" , "IO" , "IOBuffer" , "IOContext" , "IOStream" , "IdDict" , "IndexCartesian" , "IndexLinear" , "IndexStyle" , "InexactError" , "InitError" , "Int" , "Int128" , "Int16" , "Int32" , "Int64" , "Int8" , "Integer" , "InterruptException" , "InvalidStateException" , "Irrational" , "KeyError" , "LinRange" , "LineNumberNode" , "LinearIndices" , "LoadError" , "MIME" , "Matrix" , "Method" , "MethodError" , "Missing" , "MissingException" , "Module" , "NTuple" , "NamedTuple" , "Nothing" , "Number" , "OrdinalRange" , "OutOfMemoryError" , "OverflowError" , "Pair" , "PartialQuickSort" , "PermutedDimsArray" , "Pipe" , "ProcessFailedException" , "Ptr" , "QuoteNode" , "Rational" , "RawFD" , "ReadOnlyMemoryError" , "Real" , "ReentrantLock" , "Ref" , "Regex" , "RegexMatch" , "RoundingMode" , "SegmentationFault" , "Set" , "Signed" , "Some" , "StackOverflowError" , "StepRange" , "StepRangeLen" , "StridedArray" , "StridedMatrix" , "StridedVecOrMat" , "StridedVector" , "String" , "StringIndexError" , "SubArray" , "SubString" , "SubstitutionString" , "Symbol" , "SystemError" , "Task" , "TaskFailedException" , "Text" , "TextDisplay" , "Timer" , "Tuple" , "Type" , "TypeError" , "TypeVar" , "UInt" , "UInt128" , "UInt16" , "UInt32" , "UInt64" , "UInt8" , "UndefInitializer" , "UndefKeywordError" , "UndefRefError" , "UndefVarError" , "Union" , "UnionAll" , "UnitRange" , "Unsigned" , "Val" , "Vararg" , "VecElement" , "VecOrMat" , "Vector" , "VersionNumber" , "WeakKeyDict" , "WeakRef" ]
} , n = { keywords : a , illegal : /<\// } , i = { className : "subst" , begin : /\$\(/ , end : /\)/ ,
keywords : a } , r = { className : "variable" , begin : "\\$" + t } , s = { className : "string" ,
contains : [ e . BACKSLASH _ESCAPE , i , r ] , variants : [ { begin : /\w*"""/ , end : /"""\w*/ ,
relevance : 10 } , { begin : /\w*"/ , end : /"\w*/ } ] } , o = { className : "string" ,
contains : [ e . BACKSLASH _ESCAPE , i , r ] , begin : "`" , end : "`" } , l = { className : "meta" ,
begin : "@" + t } ; return n . name = "Julia" , n . contains = [ { className : "number" ,
begin : /(\b0x[\d_]*(\.[\d_]*)?|0x\.\d[\d_]*)p[-+]?\d+|\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\b\d[\d_]*(\.[\d_]*)?|\.\d[\d_]*)([eEfF][-+]?\d+)?/ ,
relevance : 0 } , { className : "string" , begin : /'(.|\\[xXuU][a-zA-Z0-9]+)'/ } , s , o , l , {
className : "comment" , variants : [ { begin : "#=" , end : "=#" , relevance : 10 } , { begin : "#" ,
end : "$" } ] } , e . HASH _COMMENT _MODE , { className : "keyword" ,
begin : "\\b(((abstract|primitive)\\s+)type|(mutable\\s+)?struct)\\b" } , { begin : /<:/
} ] , i . contains = n . contains , n } , grmr _julia _repl : e => ( { name : "Julia REPL" , contains : [ {
className : "meta" , begin : /^julia>/ , relevance : 10 , starts : { end : /^(?![ ]{6})/ ,
subLanguage : "julia" } } ] , aliases : [ "jldoctest" ] } ) , grmr _kotlin : e => { const t = {
2021-10-19 23:53:22 -07:00
keyword : "abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual" ,
built _in : "Byte Short Char Int Long Boolean Float Double Void Unit Nothing" ,
2022-01-15 21:29:41 -08:00
literal : "true false null" } , a = { className : "symbol" , begin : e . UNDERSCORE _IDENT _RE + "@"
} , n = { className : "subst" , begin : /\$\{/ , end : /\}/ , contains : [ e . C _NUMBER _MODE ] } , i = {
2021-10-19 23:53:22 -07:00
className : "variable" , begin : "\\$" + e . UNDERSCORE _IDENT _RE } , r = { className : "string" ,
2022-01-15 21:29:41 -08:00
variants : [ { begin : '"""' , end : '"""(?=[^"])' , contains : [ i , n ] } , { begin : "'" , end : "'" ,
2021-10-19 23:53:22 -07:00
illegal : /\n/ , contains : [ e . BACKSLASH _ESCAPE ] } , { begin : '"' , end : '"' , illegal : /\n/ ,
2022-01-15 21:29:41 -08:00
contains : [ e . BACKSLASH _ESCAPE , i , n ] } ] } ; n . contains . push ( r ) ; const s = {
2021-10-19 23:53:22 -07:00
className : "meta" ,
begin : "@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*" + e . UNDERSCORE _IDENT _RE + ")?"
} , o = { className : "meta" , begin : "@" + e . UNDERSCORE _IDENT _RE , contains : [ { begin : /\(/ ,
end : /\)/ , contains : [ e . inherit ( r , { className : "string" } ) ] } ]
2022-01-15 21:29:41 -08:00
} , l = Ne , _ = e . COMMENT ( "/\\*" , "\\*/" , { contains : [ e . C _BLOCK _COMMENT _MODE ] } ) , c = {
2021-10-19 23:53:22 -07:00
variants : [ { className : "type" , begin : e . UNDERSCORE _IDENT _RE } , { begin : /\(/ , end : /\)/ ,
2022-01-15 21:29:41 -08:00
contains : [ ] } ] } , d = c ; return d . variants [ 1 ] . contains = [ c ] , c . variants [ 1 ] . contains = [ d ] ,
{ name : "Kotlin" , aliases : [ "kt" , "kts" ] , keywords : t ,
2021-10-19 23:53:22 -07:00
contains : [ e . COMMENT ( "/\\*\\*" , "\\*/" , { relevance : 0 , contains : [ { className : "doctag" ,
2022-01-15 21:29:41 -08:00
begin : "@[A-Za-z]+" } ] } ) , e . C _LINE _COMMENT _MODE , _ , { className : "keyword" ,
2021-10-19 23:53:22 -07:00
begin : /\b(break|continue|return|this)\b/ , starts : { contains : [ { className : "symbol" ,
2022-01-15 21:29:41 -08:00
begin : /@\w+/ } ] } } , a , s , o , { className : "function" , beginKeywords : "fun" , end : "[(]|$" ,
returnBegin : ! 0 , excludeEnd : ! 0 , keywords : t , relevance : 5 , contains : [ {
2021-10-19 23:53:22 -07:00
begin : e . UNDERSCORE _IDENT _RE + "\\s*\\(" , returnBegin : ! 0 , relevance : 0 ,
contains : [ e . UNDERSCORE _TITLE _MODE ] } , { className : "type" , begin : /</ , end : />/ ,
keywords : "reified" , relevance : 0 } , { className : "params" , begin : /\(/ , end : /\)/ ,
2022-01-15 21:29:41 -08:00
endsParent : ! 0 , keywords : t , relevance : 0 , contains : [ { begin : /:/ , end : /[=,\/]/ ,
endsWithParent : ! 0 , contains : [ c , e . C _LINE _COMMENT _MODE , _ ] , relevance : 0
} , e . C _LINE _COMMENT _MODE , _ , s , o , r , e . C _NUMBER _MODE ] } , _ ] } , { className : "class" ,
2021-10-19 23:53:22 -07:00
beginKeywords : "class interface trait" , end : /[:\{(]|$/ , excludeEnd : ! 0 ,
illegal : "extends implements" , contains : [ {
beginKeywords : "public protected internal private constructor"
} , e . UNDERSCORE _TITLE _MODE , { className : "type" , begin : /</ , end : />/ , excludeBegin : ! 0 ,
excludeEnd : ! 0 , relevance : 0 } , { className : "type" , begin : /[,:]\s*/ , end : /[<\(,]|$/ ,
excludeBegin : ! 0 , returnEnd : ! 0 } , s , o ] } , r , { className : "meta" , begin : "^#!/usr/bin/env" ,
2022-01-15 21:29:41 -08:00
end : "$" , illegal : "\n" } , l ] } } , grmr _lasso : e => {
const t = "<\\?(lasso(script)?|=)" , a = "\\]|\\?>" , n = {
$pattern : "[a-zA-Z_][\\w.]*|&[lg]t;" ,
literal : "true false none minimal full all void and or not bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft" ,
built _in : "array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock" ,
keyword : "cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else fail_if fail_ifnot fail if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome"
} , i = e . COMMENT ( "\x3c!--" , "--\x3e" , { relevance : 0 } ) , r = { className : "meta" ,
begin : "\\[noprocess\\]" , starts : { end : "\\[/noprocess\\]" , returnEnd : ! 0 , contains : [ i ]
} } , s = { className : "meta" , begin : "\\[/noprocess|" + t
} , o = [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . inherit ( e . C _NUMBER _MODE , {
begin : e . C _NUMBER _RE + "|(-?infinity|NaN)\\b" } ) , e . inherit ( e . APOS _STRING _MODE , {
illegal : null } ) , e . inherit ( e . QUOTE _STRING _MODE , { illegal : null } ) , {
className : "string" , begin : "`" , end : "`" } , { variants : [ { begin : "[#$][a-zA-Z_][\\w.]*"
} , { begin : "#" , end : "\\d+" , illegal : "\\W" } ] } , { className : "type" , begin : "::\\s*" ,
end : "[a-zA-Z_][\\w.]*" , illegal : "\\W" } , { className : "params" , variants : [ {
begin : "-(?!infinity)[a-zA-Z_][\\w.]*" , relevance : 0 } , { begin : "(\\.\\.\\.)" } ] } , {
begin : /(->|\.)\s*/ , relevance : 0 , contains : [ { className : "symbol" ,
begin : "'[a-zA-Z_][\\w.]*'" } ] } , { className : "class" , beginKeywords : "define" ,
returnEnd : ! 0 , end : "\\(|=>" , contains : [ e . inherit ( e . TITLE _MODE , {
begin : "[a-zA-Z_][\\w.]*(=(?!>))?|[-+*/%](?!>)" } ) ] } ] ; return { name : "Lasso" ,
aliases : [ "ls" , "lassoscript" ] , case _insensitive : ! 0 , keywords : n , contains : [ {
className : "meta" , begin : a , relevance : 0 , starts : { end : "\\[|" + t , returnEnd : ! 0 ,
relevance : 0 , contains : [ i ] } } , r , s , { className : "meta" , begin : "\\[no_square_brackets" ,
starts : { end : "\\[/no_square_brackets\\]" , keywords : n , contains : [ { className : "meta" ,
begin : a , relevance : 0 , starts : { end : "\\[noprocess\\]|" + t , returnEnd : ! 0 , contains : [ i ] }
} , r , s ] . concat ( o ) } } , { className : "meta" , begin : "\\[" , relevance : 0 } , { className : "meta" ,
begin : "^#!" , end : "lasso9$" , relevance : 10 } ] . concat ( o ) } } , grmr _latex : e => { const t = [ {
begin : /\^{6}[0-9a-f]{6}/ } , { begin : /\^{5}[0-9a-f]{5}/ } , { begin : /\^{4}[0-9a-f]{4}/
} , { begin : /\^{3}[0-9a-f]{3}/ } , { begin : /\^{2}[0-9a-f]{2}/ } , {
begin : /\^{2}[\u0000-\u007f]/ } ] , a = [ { className : "keyword" , begin : /\\/ , relevance : 0 ,
contains : [ { endsParent : ! 0 ,
begin : e . regex . either ( ... [ "(?:NeedsTeXFormat|RequirePackage|GetIdInfo)" , "Provides(?:Expl)?(?:Package|Class|File)" , "(?:DeclareOption|ProcessOptions)" , "(?:documentclass|usepackage|input|include)" , "makeat(?:letter|other)" , "ExplSyntax(?:On|Off)" , "(?:new|renew|provide)?command" , "(?:re)newenvironment" , "(?:New|Renew|Provide|Declare)(?:Expandable)?DocumentCommand" , "(?:New|Renew|Provide|Declare)DocumentEnvironment" , "(?:(?:e|g|x)?def|let)" , "(?:begin|end)" , "(?:part|chapter|(?:sub){0,2}section|(?:sub)?paragraph)" , "caption" , "(?:label|(?:eq|page|name)?ref|(?:paren|foot|super)?cite)" , "(?:alpha|beta|[Gg]amma|[Dd]elta|(?:var)?epsilon|zeta|eta|[Tt]heta|vartheta)" , "(?:iota|(?:var)?kappa|[Ll]ambda|mu|nu|[Xx]i|[Pp]i|varpi|(?:var)rho)" , "(?:[Ss]igma|varsigma|tau|[Uu]psilon|[Pp]hi|varphi|chi|[Pp]si|[Oo]mega)" , "(?:frac|sum|prod|lim|infty|times|sqrt|leq|geq|left|right|middle|[bB]igg?)" , "(?:[lr]angle|q?quad|[lcvdi]?dots|d?dot|hat|tilde|bar)" ] . map ( ( e => e + "(?![a-zA-Z@:_])" ) ) )
} , { endsParent : ! 0 ,
begin : RegExp ( [ "(?:__)?[a-zA-Z]{2,}_[a-zA-Z](?:_?[a-zA-Z])+:[a-zA-Z]*" , "[lgc]__?[a-zA-Z](?:_?[a-zA-Z])*_[a-zA-Z]{2,}" , "[qs]__?[a-zA-Z](?:_?[a-zA-Z])+" , "use(?:_i)?:[a-zA-Z]*" , "(?:else|fi|or):" , "(?:if|cs|exp):w" , "(?:hbox|vbox):n" , "::[a-zA-Z]_unbraced" , "::[a-zA-Z:]" ] . map ( ( e => e + "(?![a-zA-Z:_])" ) ) . join ( "|" ) )
} , { endsParent : ! 0 , variants : t } , { endsParent : ! 0 , relevance : 0 , variants : [ {
begin : /[a-zA-Z@]+/ } , { begin : /[^a-zA-Z@]?/ } ] } ] } , { className : "params" , relevance : 0 ,
begin : /#+\d?/ } , { variants : t } , { className : "built_in" , relevance : 0 , begin : /[$&^_]/ } , {
className : "meta" , begin : /% ?!(T[eE]X|tex|BIB|bib)/ , end : "$" , relevance : 10
} , e . COMMENT ( "%" , "$" , { relevance : 0 } ) ] , n = { begin : /\{/ , end : /\}/ , relevance : 0 ,
contains : [ "self" , ... a ] } , i = e . inherit ( n , { relevance : 0 , endsParent : ! 0 ,
contains : [ n , ... a ] } ) , r = { begin : /\[/ , end : /\]/ , endsParent : ! 0 , relevance : 0 ,
contains : [ n , ... a ] } , s = { begin : /\s+/ , relevance : 0 } , o = [ i ] , l = [ r ] , _ = ( e , t ) => ( {
contains : [ s ] , starts : { relevance : 0 , contains : e , starts : t } } ) , c = ( e , t ) => ( {
begin : "\\\\" + e + "(?![a-zA-Z@:_])" , keywords : { $pattern : /\\[a-zA-Z]+/ , keyword : "\\" + e
} , relevance : 0 , contains : [ s ] , starts : t } ) , d = ( t , a ) => e . inherit ( {
begin : "\\\\begin(?=[ \t]*(\\r?\\n[ \t]*)?\\{" + t + "\\})" , keywords : {
$pattern : /\\[a-zA-Z]+/ , keyword : "\\begin" } , relevance : 0
} , _ ( o , a ) ) , m = ( t = "string" ) => e . END _SAME _AS _BEGIN ( { className : t , begin : /(.|\r?\n)/ ,
end : /(.|\r?\n)/ , excludeBegin : ! 0 , excludeEnd : ! 0 , endsParent : ! 0 } ) , p = e => ( {
className : "string" , end : "(?=\\\\end\\{" + e + "\\})" } ) , u = ( e = "string" ) => ( { relevance : 0 ,
begin : /\{/ , starts : { endsParent : ! 0 , contains : [ { className : e , end : /(?=\})/ ,
endsParent : ! 0 , contains : [ { begin : /\{/ , end : /\}/ , relevance : 0 , contains : [ "self" ] } ] } ] }
} ) ; return { name : "LaTeX" , aliases : [ "tex" ] ,
contains : [ ... [ "verb" , "lstinline" ] . map ( ( e => c ( e , { contains : [ m ( ) ] } ) ) ) , c ( "mint" , _ ( o , {
contains : [ m ( ) ] } ) ) , c ( "mintinline" , _ ( o , { contains : [ u ( ) , m ( ) ] } ) ) , c ( "url" , {
contains : [ u ( "link" ) , u ( "link" ) ] } ) , c ( "hyperref" , { contains : [ u ( "link" ) ]
} ) , c ( "href" , _ ( l , { contains : [ u ( "link" ) ]
} ) ) , ... [ ] . concat ( ... [ "" , "\\*" ] . map ( ( e => [ d ( "verbatim" + e , p ( "verbatim" + e ) ) , d ( "filecontents" + e , _ ( o , p ( "filecontents" + e ) ) ) , ... [ "" , "B" , "L" ] . map ( ( t => d ( t + "Verbatim" + e , _ ( l , p ( t + "Verbatim" + e ) ) ) ) ) ] ) ) ) , d ( "minted" , _ ( l , _ ( o , p ( "minted" ) ) ) ) , ... a ]
} } , grmr _ldif : e => ( { name : "LDIF" , contains : [ { className : "attribute" , match : "^dn(?=:)" ,
relevance : 10 } , { className : "attribute" , match : "^\\w+(?=:)" } , { className : "literal" ,
match : "^-" } , e . HASH _COMMENT _MODE ] } ) , grmr _leaf : e => ( { name : "Leaf" , contains : [ {
className : "function" , begin : "#+[A-Za-z_0-9]*\\(" , end : / \{/ , returnBegin : ! 0 ,
excludeEnd : ! 0 , contains : [ { className : "keyword" , begin : "#+" } , { className : "title" ,
begin : "[A-Za-z_][A-Za-z_0-9]*" } , { className : "params" , begin : "\\(" , end : "\\)" ,
endsParent : ! 0 , contains : [ { className : "string" , begin : '"' , end : '"' } , {
className : "variable" , begin : "[A-Za-z_][A-Za-z_0-9]*" } ] } ] } ] } ) , grmr _less : e => {
const t = me ( e ) , a = Te , n = "([\\w-]+|@\\{[\\w-]+\\})" , i = [ ] , r = [ ] , s = e => ( {
className : "string" , begin : "~?" + e + ".*?" + e } ) , o = ( e , t , a ) => ( { className : e , begin : t ,
relevance : a } ) , l = { $pattern : /[a-z-]+/ , keyword : "and or not only" ,
attribute : ue . join ( " " ) } , _ = { begin : "\\(" , end : "\\)" , contains : r , keywords : l ,
2021-10-19 23:53:22 -07:00
relevance : 0 }
2022-01-15 21:29:41 -08:00
; r . push ( e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , s ( "'" ) , s ( '"' ) , t . CSS _NUMBER _MODE , {
2021-10-19 23:53:22 -07:00
begin : "(url|data-uri)\\(" , starts : { className : "string" , end : "[\\)\\n]" ,
excludeEnd : ! 0 }
2022-01-15 21:29:41 -08:00
} , t . HEXCOLOR , _ , o ( "variable" , "@@?[\\w-]+" , 10 ) , o ( "variable" , "@\\{[\\w-]+\\}" ) , o ( "built_in" , "~?`[^`]*?`" ) , {
2021-10-19 23:53:22 -07:00
className : "attribute" , begin : "[\\w-]+\\s*:" , end : ":" , returnBegin : ! 0 , excludeEnd : ! 0
2022-01-15 21:29:41 -08:00
} , t . IMPORTANT ) ; const c = r . concat ( { begin : /\{/ , end : /\}/ , contains : i } ) , d = {
2021-10-19 23:53:22 -07:00
beginKeywords : "when" , endsWithParent : ! 0 , contains : [ { beginKeywords : "and not"
2022-01-15 21:29:41 -08:00
} ] . concat ( r ) } , m = { begin : n + "\\s*:" , returnBegin : ! 0 , end : /[;}]/ , relevance : 0 ,
contains : [ { begin : /-(webkit|moz|ms|o)-/ } , t . CSS _VARIABLE , { className : "attribute" ,
begin : "\\b(" + ge . join ( "|" ) + ")\\b" , end : /(?=:)/ , starts : { endsWithParent : ! 0 ,
illegal : "[<=$]" , relevance : 0 , contains : r } } ] } , p = { className : "keyword" ,
2021-10-19 23:53:22 -07:00
begin : "@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b" ,
2022-01-15 21:29:41 -08:00
starts : { end : "[;{}]" , keywords : l , returnEnd : ! 0 , contains : r , relevance : 0 } } , u = {
2021-10-19 23:53:22 -07:00
className : "variable" , variants : [ { begin : "@[\\w-]+\\s*:" , relevance : 15 } , {
2022-01-15 21:29:41 -08:00
begin : "@[\\w-]+" } ] , starts : { end : "[;}]" , returnEnd : ! 0 , contains : c } } , E = { variants : [ {
begin : "[\\.#:&\\[>]" , end : "[;{}]" } , { begin : n , end : /\{/ } ] , returnBegin : ! 0 ,
2021-10-19 23:53:22 -07:00
returnEnd : ! 0 , illegal : "[<='$\"]" , relevance : 0 ,
2022-01-15 21:29:41 -08:00
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , d , o ( "keyword" , "all\\b" ) , o ( "variable" , "@\\{[\\w-]+\\}" ) , {
begin : "\\b(" + pe . join ( "|" ) + ")\\b" , className : "selector-tag"
} , t . CSS _NUMBER _MODE , o ( "selector-tag" , n , 0 ) , o ( "selector-id" , "#" + n ) , o ( "selector-class" , "\\." + n , 0 ) , o ( "selector-tag" , "&" , 0 ) , t . ATTRIBUTE _SELECTOR _MODE , {
className : "selector-pseudo" , begin : ":(" + Ee . join ( "|" ) + ")" } , {
className : "selector-pseudo" , begin : ":(:)?(" + Se . join ( "|" ) + ")" } , { begin : /\(/ ,
end : /\)/ , relevance : 0 , contains : c } , { begin : "!important" } , t . FUNCTION _DISPATCH ] } , S = {
begin : ` [ \\ w-]+:(:)?( ${ a . join ( "|" ) } ) ` , returnBegin : ! 0 , contains : [ E ] }
; return i . push ( e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , p , u , S , m , E ) , {
name : "Less" , case _insensitive : ! 0 , illegal : "[=>'/<($\"]" , contains : i } } ,
grmr _lisp : e => {
var t = "[a-zA-Z_\\-+\\*\\/<=>&#][a-zA-Z0-9_\\-+*\\/<=>&#!]*" , a = "\\|[^]*?\\|" , n = "(-|\\+)?\\d+(\\.\\d+|\\/\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\+|-)?\\d+)?" , i = {
className : "literal" , begin : "\\b(t{1}|nil)\\b" } , r = { className : "number" , variants : [ {
begin : n , relevance : 0 } , { begin : "#(b|B)[0-1]+(/[0-1]+)?" } , {
begin : "#(o|O)[0-7]+(/[0-7]+)?" } , { begin : "#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?" } , {
begin : "#(c|C)\\(" + n + " +" + n , end : "\\)" } ] } , s = e . inherit ( e . QUOTE _STRING _MODE , {
illegal : null } ) , o = e . COMMENT ( ";" , "$" , { relevance : 0 } ) , l = { begin : "\\*" , end : "\\*" } , _ = {
className : "symbol" , begin : "[:&]" + t } , c = { begin : t , relevance : 0 } , d = { begin : a } , m = {
contains : [ r , s , l , _ , { begin : "\\(" , end : "\\)" , contains : [ "self" , i , s , r , c ] } , c ] ,
variants : [ { begin : "['`]\\(" , end : "\\)" } , { begin : "\\(quote " , end : "\\)" , keywords : {
name : "quote" } } , { begin : "'" + a } ] } , p = { variants : [ { begin : "'" + t } , {
begin : "#'" + t + "(::" + t + ")*" } ] } , u = { begin : "\\(\\s*" , end : "\\)" } , E = { endsWithParent : ! 0 ,
relevance : 0 } ; return u . contains = [ { className : "name" , variants : [ { begin : t , relevance : 0
} , { begin : a } ] } , E ] , E . contains = [ m , p , u , i , r , s , o , l , _ , d , c ] , { name : "Lisp" , illegal : /\S/ ,
contains : [ r , e . SHEBANG ( ) , i , s , o , m , p , u , c ] } } , grmr _livecodeserver : e => { const t = {
className : "variable" , variants : [ {
begin : "\\b([gtps][A-Z]{1}[a-zA-Z0-9]*)(\\[.+\\])?(?:\\s*?)" } , { begin : "\\$_[A-Z]+"
} ] , relevance : 0
} , a = [ e . C _BLOCK _COMMENT _MODE , e . HASH _COMMENT _MODE , e . COMMENT ( "--" , "$" ) , e . COMMENT ( "[^:]//" , "$" ) ] , n = e . inherit ( e . TITLE _MODE , {
variants : [ { begin : "\\b_*rig[A-Z][A-Za-z0-9_\\-]*" } , { begin : "\\b_[a-z0-9\\-]+" } ]
} ) , i = e . inherit ( e . TITLE _MODE , { begin : "\\b([A-Za-z0-9_\\-]+)\\b" } ) ; return {
name : "LiveCode" , case _insensitive : ! 1 , keywords : {
keyword : "$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys" ,
literal : "SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK" ,
built _in : " put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress difference directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge messageAuthenticationCode messageDigest millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb _closeCursor revdb _columnbynumber revdb _columncount revdb _columnisnull revdb _columnlengths revdb _columnnames revdb _columntypes revdb _commit revdb _connect revdb _connections revdb _connectionerr revdb _currentrecord revdb _cursorconnection revdb _cursorerr revdb _cursors revdb _dbtype revdb _disconnect revdb _execute revdb _iseof revdb _isbof revdb _movefirst revdb _movelast revdb _movenext revdb _moveprev revdb _query revdb _querylist revdb _recordcount revdb _rollback revdb _tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC _CreateRequest revXMLRPC _Documents revXMLRPC _Error revXMLRPC _GetHost revXMLRPC _GetMethod revXMLRPC _GetParam revXMLText revXMLRPC _Execute revXMLRPC _GetParamCount revXMLRPC _GetParamNode revXMLRPC _GetParamType revXMLRPC _GetPath revXMLRPC _GetPort revXMLRPC _GetProtocol revXMLRPC _GetRequest revXMLRPC _GetResponse revXMLRPC _GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLr
} , contains : [ t , { className : "keyword" , begin : "\\bend\\sif\\b" } , {
className : "function" , beginKeywords : "function" , end : "$" ,
contains : [ t , i , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . BINARY _NUMBER _MODE , e . C _NUMBER _MODE , n ]
} , { className : "function" , begin : "\\bend\\s+" , end : "$" , keywords : "end" ,
contains : [ i , n ] , relevance : 0 } , { beginKeywords : "command on" , end : "$" ,
contains : [ t , i , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . BINARY _NUMBER _MODE , e . C _NUMBER _MODE , n ]
} , { className : "meta" , variants : [ { begin : "<\\?(rev|lc|livecode)" , relevance : 10 } , {
begin : "<\\?" } , { begin : "\\?>" } ]
} , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . BINARY _NUMBER _MODE , e . C _NUMBER _MODE , n ] . concat ( a ) ,
illegal : ";$|^\\[|^=|&|\\{" } } , grmr _livescript : e => { const t = {
keyword : re . concat ( [ "then" , "unless" , "until" , "loop" , "of" , "by" , "when" , "and" , "or" , "is" , "isnt" , "not" , "it" , "that" , "otherwise" , "from" , "to" , "til" , "fallthrough" , "case" , "enum" , "native" , "list" , "map" , "__hasProp" , "__extends" , "__slice" , "__bind" , "__indexOf" ] ) ,
literal : se . concat ( [ "yes" , "no" , "on" , "off" , "it" , "that" , "void" ] ) ,
built _in : de . concat ( [ "npm" , "print" ] )
} , a = "[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*" , n = e . inherit ( e . TITLE _MODE , {
begin : a } ) , i = { className : "subst" , begin : /#\{/ , end : /\}/ , keywords : t } , r = {
className : "subst" , begin : /#[A-Za-z$_]/ , end : /(?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/ ,
keywords : t } , s = [ e . BINARY _NUMBER _MODE , { className : "number" ,
begin : "(\\b0[xX][a-fA-F0-9_]+)|(\\b\\d(\\d|_\\d)*(\\.(\\d(\\d|_\\d)*)?)?(_*[eE]([-+]\\d(_\\d|\\d)*)?)?[_a-z]*)" ,
relevance : 0 , starts : { end : "(\\s*/)?" , relevance : 0 } } , { className : "string" , variants : [ {
begin : /'''/ , end : /'''/ , contains : [ e . BACKSLASH _ESCAPE ] } , { begin : /'/ , end : /'/ ,
contains : [ e . BACKSLASH _ESCAPE ] } , { begin : /"""/ , end : /"""/ ,
contains : [ e . BACKSLASH _ESCAPE , i , r ] } , { begin : /"/ , end : /"/ ,
contains : [ e . BACKSLASH _ESCAPE , i , r ] } , { begin : /\\/ , end : /(\s|$)/ , excludeEnd : ! 0 } ] } , {
className : "regexp" , variants : [ { begin : "//" , end : "//[gim]*" ,
contains : [ i , e . HASH _COMMENT _MODE ] } , {
begin : /\/(?![ *])(\\.|[^\\\n])*?\/[gim]*(?=\W)/ } ] } , { begin : "@" + a } , { begin : "``" ,
end : "``" , excludeBegin : ! 0 , excludeEnd : ! 0 , subLanguage : "javascript" } ] ; i . contains = s
; const o = { className : "params" , begin : "\\(" , returnBegin : ! 0 , contains : [ { begin : /\(/ ,
end : /\)/ , keywords : t , contains : [ "self" ] . concat ( s ) } ] } , l = { variants : [ {
match : [ /class\s+/ , a , /\s+extends\s+/ , a ] } , { match : [ /class\s+/ , a ] } ] , scope : {
2 : "title.class" , 4 : "title.class.inherited" } , keywords : t } ; return { name : "LiveScript" ,
aliases : [ "ls" ] , keywords : t , illegal : /\/\*/ ,
contains : s . concat ( [ e . COMMENT ( "\\/\\*" , "\\*\\/" ) , e . HASH _COMMENT _MODE , {
begin : "(#=>|=>|\\|>>|-?->|!->)" } , { className : "function" , contains : [ n , o ] ,
returnBegin : ! 0 , variants : [ {
begin : "(" + a + "\\s*(?:=|:=)\\s*)?(\\(.*\\)\\s*)?\\B->\\*?" , end : "->\\*?" } , {
begin : "(" + a + "\\s*(?:=|:=)\\s*)?!?(\\(.*\\)\\s*)?\\B[-~]{1,2}>\\*?" ,
end : "[-~]{1,2}>\\*?" } , {
begin : "(" + a + "\\s*(?:=|:=)\\s*)?(\\(.*\\)\\s*)?\\B!?[-~]{1,2}>\\*?" ,
end : "!?[-~]{1,2}>\\*?" } ] } , l , { begin : a + ":" , end : ":" , returnBegin : ! 0 , returnEnd : ! 0 ,
relevance : 0 } ] ) } } , grmr _llvm : e => { const t = e . regex , a = /([-a-zA-Z$._][\w$.-]*)/ , n = {
className : "variable" , variants : [ { begin : t . concat ( /%/ , a ) } , { begin : /%\d+/ } , {
begin : /#\d+/ } ] } , i = { className : "title" , variants : [ { begin : t . concat ( /@/ , a ) } , {
begin : /@\d+/ } , { begin : t . concat ( /!/ , a ) } , { begin : t . concat ( /!\d+/ , a ) } , { begin : /!\d+/ } ]
} ; return { name : "LLVM IR" ,
keywords : "begin end true false declare define global constant private linker_private internal available_externally linkonce linkonce_odr weak weak_odr appending dllimport dllexport common default hidden protected extern_weak external thread_local zeroinitializer undef null to tail target triple datalayout volatile nuw nsw nnan ninf nsz arcp fast exact inbounds align addrspace section alias module asm sideeffect gc dbg linker_private_weak attributes blockaddress initialexec localdynamic localexec prefix unnamed_addr ccc fastcc coldcc x86_stdcallcc x86_fastcallcc arm_apcscc arm_aapcscc arm_aapcs_vfpcc ptx_device ptx_kernel intel_ocl_bicc msp430_intrcc spir_func spir_kernel x86_64_sysvcc x86_64_win64cc x86_thiscallcc cc c signext zeroext inreg sret nounwind noreturn noalias nocapture byval nest readnone readonly inlinehint noinline alwaysinline optsize ssp sspreq noredzone noimplicitfloat naked builtin cold nobuiltin noduplicate nonlazybind optnone returns_twice sanitize_address sanitize_memory sanitize_thread sspstrong uwtable returned type opaque eq ne slt sgt sle sge ult ugt ule uge oeq one olt ogt ole oge ord uno ueq une x acq_rel acquire alignstack atomic catch cleanup filter inteldialect max min monotonic nand personality release seq_cst singlethread umax umin unordered xchg add fadd sub fsub mul fmul udiv sdiv fdiv urem srem frem shl lshr ashr and or xor icmp fcmp phi call trunc zext sext fptrunc fpext uitofp sitofp fptoui fptosi inttoptr ptrtoint bitcast addrspacecast select va_arg ret br switch invoke unwind unreachable indirectbr landingpad resume malloc alloca free load store getelementptr extractelement insertelement shufflevector getresult extractvalue insertvalue atomicrmw cmpxchg fence argmemonly double" ,
contains : [ { className : "type" , begin : /\bi\d+(?=\s|\b)/ } , e . COMMENT ( /;\s*$/ , null , {
relevance : 0 } ) , e . COMMENT ( /;/ , /$/ ) , e . QUOTE _STRING _MODE , { className : "string" ,
variants : [ { begin : /"/ , end : /[^\\]"/ } ] } , i , { className : "punctuation" , relevance : 0 ,
begin : /,/ } , { className : "operator" , relevance : 0 , begin : /=/ } , n , { className : "symbol" ,
variants : [ { begin : /^\s*[a-z]+:/ } ] , relevance : 0 } , { className : "number" , variants : [ {
begin : /0[xX][a-fA-F0-9]+/ } , { begin : /-?\d+(?:[.]\d+)?(?:[eE][-+]?\d+(?:[.]\d+)?)?/
} ] , relevance : 0 } ] } } , grmr _lsl : e => { var t = { className : "number" , relevance : 0 ,
begin : e . C _NUMBER _RE } ; return { name : "LSL (Linden Scripting Language)" , illegal : ":" ,
contains : [ { className : "string" , begin : '"' , end : '"' , contains : [ { className : "subst" ,
begin : /\\[tn"\\]/ } ] } , { className : "comment" ,
variants : [ e . COMMENT ( "//" , "$" ) , e . COMMENT ( "/\\*" , "\\*/" ) ] , relevance : 0 } , t , {
className : "section" , variants : [ { begin : "\\b(state|default)\\b" } , {
begin : "\\b(state_(entry|exit)|touch(_(start|end))?|(land_)?collision(_(start|end))?|timer|listen|(no_)?sensor|control|(not_)?at_(rot_)?target|money|email|experience_permissions(_denied)?|run_time_permissions|changed|attach|dataserver|moving_(start|end)|link_message|(on|object)_rez|remote_data|http_re(sponse|quest)|path_update|transaction_result)\\b"
} ] } , { className : "built_in" ,
begin : "\\b(ll(AgentInExperience|(Create|DataSize|Delete|KeyCount|Keys|Read|Update)KeyValue|GetExperience(Details|ErrorMessage)|ReturnObjectsBy(ID|Owner)|Json(2List|[GS]etValue|ValueType)|Sin|Cos|Tan|Atan2|Sqrt|Pow|Abs|Fabs|Frand|Floor|Ceil|Round|Vec(Mag|Norm|Dist)|Rot(Between|2(Euler|Fwd|Left|Up))|(Euler|Axes)2Rot|Whisper|(Region|Owner)?Say|Shout|Listen(Control|Remove)?|Sensor(Repeat|Remove)?|Detected(Name|Key|Owner|Type|Pos|Vel|Grab|Rot|Group|LinkNumber)|Die|Ground|Wind|([GS]et)(AnimationOverride|MemoryLimit|PrimMediaParams|ParcelMusicURL|Object(Desc|Name)|PhysicsMaterial|Status|Scale|Color|Alpha|Texture|Pos|Rot|Force|Torque)|ResetAnimationOverride|(Scale|Offset|Rotate)Texture|(Rot)?Target(Remove)?|(Stop)?MoveToTarget|Apply(Rotational)?Impulse|Set(KeyframedMotion|ContentType|RegionPos|(Angular)?Velocity|Buoyancy|HoverHeight|ForceAndTorque|TimerEvent|ScriptState|Damage|TextureAnim|Sound(Queueing|Radius)|Vehicle(Type|(Float|Vector|Rotation)Param)|(Touch|Sit)?Text|Camera(Eye|At)Offset|PrimitiveParams|ClickAction|Link(Alpha|Color|PrimitiveParams(Fast)?|Texture(Anim)?|Camera|Media)|RemoteScriptAccessPin|PayPrice|LocalRot)|ScaleByFactor|Get((Max|Min)ScaleFactor|ClosestNavPoint|StaticPath|SimStats|Env|PrimitiveParams|Link(PrimitiveParams|Number(OfSides)?|Key|Name|Media)|HTTPHeader|FreeURLs|Object(Details|PermMask|PrimCount)|Parcel(MaxPrims|Details|Prim(Count|Owners))|Attached(List)?|(SPMax|Free|Used)Memory|Region(Name|TimeDilation|FPS|Corner|AgentCount)|Root(Position|Rotation)|UnixTime|(Parcel|Region)Flags|(Wall|GMT)clock|SimulatorHostname|BoundingBox|GeometricCenter|Creator|NumberOf(Prims|NotecardLines|Sides)|Animation(List)?|(Camera|Local)(Pos|Rot)|Vel|Accel|Omega|Time(stamp|OfDay)|(Object|CenterOf)?Mass|MassMKS|Energy|Owner|(Owner)?Key|SunDirection|Texture(Offset|Scale|Rot)|Inventory(Number|Name|Key|Type|Creator|PermMask)|Permissions(Key)?|StartParameter|List(Length|EntryType)|Date|Agent(Size|Info|Language|List)|LandOwnerAt|NotecardLine|Script(Name|State))|(Get|Reset|GetAndReset)Time|PlaySound(Slave)?|LoopSound(Master|Slave)?|(Trigger|Stop|Preload)Sound|((Get|Delete)Sub|Insert)String|To(Upper|Lower)|Give(InventoryList|Money)|RezObject|(Stop)?LookAt|Sleep|CollisionFilter|(Take|Release)Controls|DetachFromAvatar|AttachToAvatar(Temp)?|InstantMessage|(GetNext)?Email|StopHover|MinEventDelay|RotLookAt|String(Length|Trim)|(Start|Stop)Animation|TargetOmega|Request(Experience)?Permissions|(Create|Break)Link|BreakAllLinks|(Give|Remove)Inventory|Water|PassTouches|Request(Agent|Inventory)Data|TeleportAgent(Home|GlobalCoords)?|ModifyLand|CollisionSound|ResetScript|MessageLinked|PushObject|PassCollisions|AxisAngle2Rot|Rot2(Axis|Angle)|A(cos|sin)|AngleBetween|AllowInventoryDrop|SubStringIndex|List2(CSV|Integer|Json|Float|String|Key|Vector|Rot|List(Strided)?)|DeleteSubList|List(Statistics|Sort|Randomize|(Insert|Find|Replace)List)|EdgeOfWorld|AdjustSoundVolume|Key2Name|TriggerSoundLimited|EjectFromLand|(CSV|ParseString)2List|OverMyLand|SameGroup|UnSit|Ground(Slope|Normal|Contour)|GroundRepel|(Set|Remove)VehicleFlags|SitOnLink|(AvatarOn)?(Link)?SitTarget|Script(Danger|Profiler)|Dialog|VolumeDetect|ResetOtherScript|RemoteLoadScriptPin|(Open|Close)RemoteDataChannel|SendRemoteData|RemoteDataReply|(Integer|String)ToBase64|XorBase64|Log(10)?|Base64To(String|Integer)|ParseStringKeepNulls|RezAtRoot|RequestSimulatorData|ForceMouselook|(Load|Release|(E|Une)scape)URL|ParcelMedia(CommandList|Query)|ModPow|MapDestination|(RemoveFrom|AddTo|Reset)Land(Pass|Ban)List|(Set|Clear)CameraParams|HTTP(Request|Response)|TextBox|DetectedTouch(UV|Face|Pos|(N|Bin)ormal|ST)|(MD5|SHA1|DumpList2)String|Request(Secure)?URL|Clear(Prim|Link)Media|(Link)?ParticleSystem|(Get|Request)(Username|DisplayName)|RegionSayTo|CastRay|GenerateKey|TransferLindenDollars|ManageEstateAccess|(Create|Delete)Character|ExecCharacterCmd|Evade|FleeFrom|NavigateTo|PatrolPoints|Pursue|UpdateCharacter|WanderWithin))\\b"
} , { className : "literal" , variants : [ {
begin : "\\b(PI|TWO_PI|PI_BY_TWO|DEG_TO_RAD|RAD_TO_DEG|SQRT2)\\b" } , {
begin : " \ \ b ( XP _ERROR _ ( EXPERIENCES _DISABLED | EXPERIENCE _ ( DISABLED | SUSPENDED ) | INVALID _ ( EXPERIENCE | PARAMETERS ) | KEY _NOT _FOUND | MATURITY _EXCEEDED | NONE | NOT _ ( FOUND | PERMITTED ( _LAND ) ? ) | NO _EXPERIENCE | QUOTA _EXCEEDED | RETRY _UPDATE | STORAGE _EXCEPTION | STORE _DISABLED | THROTTLED | UNKNOWN _ERROR ) | JSON _APPEND | STATUS _ ( PHYSICS | ROTATE _ [ XYZ ] | PHANTOM | SANDBOX | BLOCK _GRAB ( _OBJECT ) ? | ( DIE | RETURN ) _AT _EDGE | CAST _SHADOWS | OK | MALFORMED _PARAMS | TYPE _MISMATCH | BOUNDS _ERROR | NOT _ ( FOUND | SUPPORTED ) | INTERNAL _ERROR | WHITELIST _FAILED ) | AGENT ( _ ( BY _ ( LEGACY _ | USER ) NAME | FLYING | ATTACHMENTS | SCRIPTED | MOUSELOOK | SITTING | ON _OBJECT | AWAY | WALKING | IN _AIR | TYPING | CROUCHING | BUSY | ALWAYS _RUN | AUTOPILOT | LIST _ ( PARCEL ( _OWNER ) ? | REGION ) ) ) ? | CAMERA _ ( PITCH | DISTANCE | BEHINDNESS _ ( ANGLE | LAG ) | ( FOCUS | POSITION ) ( _ ( THRESHOLD | LOCKED | LAG ) ) ? | FOCUS _OFFSET | ACTIVE ) | ANIM _ON | LOOP | REVERSE | PING _PONG | SMOOTH | ROTATE | SCALE | ALL _SIDES | LINK _ ( ROOT | SET | ALL _ ( OTHERS | CHILDREN ) | THIS ) | ACTIVE | PASS ( IVE | _ ( ALWAYS | IF _NOT _HANDLED | NEVER ) ) | SCRIPTED | CONTROL _ ( FWD | BACK | ( ROT _ ) ? ( LEFT | RIGHT ) | UP | DOWN | ( ML _ ) ? LBUTTON ) | PERMISSION _ ( RETURN _OBJECTS | DEBIT | OVERRIDE _ANIMATIONS | SILENT _ESTATE _MANAGEMENT | TAKE _CONTROLS | TRIGGER _ANIMATION | ATTACH | CHANGE _LINKS | ( CONTROL | TRACK ) _CAMERA | TELEPORT ) | INVENTORY _ ( TEXTURE | SOUND | OBJECT | SCRIPT | LANDMARK | CLOTHING | NOTECARD | BODYPART | ANIMATION | GESTURE | ALL | NONE ) | CHANGED _ ( INVENTORY | COLOR | SHAPE | SCALE | TEXTURE | LINK | ALLOWED _DROP | OWNER | REGION ( _START ) ? | TELEPORT | MEDIA ) | OBJECT _ ( CLICK _ACTION | HOVER _HEIGHT | LAST _OWNER _ID | ( PHYSICS | SERVER | STREAMING ) _COST | UNKNOWN _DETAIL | CHARACTER _TIME | PHANTOM | PHYSICS | TEMP _ ( ATTACHED | ON _REZ ) | NAME | DESC | POS | PRIM _ ( COUNT | EQUIVALENCE ) | RETURN _ ( PARCEL ( _OWNER ) ? | REGION ) | REZZER _KEY | ROO ? T | VELOCITY | OMEGA | OWNER | GROUP ( _TAG ) ? | CREATOR | ATTACHED _ ( POINT | SLOTS _AVAILABLE ) | RENDER _WEIGHT | ( BODY _SHAPE | PATHFINDING ) _TYPE | ( RUNNING | TOTAL ) _SCRIPT _COUNT | TOTAL _INVENTORY _COUNT | SCRIPT _ ( MEMORY | TIME ) ) | TYPE _ ( INTEGER | FLOAT | STRING | KEY | VECTOR | ROTATION | INVALID ) | ( DEBUG | PUBLIC ) _CHANNEL | ATTACH _ ( AVATAR _CENTER | CHEST | HEAD | BACK | PELVIS | MOUTH | CHIN | NECK | NOSE | BELLY | [ LR ] ( SHOULDER | HAND | FOOT | EAR | EYE | [ UL ] ( ARM | LEG ) | HIP ) | ( LEFT | RIGHT ) _PEC | HUD _ ( CENTER _ [ 12 ] | TOP _ ( RIGHT | CENTER | LEFT ) | BOTTOM ( _ ( RIGHT | LEFT ) ) ? ) | [ LR ] HAND _RING1 | TAIL _ ( BASE | TIP ) | [ LR ] WING | FACE _ ( JAW | [ LR ] EAR | [ LR ] EYE | TOUNGE ) | GROIN | HIND _ [ LR ] FOOT ) | LAND _ ( LEVEL | RAISE | LOWER | SMOOTH | NOISE | REVERT ) | DATA _ ( ONLINE | NAME | BORN | SIM _ ( POS | STATUS | RATING ) | PAYINFO ) | PAYMENT _INFO _ ( ON _FILE | USED ) | REMOTE _DATA _ ( CHANNEL | REQUEST | REPLY ) | PSYS _ ( PART _ ( BF _ ( ZERO | ONE ( _MINUS _ ( DEST _COLOR | SOURCE _ ( ALPHA | COLOR ) ) ) ? | DEST _COLOR | SOURCE _ ( ALPHA | COLOR ) ) | BLEND _FUNC _ ( DEST | SOURCE ) | FLAGS | ( START | END ) _ ( COLOR | ALPHA | SCALE | GLOW ) | MAX _AGE | ( RIBBON | WIND | INTERP _ ( COLOR | SCALE ) | BOUNCE | FOLLOW _ ( SRC | VELOCITY ) | TARGET _ ( POS | LINEAR ) | EMISSIVE ) _MASK ) | SRC _ ( MAX _AGE | PATTERN | ANGLE _ ( BEGIN | END ) | BURST _ ( RATE | PART _COUNT | RADIUS | SPEED _ ( MIN | MAX ) ) | ACCEL | TEXTURE | TARGET _KEY | OMEGA | PATTERN _ ( DROP | EXPLODE | ANGLE ( _CONE ( _EMPTY ) ? ) ? ) ) ) | VEHICLE _ ( REFERENCE _FRAME | TYPE _ ( NONE | SLED | CAR | BOAT | AIRPLANE | BALLOON ) | ( LINEAR | ANGULAR ) _ ( FRICTION _TIMESCALE | MOTOR _DIRECTION ) | LINEAR _MOTOR _OFFSET | HOVER _ ( HEIGHT | EFFICIENCY | TIMESCALE ) | BUOYANCY | ( LINEAR | ANGULAR ) _ ( DEFLECTION _ ( EFFICIENCY | TIMESCALE ) | MOTOR _ ( DECAY _ ) ? TIMESCALE ) | VERTICAL _ATTRACTION _ ( EFFICIENCY | TIMESCALE ) | BANKING _ ( EFFICIENCY | MIX | TIMESCALE ) | FLAG _ ( NO _DEFLECTION _UP | LIMIT _ ( ROLL _ONLY | MOTOR _UP ) | HOVER _ ( ( WATER | TERRAIN | UP ) _ONLY | GLOBAL _HEIGHT ) | MOUSELOOK _ ( STEER | BANK ) | CAMERA _DECOUPLED ) ) | PRIM _ ( ALLOW _UNSIT | ALPHA _MODE ( _ ( BLEND | EMISSIVE | MASK | NONE ) ) ? | NORMAL | SPECULAR | TYPE ( _ ( BOX | CYLINDER | PRISM | SPHERE | TORUS | TUBE | RING | SCULPT ) ) ? | HOLE _ ( DEFAULT | CIRCLE | SQUARE | TRIANGLE ) | MATERIAL ( _ ( STONE | METAL | GLASS | WOOD | FLESH | PLASTIC | RUBBER ) ) ? | SHINY _ ( NONE | LOW | MEDIUM | HIGH ) | BUMP _ ( NONE | BRIGHT | DARK | WOOD | BARK | BRICKS | CHECKER | CONCRETE | TILE | STONE | DISKS | GRAVEL | BLOBS | SIDING | LARGETILE | STUCCO | SUCTION | WEAVE ) | TEXGEN _ ( DEFAULT | PLANAR ) | SCRIPTED _SIT _ONLY | SCULPT _ ( TYPE _ ( SPHERE | TORUS | PLANE | CYLINDER | MASK ) | FLAG _ ( MIRROR | INVERT ) ) | PHYSICS ( _ ( SHAPE _ ( CONVEX | NONE | PRIM | TYPE ) ) ) ? | ( POS | ROT ) _LOCAL | SLICE | TEXT | FLEXIBLE | POINT _LIGHT | TEMP _ON _REZ | PHANTOM | POSITION | SIT _TARGET | SIZE | ROTATION | TEXTURE | NAME | OMEGA | DESC | LINK _TARGET | COLOR | BUMP _SHINY | FULLBRIGHT | TEXGEN | GLOW | MEDIA _ ( ALT _IMAGE _ENABLE | CONTROLS | ( CURRENT | HOME ) _URL | AUTO _ ( LOOP | PLAY | SCALE | ZOOM ) | FIRST _CLICK _INTERACT | ( WIDTH | HEIGHT
} , { begin : "\\b(FALSE|TRUE)\\b" } , { begin : "\\b(ZERO_ROTATION)\\b" } , {
begin : "\\b(EOF|JSON_(ARRAY|DELETE|FALSE|INVALID|NULL|NUMBER|OBJECT|STRING|TRUE)|NULL_KEY|TEXTURE_(BLANK|DEFAULT|MEDIA|PLYWOOD|TRANSPARENT)|URL_REQUEST_(GRANTED|DENIED))\\b"
} , { begin : "\\b(ZERO_VECTOR|TOUCH_INVALID_(TEXCOORD|VECTOR))\\b" } ] } , {
className : "type" ,
begin : "\\b(integer|float|string|key|vector|quaternion|rotation|list)\\b" } ] } } ,
grmr _lua : e => { const t = "\\[=*\\[" , a = "\\]=*\\]" , n = { begin : t , end : a , contains : [ "self" ]
} , i = [ e . COMMENT ( "--(?!\\[=*\\[)" , "$" ) , e . COMMENT ( "--\\[=*\\[" , a , { contains : [ n ] ,
2021-10-19 23:53:22 -07:00
relevance : 10 } ) ] ; return { name : "Lua" , keywords : { $pattern : e . UNDERSCORE _IDENT _RE ,
literal : "true false nil" ,
keyword : "and break do else elseif end for goto if in local not or repeat return then until while" ,
built _in : "_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove"
} , contains : i . concat ( [ { className : "function" , beginKeywords : "function" , end : "\\)" ,
contains : [ e . inherit ( e . TITLE _MODE , {
begin : "([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*" } ) , { className : "params" ,
begin : "\\(" , endsWithParent : ! 0 , contains : i } ] . concat ( i )
} , e . C _NUMBER _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , { className : "string" ,
2022-01-15 21:29:41 -08:00
begin : t , end : a , contains : [ n ] , relevance : 5 } ] ) } } , grmr _makefile : e => { const t = {
2021-10-19 23:53:22 -07:00
className : "variable" , variants : [ { begin : "\\$\\(" + e . UNDERSCORE _IDENT _RE + "\\)" ,
2022-01-15 21:29:41 -08:00
contains : [ e . BACKSLASH _ESCAPE ] } , { begin : /\$[@%<?\^\+\*]/ } ] } , a = { className : "string" ,
begin : /"/ , end : /"/ , contains : [ e . BACKSLASH _ESCAPE , t ] } , n = { className : "variable" ,
2021-10-19 23:53:22 -07:00
begin : /\$\([\w-]+\s/ , end : /\)/ , keywords : {
built _in : "subst patsubst strip findstring filter filter-out sort word wordlist firstword lastword dir notdir suffix basename addsuffix addprefix join wildcard realpath abspath error warning shell origin flavor foreach if or and call eval file value"
2022-01-15 21:29:41 -08:00
} , contains : [ t ] } , i = { begin : "^" + e . UNDERSCORE _IDENT _RE + "\\s*(?=[:+?]?=)" } , r = {
className : "section" , begin : /^[^\s]+:/ , end : /$/ , contains : [ t ] } ; return {
2021-10-19 23:53:22 -07:00
name : "Makefile" , aliases : [ "mk" , "mak" , "make" ] , keywords : { $pattern : /[\w-]+/ ,
keyword : "define endef undefine ifdef ifndef ifeq ifneq else endif include -include sinclude override export unexport private vpath"
2022-01-15 21:29:41 -08:00
} , contains : [ e . HASH _COMMENT _MODE , t , a , n , i , { className : "meta" , begin : /^\.PHONY:/ ,
end : /$/ , keywords : { $pattern : /[\.\w]+/ , keyword : ".PHONY" } } , r ] } } ,
grmr _mathematica : e => {
const t = e . regex , a = t . either ( t . concat ( /([2-9]|[1-2]\d|[3][0-5])\^\^/ , /(\w*\.\w+|\w+\.\w*|\w+)/ ) , /(\d*\.\d+|\d+\.\d*|\d+)/ ) , n = t . either ( /``[+-]?(\d*\.\d+|\d+\.\d*|\d+)/ , /`([+-]?(\d*\.\d+|\d+\.\d*|\d+))?/ ) , i = {
className : "number" , relevance : 0 ,
begin : t . concat ( a , t . optional ( n ) , t . optional ( /\*\^[+-]?\d+/ ) )
} , r = /[a-zA-Z$][a-zA-Z0-9$]*/ , s = new Set ( Ie ) , o = { variants : [ {
className : "builtin-symbol" , begin : r , "on:begin" : ( e , t ) => {
s . has ( e [ 0 ] ) || t . ignoreMatch ( ) } } , { className : "symbol" , relevance : 0 , begin : r } ] } , l = {
className : "message-name" , relevance : 0 , begin : t . concat ( "::" , r ) } ; return {
name : "Mathematica" , aliases : [ "mma" , "wl" ] , classNameAliases : { brace : "punctuation" ,
pattern : "type" , slot : "type" , symbol : "variable" , "named-character" : "variable" ,
"builtin-symbol" : "built_in" , "message-name" : "string" } ,
contains : [ e . COMMENT ( /\(\*/ , /\*\)/ , { contains : [ "self" ] } ) , { className : "pattern" ,
relevance : 0 , begin : /([a-zA-Z$][a-zA-Z0-9$]*)?_+([a-zA-Z$][a-zA-Z0-9$]*)?/ } , {
className : "slot" , relevance : 0 , begin : /#[a-zA-Z$][a-zA-Z0-9$]*|#+[0-9]?/ } , l , o , {
className : "named-character" , begin : /\\\[[$a-zA-Z][$a-zA-Z0-9]+\]/
} , e . QUOTE _STRING _MODE , i , { className : "operator" , relevance : 0 ,
begin : /[+\-*/,;.:@~=><&|_`'^?!%]+/ } , { className : "brace" , relevance : 0 ,
begin : /[[\](){}]/ } ] } } , grmr _matlab : e => { var t = { relevance : 0 , contains : [ {
begin : "('|\\.')+" } ] } ; return { name : "Matlab" , keywords : {
keyword : "arguments break case catch classdef continue else elseif end enumeration events for function global if methods otherwise parfor persistent properties return spmd switch try while" ,
built _in : "sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i|0 inf nan isnan isinf isfinite j|0 why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson max min nanmax nanmin mean nanmean type table readtable writetable sortrows sort figure plot plot3 scatter scatter3 cellfun legend intersect ismember procrustes hold num2cell "
} , illegal : '(//|"|#|/\\*|\\s+/\\w+)' , contains : [ { className : "function" ,
beginKeywords : "function" , end : "$" , contains : [ e . UNDERSCORE _TITLE _MODE , {
className : "params" , variants : [ { begin : "\\(" , end : "\\)" } , { begin : "\\[" , end : "\\]" } ] } ]
} , { className : "built_in" , begin : /true|false/ , relevance : 0 , starts : t } , {
begin : "[a-zA-Z][a-zA-Z_0-9]*('|\\.')+" , relevance : 0 } , { className : "number" ,
begin : e . C _NUMBER _RE , relevance : 0 , starts : t } , { className : "string" , begin : "'" , end : "'" ,
contains : [ { begin : "''" } ] } , { begin : /\]|\}|\)/ , relevance : 0 , starts : t } , {
className : "string" , begin : '"' , end : '"' , contains : [ { begin : '""' } ] , starts : t
} , e . COMMENT ( "^\\s*%\\{\\s*$" , "^\\s*%\\}\\s*$" ) , e . COMMENT ( "%" , "$" ) ] } } ,
grmr _maxima : e => ( { name : "Maxima" , keywords : { $pattern : "[A-Za-z_%][0-9A-Za-z_%]*" ,
keyword : "if then else elseif for thru do while unless step in and or not" ,
literal : "true false unknown inf minf ind und %e %i %pi %phi %gamma" ,
built _in : " abasep abs absint absolute _real _time acos acosh acot acoth acsc acsch activate addcol add _edge add _edges addmatrices addrow add _vertex add _vertices adjacency _matrix adjoin adjoint af agd airy airy _ai airy _bi airy _dai airy _dbi algsys alg _type alias allroots alphacharp alphanumericp amortization % and annuity _fv annuity _pv antid antidiff AntiDifference append appendfile apply apply1 apply2 applyb1 apropos args arit _amortization arithmetic arithsum array arrayapply arrayinfo arraymake arraysetapply ascii asec asech asin asinh askinteger asksign assoc assoc _legendre _p assoc _legendre _q assume assume _external _byte _order asympa at atan atan2 atanh atensimp atom atvalue augcoefmatrix augmented _lagrangian _method av average _degree backtrace bars barsplot barsplot _description base64 base64 _decode bashindices batch batchload bc2 bdvac belln benefit _cost bern bernpoly bernstein _approx bernstein _expand bernstein _poly bessel bessel _i bessel _j bessel _k bessel _simplify bessel _y beta beta _incomplete beta _incomplete _generalized beta _incomplete _regularized bezout bfallroots bffac bf _find _root bf _fmin _cobyla bfhzeta bfloat bfloatp bfpsi bfpsi0 bfzeta biconnected _components bimetric binomial bipartition block blockmatrixp bode _gain bode _phase bothcoef box boxplot boxplot _description break bug _report build _info | 10 buildq build _sample burn cabs canform canten cardinality carg cartan cartesian _product catch cauchy _matrix cbffac cdf _bernoulli cdf _beta cdf _binomial cdf _cauchy cdf _chi2 cdf _continuous _uniform cdf _discrete _uniform cdf _exp cdf _f cdf _gamma cdf _general _finite _discrete cdf _geometric cdf _gumbel cdf _hypergeometric cdf _laplace cdf _logistic cdf _lognormal cdf _negative _binomial cdf _noncentral _chi2 cdf _noncentral _student _t cdf _normal cdf _pareto cdf _poisson cdf _rank _sum cdf _rayleigh cdf _signed _rank cdf _student _t cdf _weibull cdisplay ceiling central _moment cequal cequalignore cf cfdisrep cfexpand cgeodesic cgreaterp cgreaterpignore changename changevar chaosgame charat charfun charfun2 charlist charp charpoly chdir chebyshev _t chebyshev _u checkdiv check _overlaps chinese cholesky christof chromatic _index chromatic _number cint circulant _graph clear _edge _weight clear _rules clear _vertex _label clebsch _gordan clebsch _graph clessp clesspignore close closefile cmetric coeff coefmatrix cograd col collapse collectterms columnop columnspace columnswap columnvector combination combine comp2pui compare compfile compile compile _file complement _graph complete _bipartite _graph complete _graph complex _number _p components compose _functions concan concat conjugate conmetderiv connected _components connect _vertices cons constant constantp constituent constvalue cont2part content continuous _freq contortion contour _plot contract contract _edge contragrad contrib _ode convert coord copy copy _file copy _graph copylist copymatrix cor cos cosh cot coth cov cov1 covdiff covect covers crc24sum create _graph create _list csc csch csetup cspline ctaylor ct _coordsys ctransform ctranspose cube _graph cuboctahedron _graph cunlisp cv cycle _digraph cycle _graph cylindrical days360 dblint deactivate declare declare _constvalue declare _dimensions declare _fundamental _dimensions declare _fundamental _units declare _qty declare _translated declare _unit _conversion declare _units declare _weights decsym defcon define define _alt _display define _variable defint defmatch defrule defstruct deftaylor degree _sequence del delete deleten delta demo demoivre denom depends derivdegree derivlist describe desolve determinant dfloat dgauss _a dgauss _b dgeev dgemm dgeqrf dgesv dgesvd diag diagmatrix diag _matrix diagmatrixp diameter diff digitcharp dimacs _export dimacs _import dimension dimensionless dimensions dimensions _as _list direct directory discrete _freq disjoin disjointp disolate disp dispcon dispform dispfun dispJordan display disprule dispterms distrib divide divisors divsum dkummer _m dkummer _u dlange dodecahedron _graph dotproduct dotsimp dpart draw draw2d draw3d drawdf draw _file draw _graph dscalar echelon edge _coloring edge _connectivity edges eigens _by _jacobi eigenvalues eigenvectors eighth einstein ei
symbol : "_ __ %|0 %%|0" } , contains : [ { className : "comment" , begin : "/\\*" , end : "\\*/" ,
contains : [ "self" ] } , e . QUOTE _STRING _MODE , { className : "number" , relevance : 0 ,
variants : [ { begin : "\\b(\\d+|\\d+\\.|\\.\\d+|\\d+\\.\\d+)[Ee][-+]?\\d+\\b" } , {
begin : "\\b(\\d+|\\d+\\.|\\.\\d+|\\d+\\.\\d+)[Bb][-+]?\\d+\\b" , relevance : 10 } , {
begin : "\\b(\\.\\d+|\\d+\\.\\d+)\\b" } , { begin : "\\b(\\d+|0[0-9A-Za-z]+)\\.?\\b" } ]
} ] , illegal : /@/ } ) , grmr _mel : e => ( { name : "MEL" ,
keywords : " int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg _to _rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRe
illegal : "</" , contains : [ e . C _NUMBER _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , {
className : "string" , begin : "`" , end : "`" , contains : [ e . BACKSLASH _ESCAPE ] } , {
begin : /[$%@](\^\w\b|#\w+|[^\s\w{]|\{\w+\}|\w+)/
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } ) , grmr _mercury : e => {
const t = e . COMMENT ( "%" , "$" ) , a = e . inherit ( e . APOS _STRING _MODE , { relevance : 0
} ) , n = e . inherit ( e . QUOTE _STRING _MODE , { relevance : 0 } )
; return n . contains = n . contains . slice ( ) , n . contains . push ( { className : "subst" ,
begin : "\\\\[abfnrtv]\\|\\\\x[0-9a-fA-F]*\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]" ,
relevance : 0 } ) , { name : "Mercury" , aliases : [ "m" , "moo" ] , keywords : {
keyword : "module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure" ,
meta : "inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing" ,
built _in : "some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure"
} , contains : [ { className : "built_in" , variants : [ { begin : "<=>" } , { begin : "<=" ,
relevance : 0 } , { begin : "=>" , relevance : 0 } , { begin : "/\\\\" } , { begin : "\\\\/" } ] } , {
className : "built_in" , variants : [ { begin : ":-\\|--\x3e" } , { begin : "=" , relevance : 0 } ]
} , t , e . C _BLOCK _COMMENT _MODE , { className : "number" , begin : "0'.\\|0[box][0-9a-fA-F]*"
} , e . NUMBER _MODE , a , n , { begin : /:-/ } , { begin : /\.$/ } ] } } , grmr _mipsasm : e => ( {
name : "MIPS Assembly" , case _insensitive : ! 0 , aliases : [ "mips" ] , keywords : {
$pattern : "\\.?" + e . IDENT _RE ,
meta : ".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .ltorg " ,
built _in : "$0 $1 $2 $3 $4 $5 $6 $7 $8 $9 $10 $11 $12 $13 $14 $15 $16 $17 $18 $19 $20 $21 $22 $23 $24 $25 $26 $27 $28 $29 $30 $31 zero at v0 v1 a0 a1 a2 a3 a4 a5 a6 a7 t0 t1 t2 t3 t4 t5 t6 t7 t8 t9 s0 s1 s2 s3 s4 s5 s6 s7 s8 k0 k1 gp sp fp ra $f0 $f1 $f2 $f2 $f4 $f5 $f6 $f7 $f8 $f9 $f10 $f11 $f12 $f13 $f14 $f15 $f16 $f17 $f18 $f19 $f20 $f21 $f22 $f23 $f24 $f25 $f26 $f27 $f28 $f29 $f30 $f31 Context Random EntryLo0 EntryLo1 Context PageMask Wired EntryHi HWREna BadVAddr Count Compare SR IntCtl SRSCtl SRSMap Cause EPC PRId EBase Config Config1 Config2 Config3 LLAddr Debug DEPC DESAVE CacheErr ECC ErrorEPC TagLo DataLo TagHi DataHi WatchLo WatchHi PerfCtl PerfCnt "
} , contains : [ { className : "keyword" ,
begin : "\\b(addi?u?|andi?|b(al)?|beql?|bgez(al)?l?|bgtzl?|blezl?|bltz(al)?l?|bnel?|cl[oz]|divu?|ext|ins|j(al)?|jalr(\\.hb)?|jr(\\.hb)?|lbu?|lhu?|ll|lui|lw[lr]?|maddu?|mfhi|mflo|movn|movz|move|msubu?|mthi|mtlo|mul|multu?|nop|nor|ori?|rotrv?|sb|sc|se[bh]|sh|sllv?|slti?u?|srav?|srlv?|subu?|sw[lr]?|xori?|wsbh|abs\\.[sd]|add\\.[sd]|alnv.ps|bc1[ft]l?|c\\.(s?f|un|u?eq|[ou]lt|[ou]le|ngle?|seq|l[et]|ng[et])\\.[sd]|(ceil|floor|round|trunc)\\.[lw]\\.[sd]|cfc1|cvt\\.d\\.[lsw]|cvt\\.l\\.[dsw]|cvt\\.ps\\.s|cvt\\.s\\.[dlw]|cvt\\.s\\.p[lu]|cvt\\.w\\.[dls]|div\\.[ds]|ldx?c1|luxc1|lwx?c1|madd\\.[sd]|mfc1|mov[fntz]?\\.[ds]|msub\\.[sd]|mth?c1|mul\\.[ds]|neg\\.[ds]|nmadd\\.[ds]|nmsub\\.[ds]|p[lu][lu]\\.ps|recip\\.fmt|r?sqrt\\.[ds]|sdx?c1|sub\\.[ds]|suxc1|swx?c1|break|cache|d?eret|[de]i|ehb|mfc0|mtc0|pause|prefx?|rdhwr|rdpgpr|sdbbp|ssnop|synci?|syscall|teqi?|tgei?u?|tlb(p|r|w[ir])|tlti?u?|tnei?|wait|wrpgpr)" ,
end : "\\s"
} , e . COMMENT ( "[;#](?!\\s*$)" , "$" ) , e . C _BLOCK _COMMENT _MODE , e . QUOTE _STRING _MODE , {
className : "string" , begin : "'" , end : "[^\\\\]'" , relevance : 0 } , { className : "title" ,
begin : "\\|" , end : "\\|" , illegal : "\\n" , relevance : 0 } , { className : "number" , variants : [ {
begin : "0x[0-9a-f]+" } , { begin : "\\b-?\\d+" } ] , relevance : 0 } , { className : "symbol" ,
variants : [ { begin : "^\\s*[a-z_\\.\\$][a-z0-9_\\.\\$]+:" } , { begin : "^\\s*[0-9]+:" } , {
begin : "[0-9]+[bf]" } ] , relevance : 0 } ] , illegal : /\// } ) , grmr _mizar : e => ( { name : "Mizar" ,
keywords : "environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity" ,
contains : [ e . COMMENT ( "::" , "$" ) ] } ) , grmr _perl : e => {
const t = e . regex , a = /[dualxmsipngr]{0,12}/ , n = { $pattern : /[\w.]+/ ,
2021-10-19 23:53:22 -07:00
keyword : "abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot close closedir connect continue cos crypt dbmclose dbmopen defined delete die do dump each else elsif endgrent endhostent endnetent endprotoent endpwent endservent eof eval exec exists exit exp fcntl fileno flock for foreach fork format formline getc getgrent getgrgid getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr getnetbyname getnetent getpeername getpgrp getpriority getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid getservbyname getservbyport getservent getsockname getsockopt given glob gmtime goto grep gt hex if index int ioctl join keys kill last lc lcfirst length link listen local localtime log lstat lt ma map mkdir msgctl msgget msgrcv msgsnd my ne next no not oct open opendir or ord our pack package pipe pop pos print printf prototype push q|0 qq quotemeta qw qx rand read readdir readline readlink readpipe recv redo ref rename require reset return reverse rewinddir rindex rmdir say scalar seek seekdir select 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 state study sub substr symlink syscall sysopen sysread sysseek system syswrite tell telldir tie tied time times tr truncate uc ucfirst umask undef unless unlink unpack unshift untie until use utime values vec wait waitpid wantarray warn when while write x|0 xor y|0"
2022-01-15 21:29:41 -08:00
} , i = { className : "subst" , begin : "[$@]\\{" , end : "\\}" , keywords : n } , r = { begin : /->\{/ ,
2021-10-19 23:53:22 -07:00
end : /\}/ } , s = { variants : [ { begin : /\$\d/ } , {
2022-01-15 21:29:41 -08:00
begin : t . concat ( /[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/ , "(?![A-Za-z])(?![@$%])" )
2021-10-19 23:53:22 -07:00
} , { begin : /[$%@][^\s\w{]/ , relevance : 0 } ]
2022-01-15 21:29:41 -08:00
} , o = [ e . BACKSLASH _ESCAPE , i , s ] , l = [ /!/ , /\// , /\|/ , /\?/ , /'/ , /"/ , /#/ ] , _ = ( e , n , i = "\\1" ) => {
const r = "\\1" === i ? i : t . concat ( i , n )
; return t . concat ( t . concat ( "(?:" , e , ")" ) , n , /(?:\\.|[^\\\/])*?/ , r , /(?:\\.|[^\\\/])*?/ , i , a )
} , c = ( e , n , i ) => t . concat ( t . concat ( "(?:" , e , ")" ) , n , /(?:\\.|[^\\\/])*?/ , i , a ) , d = [ s , e . HASH _COMMENT _MODE , e . COMMENT ( /^=\w/ , /=cut/ , {
2021-10-19 23:53:22 -07:00
endsWithParent : ! 0 } ) , r , { className : "string" , contains : o , variants : [ {
begin : "q[qwxr]?\\s*\\(" , end : "\\)" , relevance : 5 } , { begin : "q[qwxr]?\\s*\\[" ,
end : "\\]" , relevance : 5 } , { begin : "q[qwxr]?\\s*\\{" , end : "\\}" , relevance : 5 } , {
begin : "q[qwxr]?\\s*\\|" , end : "\\|" , relevance : 5 } , { begin : "q[qwxr]?\\s*<" , end : ">" ,
relevance : 5 } , { begin : "qw\\s+q" , end : "q" , relevance : 5 } , { begin : "'" , end : "'" ,
contains : [ e . BACKSLASH _ESCAPE ] } , { begin : '"' , end : '"' } , { begin : "`" , end : "`" ,
contains : [ e . BACKSLASH _ESCAPE ] } , { begin : /\{\w+\}/ , relevance : 0 } , {
begin : "-?\\w+\\s*=>" , relevance : 0 } ] } , { className : "number" ,
begin : "(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b" ,
relevance : 0 } , {
begin : "(\\/\\/|" + e . RE _STARTERS _RE + "|\\b(split|return|print|reverse|grep)\\b)\\s*" ,
keywords : "split return print reverse grep" , relevance : 0 ,
contains : [ e . HASH _COMMENT _MODE , { className : "regexp" , variants : [ {
2022-01-15 21:29:41 -08:00
begin : _ ( "s|tr|y" , t . either ( ... l , { capture : ! 0 } ) ) } , { begin : _ ( "s|tr|y" , "\\(" , "\\)" ) } , {
begin : _ ( "s|tr|y" , "\\[" , "\\]" ) } , { begin : _ ( "s|tr|y" , "\\{" , "\\}" ) } ] , relevance : 2 } , {
2021-10-19 23:53:22 -07:00
className : "regexp" , variants : [ { begin : /(m|qr)\/\// , relevance : 0 } , {
2022-01-15 21:29:41 -08:00
begin : c ( "(?:m|qr)?" , /\// , /\// ) } , { begin : c ( "m|qr" , t . either ( ... l , { capture : ! 0
} ) , /\1/ ) } , { begin : c ( "m|qr" , /\(/ , /\)/ ) } , { begin : c ( "m|qr" , /\[/ , /\]/ ) } , {
begin : c ( "m|qr" , /\{/ , /\}/ ) } ] } ] } , { className : "function" , beginKeywords : "sub" ,
2021-10-19 23:53:22 -07:00
end : "(\\s*\\(.*?\\))?[;{]" , excludeEnd : ! 0 , relevance : 5 , contains : [ e . TITLE _MODE ] } , {
begin : "-\\w\\b" , relevance : 0 } , { begin : "^__DATA__$" , end : "^__END__$" ,
subLanguage : "mojolicious" , contains : [ { begin : "^@@.*" , end : "$" , className : "comment" } ]
2022-01-15 21:29:41 -08:00
} ] ; return i . contains = d , r . contains = d , { name : "Perl" , aliases : [ "pl" , "pm" ] , keywords : n ,
contains : d } } , grmr _mojolicious : e => ( { name : "Mojolicious" , subLanguage : "xml" ,
contains : [ { className : "meta" , begin : "^__(END|DATA)__$" } , {
begin : "^\\s*%{1,2}={0,2}" , end : "$" , subLanguage : "perl" } , { begin : "<%{1,2}={0,2}" ,
end : "={0,1}%>" , subLanguage : "perl" , excludeBegin : ! 0 , excludeEnd : ! 0 } ] } ) ,
grmr _monkey : e => { const t = { className : "number" , relevance : 0 , variants : [ {
begin : "[$][a-fA-F0-9]+" } , e . NUMBER _MODE ] } , a = { variants : [ {
match : [ /(function|method)/ , /\s+/ , e . UNDERSCORE _IDENT _RE ] } ] , scope : { 1 : "keyword" ,
3 : "title.function" } } , n = { variants : [ {
match : [ /(class|interface|extends|implements)/ , /\s+/ , e . UNDERSCORE _IDENT _RE ] } ] ,
scope : { 1 : "keyword" , 3 : "title.class" } } ; return { name : "Monkey" , case _insensitive : ! 0 ,
keywords : {
keyword : [ "public" , "private" , "property" , "continue" , "exit" , "extern" , "new" , "try" , "catch" , "eachin" , "not" , "abstract" , "final" , "select" , "case" , "default" , "const" , "local" , "global" , "field" , "end" , "if" , "then" , "else" , "elseif" , "endif" , "while" , "wend" , "repeat" , "until" , "forever" , "for" , "to" , "step" , "next" , "return" , "module" , "inline" , "throw" , "import" , "and" , "or" , "shl" , "shr" , "mod" ] ,
built _in : [ "DebugLog" , "DebugStop" , "Error" , "Print" , "ACos" , "ACosr" , "ASin" , "ASinr" , "ATan" , "ATan2" , "ATan2r" , "ATanr" , "Abs" , "Abs" , "Ceil" , "Clamp" , "Clamp" , "Cos" , "Cosr" , "Exp" , "Floor" , "Log" , "Max" , "Max" , "Min" , "Min" , "Pow" , "Sgn" , "Sgn" , "Sin" , "Sinr" , "Sqrt" , "Tan" , "Tanr" , "Seed" , "PI" , "HALFPI" , "TWOPI" ] ,
literal : [ "true" , "false" , "null" ] } , illegal : /\/\*/ ,
contains : [ e . COMMENT ( "#rem" , "#end" ) , e . COMMENT ( "'" , "$" , { relevance : 0 } ) , a , n , {
className : "variable.language" , begin : /\b(self|super)\b/ } , { className : "meta" ,
begin : /\s*#/ , end : "$" , keywords : { keyword : "if else elseif endif end then" } } , {
match : [ /^\s*/ , /strict\b/ ] , scope : { 2 : "meta" } } , { beginKeywords : "alias" , end : "=" ,
contains : [ e . UNDERSCORE _TITLE _MODE ] } , e . QUOTE _STRING _MODE , t ] } } ,
grmr _moonscript : e => { const t = {
keyword : "if then not for in while do return else elseif break continue switch and or unless when class extends super local import export from using" ,
literal : "true false nil" ,
built _in : "_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table"
} , a = "[A-Za-z$_][0-9A-Za-z$_]*" , n = { className : "subst" , begin : /#\{/ , end : /\}/ ,
keywords : t } , i = [ e . inherit ( e . C _NUMBER _MODE , { starts : { end : "(\\s*/)?" , relevance : 0 }
} ) , { className : "string" , variants : [ { begin : /'/ , end : /'/ ,
contains : [ e . BACKSLASH _ESCAPE ] } , { begin : /"/ , end : /"/ ,
contains : [ e . BACKSLASH _ESCAPE , n ] } ] } , { className : "built_in" , begin : "@__" + e . IDENT _RE
} , { begin : "@" + e . IDENT _RE } , { begin : e . IDENT _RE + "\\\\" + e . IDENT _RE } ] ; n . contains = i
; const r = e . inherit ( e . TITLE _MODE , { begin : a } ) , s = "(\\(.*\\)\\s*)?\\B[-=]>" , o = {
className : "params" , begin : "\\([^\\(]" , returnBegin : ! 0 , contains : [ { begin : /\(/ ,
end : /\)/ , keywords : t , contains : [ "self" ] . concat ( i ) } ] } ; return { name : "MoonScript" ,
aliases : [ "moon" ] , keywords : t , illegal : /\/\*/ ,
contains : i . concat ( [ e . COMMENT ( "--" , "$" ) , { className : "function" ,
begin : "^\\s*" + a + "\\s*=\\s*" + s , end : "[-=]>" , returnBegin : ! 0 , contains : [ r , o ] } , {
begin : /[\(,:=]\s*/ , relevance : 0 , contains : [ { className : "function" , begin : s ,
end : "[-=]>" , returnBegin : ! 0 , contains : [ o ] } ] } , { className : "class" ,
beginKeywords : "class" , end : "$" , illegal : /[:="\[\]]/ , contains : [ {
beginKeywords : "extends" , endsWithParent : ! 0 , illegal : /[:="\[\]]/ , contains : [ r ] } , r ]
} , { className : "name" , begin : a + ":" , end : ":" , returnBegin : ! 0 , returnEnd : ! 0 , relevance : 0
} ] ) } } , grmr _n1ql : e => ( { name : "N1QL" , case _insensitive : ! 0 , contains : [ {
beginKeywords : "build create index delete drop explain infer|10 insert merge prepare select update upsert|10" ,
end : /;/ , keywords : {
keyword : [ "all" , "alter" , "analyze" , "and" , "any" , "array" , "as" , "asc" , "begin" , "between" , "binary" , "boolean" , "break" , "bucket" , "build" , "by" , "call" , "case" , "cast" , "cluster" , "collate" , "collection" , "commit" , "connect" , "continue" , "correlate" , "cover" , "create" , "database" , "dataset" , "datastore" , "declare" , "decrement" , "delete" , "derived" , "desc" , "describe" , "distinct" , "do" , "drop" , "each" , "element" , "else" , "end" , "every" , "except" , "exclude" , "execute" , "exists" , "explain" , "fetch" , "first" , "flatten" , "for" , "force" , "from" , "function" , "grant" , "group" , "gsi" , "having" , "if" , "ignore" , "ilike" , "in" , "include" , "increment" , "index" , "infer" , "inline" , "inner" , "insert" , "intersect" , "into" , "is" , "join" , "key" , "keys" , "keyspace" , "known" , "last" , "left" , "let" , "letting" , "like" , "limit" , "lsm" , "map" , "mapping" , "matched" , "materialized" , "merge" , "minus" , "namespace" , "nest" , "not" , "number" , "object" , "offset" , "on" , "option" , "or" , "order" , "outer" , "over" , "parse" , "partition" , "password" , "path" , "pool" , "prepare" , "primary" , "private" , "privilege" , "procedure" , "public" , "raw" , "realm" , "reduce" , "rename" , "return" , "returning" , "revoke" , "right" , "role" , "rollback" , "satisfies" , "schema" , "select" , "self" , "semi" , "set" , "show" , "some" , "start" , "statistics" , "string" , "system" , "then" , "to" , "transaction" , "trigger" , "truncate" , "under" , "union" , "unique" , "unknown" , "unnest" , "unset" , "update" , "upsert" , "use" , "user" , "using" , "validate" , "value" , "valued" , "values" , "via" , "view" , "when" , "where" , "while" , "with" , "within" , "work" , "xor" ] ,
literal : [ "true" , "false" , "null" , "missing|5" ] ,
built _in : [ "array_agg" , "array_append" , "array_concat" , "array_contains" , "array_count" , "array_distinct" , "array_ifnull" , "array_length" , "array_max" , "array_min" , "array_position" , "array_prepend" , "array_put" , "array_range" , "array_remove" , "array_repeat" , "array_replace" , "array_reverse" , "array_sort" , "array_sum" , "avg" , "count" , "max" , "min" , "sum" , "greatest" , "least" , "ifmissing" , "ifmissingornull" , "ifnull" , "missingif" , "nullif" , "ifinf" , "ifnan" , "ifnanorinf" , "naninf" , "neginfif" , "posinfif" , "clock_millis" , "clock_str" , "date_add_millis" , "date_add_str" , "date_diff_millis" , "date_diff_str" , "date_part_millis" , "date_part_str" , "date_trunc_millis" , "date_trunc_str" , "duration_to_str" , "millis" , "str_to_millis" , "millis_to_str" , "millis_to_utc" , "millis_to_zone_name" , "now_millis" , "now_str" , "str_to_duration" , "str_to_utc" , "str_to_zone_name" , "decode_json" , "encode_json" , "encoded_size" , "poly_length" , "base64" , "base64_encode" , "base64_decode" , "meta" , "uuid" , "abs" , "acos" , "asin" , "atan" , "atan2" , "ceil" , "cos" , "degrees" , "e" , "exp" , "ln" , "log" , "floor" , "pi" , "power" , "radians" , "random" , "round" , "sign" , "sin" , "sqrt" , "tan" , "trunc" , "object_length" , "object_names" , "object_pairs" , "object_inner_pairs" , "object_values" , "object_inner_values" , "object_add" , "object_put" , "object_remove" , "object_unwrap" , "regexp_contains" , "regexp_like" , "regexp_position" , "regexp_replace" , "contains" , "initcap" , "length" , "lower" , "ltrim" , "position" , "repeat" , "replace" , "rtrim" , "split" , "substr" , "title" , "trim" , "upper" , "isarray" , "isatom" , "isboolean" , "isnumber" , "isobject" , "isstring" , "type" , "toarray" , "toatom" , "toboolean" , "tonumber" , "toobject" , "tostring" ]
} , contains : [ { className : "string" , begin : "'" , end : "'" , contains : [ e . BACKSLASH _ESCAPE ]
} , { className : "string" , begin : '"' , end : '"' , contains : [ e . BACKSLASH _ESCAPE ] } , {
className : "symbol" , begin : "`" , end : "`" , contains : [ e . BACKSLASH _ESCAPE ]
} , e . C _NUMBER _MODE , e . C _BLOCK _COMMENT _MODE ] } , e . C _BLOCK _COMMENT _MODE ] } ) ,
grmr _nestedtext : e => ( { name : "Nested Text" , aliases : [ "nt" ] ,
contains : [ e . inherit ( e . HASH _COMMENT _MODE , { begin : /^\s*(?=#)/ , excludeBegin : ! 0 } ) , {
variants : [ { match : [ /^\s*/ , /-/ , /[ ]/ , /.*$/ ] } , { match : [ /^\s*/ , /-$/ ] } ] , className : {
2 : "bullet" , 4 : "string" } } , { match : [ /^\s*/ , />/ , /[ ]/ , /.*$/ ] , className : {
2 : "punctuation" , 4 : "string" } } , { match : [ /^\s*(?=\S)/ , /[^:]+/ , /:\s*/ , /$/ ] ,
className : { 2 : "attribute" , 3 : "punctuation" } } , {
match : [ /^\s*(?=\S)/ , /[^:]*[^: ]/ , /[ ]*:/ , /[ ]/ , /.*$/ ] , className : { 2 : "attribute" ,
3 : "punctuation" , 5 : "string" } } ] } ) , grmr _nginx : e => { const t = e . regex , a = {
className : "variable" , variants : [ { begin : /\$\d+/ } , { begin : /\$\{\w+\}/ } , {
begin : t . concat ( /[$@]/ , e . UNDERSCORE _IDENT _RE ) } ] } , n = { endsWithParent : ! 0 , keywords : {
$pattern : /[a-z_]{2,}|\/dev\/poll/ ,
literal : [ "on" , "off" , "yes" , "no" , "true" , "false" , "none" , "blocked" , "debug" , "info" , "notice" , "warn" , "error" , "crit" , "select" , "break" , "last" , "permanent" , "redirect" , "kqueue" , "rtsig" , "epoll" , "poll" , "/dev/poll" ]
} , relevance : 0 , illegal : "=>" , contains : [ e . HASH _COMMENT _MODE , { className : "string" ,
contains : [ e . BACKSLASH _ESCAPE , a ] , variants : [ { begin : /"/ , end : /"/ } , { begin : /'/ , end : /'/
} ] } , { begin : "([a-z]+):/" , end : "\\s" , endsWithParent : ! 0 , excludeEnd : ! 0 , contains : [ a ]
} , { className : "regexp" , contains : [ e . BACKSLASH _ESCAPE , a ] , variants : [ { begin : "\\s\\^" ,
end : "\\s|\\{|;" , returnEnd : ! 0 } , { begin : "~\\*?\\s+" , end : "\\s|\\{|;" , returnEnd : ! 0 } , {
begin : "\\*(\\.[a-z\\-]+)+" } , { begin : "([a-z\\-]+\\.)+\\*" } ] } , { className : "number" ,
begin : "\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b" } , {
className : "number" , begin : "\\b\\d+[kKmMgGdshdwy]?\\b" , relevance : 0 } , a ] } ; return {
name : "Nginx config" , aliases : [ "nginxconf" ] , contains : [ e . HASH _COMMENT _MODE , {
beginKeywords : "upstream location" , end : /;|\{/ , contains : n . contains , keywords : {
section : "upstream location" } } , { className : "section" ,
begin : t . concat ( e . UNDERSCORE _IDENT _RE + t . lookahead ( /\s+\{/ ) ) , relevance : 0 } , {
begin : t . lookahead ( e . UNDERSCORE _IDENT _RE + "\\s" ) , end : ";|\\{" , contains : [ {
className : "attribute" , begin : e . UNDERSCORE _IDENT _RE , starts : n } ] , relevance : 0 } ] ,
illegal : "[^\\s\\}\\{]" } } , grmr _nim : e => ( { name : "Nim" , keywords : {
keyword : [ "addr" , "and" , "as" , "asm" , "bind" , "block" , "break" , "case" , "cast" , "const" , "continue" , "converter" , "discard" , "distinct" , "div" , "do" , "elif" , "else" , "end" , "enum" , "except" , "export" , "finally" , "for" , "from" , "func" , "generic" , "guarded" , "if" , "import" , "in" , "include" , "interface" , "is" , "isnot" , "iterator" , "let" , "macro" , "method" , "mixin" , "mod" , "nil" , "not" , "notin" , "object" , "of" , "or" , "out" , "proc" , "ptr" , "raise" , "ref" , "return" , "shared" , "shl" , "shr" , "static" , "template" , "try" , "tuple" , "type" , "using" , "var" , "when" , "while" , "with" , "without" , "xor" , "yield" ] ,
literal : [ "true" , "false" ] ,
type : [ "int" , "int8" , "int16" , "int32" , "int64" , "uint" , "uint8" , "uint16" , "uint32" , "uint64" , "float" , "float32" , "float64" , "bool" , "char" , "string" , "cstring" , "pointer" , "expr" , "stmt" , "void" , "auto" , "any" , "range" , "array" , "openarray" , "varargs" , "seq" , "set" , "clong" , "culong" , "cchar" , "cschar" , "cshort" , "cint" , "csize" , "clonglong" , "cfloat" , "cdouble" , "clongdouble" , "cuchar" , "cushort" , "cuint" , "culonglong" , "cstringarray" , "semistatic" ] ,
built _in : [ "stdin" , "stdout" , "stderr" , "result" ] } , contains : [ { className : "meta" ,
begin : /\{\./ , end : /\.\}/ , relevance : 10 } , { className : "string" , begin : /[a-zA-Z]\w*"/ ,
end : /"/ , contains : [ { begin : /""/ } ] } , { className : "string" , begin : /([a-zA-Z]\w*)?"""/ ,
end : /"""/ } , e . QUOTE _STRING _MODE , { className : "type" , begin : /\b[A-Z]\w+\b/ ,
relevance : 0 } , { className : "number" , relevance : 0 , variants : [ {
begin : /\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/ } , {
begin : /\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/ } , {
begin : /\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/ } , {
begin : /\b(\d[_\d]*)('?[iIuUfF](8|16|32|64))?/ } ] } , e . HASH _COMMENT _MODE ] } ) ,
grmr _nix : e => { const t = {
keyword : [ "rec" , "with" , "let" , "in" , "inherit" , "assert" , "if" , "else" , "then" ] ,
literal : [ "true" , "false" , "or" , "and" , "null" ] ,
built _in : [ "import" , "abort" , "baseNameOf" , "dirOf" , "isNull" , "builtins" , "map" , "removeAttrs" , "throw" , "toString" , "derivation" ]
} , a = { className : "subst" , begin : /\$\{/ , end : /\}/ , keywords : t } , n = { className : "string" ,
contains : [ a ] , variants : [ { begin : "''" , end : "''" } , { begin : '"' , end : '"' } ]
} , i = [ e . NUMBER _MODE , e . HASH _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , n , {
begin : /[a-zA-Z0-9-_]+(\s*=)/ , returnBegin : ! 0 , relevance : 0 , contains : [ {
className : "attr" , begin : /\S+/ } ] } ] ; return a . contains = i , { name : "Nix" ,
aliases : [ "nixos" ] , keywords : t , contains : i } } , grmr _node _repl : e => ( { name : "Node REPL" ,
contains : [ { className : "meta" , starts : { end : / |$/ , starts : { end : "$" ,
subLanguage : "javascript" } } , variants : [ { begin : /^>(?=[ ]|$)/ } , {
begin : /^\.\.\.(?=[ ]|$)/ } ] } ] } ) , grmr _nsis : e => { const t = e . regex , a = {
className : "variable.constant" ,
begin : t . concat ( /\$/ , t . either ( "ADMINTOOLS" , "APPDATA" , "CDBURN_AREA" , "CMDLINE" , "COMMONFILES32" , "COMMONFILES64" , "COMMONFILES" , "COOKIES" , "DESKTOP" , "DOCUMENTS" , "EXEDIR" , "EXEFILE" , "EXEPATH" , "FAVORITES" , "FONTS" , "HISTORY" , "HWNDPARENT" , "INSTDIR" , "INTERNET_CACHE" , "LANGUAGE" , "LOCALAPPDATA" , "MUSIC" , "NETHOOD" , "OUTDIR" , "PICTURES" , "PLUGINSDIR" , "PRINTHOOD" , "PROFILE" , "PROGRAMFILES32" , "PROGRAMFILES64" , "PROGRAMFILES" , "QUICKLAUNCH" , "RECENT" , "RESOURCES_LOCALIZED" , "RESOURCES" , "SENDTO" , "SMPROGRAMS" , "SMSTARTUP" , "STARTMENU" , "SYSDIR" , "TEMP" , "TEMPLATES" , "VIDEOS" , "WINDIR" ) )
} , n = { className : "variable" , begin : /\$+\{[\!\w.:-]+\}/ } , i = { className : "variable" ,
begin : /\$+\w[\w\.]*/ , illegal : /\(\)\{\}/ } , r = { className : "variable" ,
begin : /\$+\([\w^.:!-]+\)/ } , s = { className : "params" ,
begin : t . either ( "ARCHIVE" , "FILE_ATTRIBUTE_ARCHIVE" , "FILE_ATTRIBUTE_NORMAL" , "FILE_ATTRIBUTE_OFFLINE" , "FILE_ATTRIBUTE_READONLY" , "FILE_ATTRIBUTE_SYSTEM" , "FILE_ATTRIBUTE_TEMPORARY" , "HKCR" , "HKCU" , "HKDD" , "HKEY_CLASSES_ROOT" , "HKEY_CURRENT_CONFIG" , "HKEY_CURRENT_USER" , "HKEY_DYN_DATA" , "HKEY_LOCAL_MACHINE" , "HKEY_PERFORMANCE_DATA" , "HKEY_USERS" , "HKLM" , "HKPD" , "HKU" , "IDABORT" , "IDCANCEL" , "IDIGNORE" , "IDNO" , "IDOK" , "IDRETRY" , "IDYES" , "MB_ABORTRETRYIGNORE" , "MB_DEFBUTTON1" , "MB_DEFBUTTON2" , "MB_DEFBUTTON3" , "MB_DEFBUTTON4" , "MB_ICONEXCLAMATION" , "MB_ICONINFORMATION" , "MB_ICONQUESTION" , "MB_ICONSTOP" , "MB_OK" , "MB_OKCANCEL" , "MB_RETRYCANCEL" , "MB_RIGHT" , "MB_RTLREADING" , "MB_SETFOREGROUND" , "MB_TOPMOST" , "MB_USERICON" , "MB_YESNO" , "NORMAL" , "OFFLINE" , "READONLY" , "SHCTX" , "SHELL_CONTEXT" , "SYSTEM|TEMPORARY" )
} , o = { className : "keyword" ,
begin : t . concat ( /!/ , t . either ( "addincludedir" , "addplugindir" , "appendfile" , "cd" , "define" , "delfile" , "echo" , "else" , "endif" , "error" , "execute" , "finalize" , "getdllversion" , "gettlbversion" , "if" , "ifdef" , "ifmacrodef" , "ifmacrondef" , "ifndef" , "include" , "insertmacro" , "macro" , "macroend" , "makensis" , "packhdr" , "searchparse" , "searchreplace" , "system" , "tempfile" , "undef" , "uninstfinalize" , "verbose" , "warning" ) )
} , l = { className : "string" , variants : [ { begin : '"' , end : '"' } , { begin : "'" , end : "'" } , {
begin : "`" , end : "`" } ] , illegal : /\n/ , contains : [ { className : "char.escape" ,
begin : /\$(\\[nrt]|\$)/ } , a , n , i , r ] } , _ = {
match : [ /Function/ , /\s+/ , t . concat ( /(\.)?/ , e . IDENT _RE ) ] , scope : { 1 : "keyword" ,
3 : "title.function" } } ; return { name : "NSIS" , case _insensitive : ! 0 , keywords : {
keyword : [ "Abort" , "AddBrandingImage" , "AddSize" , "AllowRootDirInstall" , "AllowSkipFiles" , "AutoCloseWindow" , "BGFont" , "BGGradient" , "BrandingText" , "BringToFront" , "Call" , "CallInstDLL" , "Caption" , "ChangeUI" , "CheckBitmap" , "ClearErrors" , "CompletedText" , "ComponentText" , "CopyFiles" , "CRCCheck" , "CreateDirectory" , "CreateFont" , "CreateShortCut" , "Delete" , "DeleteINISec" , "DeleteINIStr" , "DeleteRegKey" , "DeleteRegValue" , "DetailPrint" , "DetailsButtonText" , "DirText" , "DirVar" , "DirVerify" , "EnableWindow" , "EnumRegKey" , "EnumRegValue" , "Exch" , "Exec" , "ExecShell" , "ExecShellWait" , "ExecWait" , "ExpandEnvStrings" , "File" , "FileBufSize" , "FileClose" , "FileErrorText" , "FileOpen" , "FileRead" , "FileReadByte" , "FileReadUTF16LE" , "FileReadWord" , "FileWriteUTF16LE" , "FileSeek" , "FileWrite" , "FileWriteByte" , "FileWriteWord" , "FindClose" , "FindFirst" , "FindNext" , "FindWindow" , "FlushINI" , "GetCurInstType" , "GetCurrentAddress" , "GetDlgItem" , "GetDLLVersion" , "GetDLLVersionLocal" , "GetErrorLevel" , "GetFileTime" , "GetFileTimeLocal" , "GetFullPathName" , "GetFunctionAddress" , "GetInstDirError" , "GetKnownFolderPath" , "GetLabelAddress" , "GetTempFileName" , "GetWinVer" , "Goto" , "HideWindow" , "Icon" , "IfAbort" , "IfErrors" , "IfFileExists" , "IfRebootFlag" , "IfRtlLanguage" , "IfShellVarContextAll" , "IfSilent" , "InitPluginsDir" , "InstallButtonText" , "InstallColors" , "InstallDir" , "InstallDirRegKey" , "InstProgressFlags" , "InstType" , "InstTypeGetText" , "InstTypeSetText" , "Int64Cmp" , "Int64CmpU" , "Int64Fmt" , "IntCmp" , "IntCmpU" , "IntFmt" , "IntOp" , "IntPtrCmp" , "IntPtrCmpU" , "IntPtrOp" , "IsWindow" , "LangString" , "LicenseBkColor" , "LicenseData" , "LicenseForceSelection" , "LicenseLangString" , "LicenseText" , "LoadAndSetImage" , "LoadLanguageFile" , "LockWindow" , "LogSet" , "LogText" , "ManifestDPIAware" , "ManifestLongPathAware" , "ManifestMaxVersionTested" , "ManifestSupportedOS" , "MessageBox" , "MiscButtonText" , "Name" , "Nop" , "OutFile" , "Page" , "PageCallbacks" , "PEAddResource" , "PEDllCharacteristics" , "PERemoveResource" , "PESubsysVer" , "Pop" , "Push" , "Quit" , "ReadEnvStr" , "ReadINIStr" , "ReadRegDWORD" , "ReadRegStr" , "Reboot" , "RegDLL" , "Rename" , "RequestExecutionLevel" , "ReserveFile" , "Return" , "RMDir" , "SearchPath" , "SectionGetFlags" , "SectionGetInstTypes" , "SectionGetSize" , "SectionGetText" , "SectionIn" , "SectionSetFlags" , "SectionSetInstTypes" , "SectionSetSize" , "SectionSetText" , "SendMessage" , "SetAutoClose" , "SetBrandingImage" , "SetCompress" , "SetCompressor" , "SetCompressorDictSize" , "SetCtlColors" , "SetCurInstType" , "SetDatablockOptimize" , "SetDateSave" , "SetDetailsPrint" , "SetDetailsView" , "SetErrorLevel" , "SetErrors" , "SetFileAttributes" , "SetFont" , "SetOutPath" , "SetOverwrite" , "SetRebootFlag" , "SetRegView" , "SetShellVarContext" , "SetSilent" , "ShowInstDetails" , "ShowUninstDetails" , "ShowWindow" , "SilentInstall" , "SilentUnInstall" , "Sleep" , "SpaceTexts" , "StrCmp" , "StrCmpS" , "StrCpy" , "StrLen" , "SubCaption" , "Unicode" , "UninstallButtonText" , "UninstallCaption" , "UninstallIcon" , "UninstallSubCaption" , "UninstallText" , "UninstPage" , "UnRegDLL" , "Var" , "VIAddVersionKey" , "VIFileVersion" , "VIProductVersion" , "WindowIcon" , "WriteINIStr" , "WriteRegBin" , "WriteRegDWORD" , "WriteRegExpandStr" , "WriteRegMultiStr" , "WriteRegNone" , "WriteRegStr" , "WriteUninstaller" , "XPStyle" ] ,
literal : [ "admin" , "all" , "auto" , "both" , "bottom" , "bzip2" , "colored" , "components" , "current" , "custom" , "directory" , "false" , "force" , "hide" , "highest" , "ifdiff" , "ifnewer" , "instfiles" , "lastused" , "leave" , "left" , "license" , "listonly" , "lzma" , "nevershow" , "none" , "normal" , "notset" , "off" , "on" , "open" , "print" , "right" , "show" , "silent" , "silentlog" , "smooth" , "textonly" , "top" , "true" , "try" , "un.components" , "un.custom" , "un.directory" , "un.instfiles" , "un.license" , "uninstConfirm" , "user" , "Win10" , "Win7" , "Win8" , "WinVista" , "zlib" ]
} , contains : [ e . HASH _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . COMMENT ( ";" , "$" , {
relevance : 0 } ) , { match : [ /Var/ , /\s+/ , /(?:\/GLOBAL\s+)?/ , /[A-Za-z][\w.]*/ ] , scope : {
1 : "keyword" , 3 : "params" , 4 : "variable" } } , _ , {
beginKeywords : "Function PageEx Section SectionGroup FunctionEnd SectionEnd"
} , l , o , n , i , r , s , { className : "title.function" , begin : /\w+::\w+/ } , e . NUMBER _MODE ] } } ,
grmr _objectivec : e => { const t = /[a-zA-Z@][a-zA-Z0-9_]*/ , a = { $pattern : t ,
keyword : [ "@interface" , "@class" , "@protocol" , "@implementation" ] } ; return {
name : "Objective-C" , aliases : [ "mm" , "objc" , "obj-c" , "obj-c++" , "objective-c++" ] ,
keywords : { $pattern : t ,
keyword : [ "int" , "float" , "while" , "char" , "export" , "sizeof" , "typedef" , "const" , "struct" , "for" , "union" , "unsigned" , "long" , "volatile" , "static" , "bool" , "mutable" , "if" , "do" , "return" , "goto" , "void" , "enum" , "else" , "break" , "extern" , "asm" , "case" , "short" , "default" , "double" , "register" , "explicit" , "signed" , "typename" , "this" , "switch" , "continue" , "wchar_t" , "inline" , "readonly" , "assign" , "readwrite" , "self" , "@synchronized" , "id" , "typeof" , "nonatomic" , "super" , "unichar" , "IBOutlet" , "IBAction" , "strong" , "weak" , "copy" , "in" , "out" , "inout" , "bycopy" , "byref" , "oneway" , "__strong" , "__weak" , "__block" , "__autoreleasing" , "@private" , "@protected" , "@public" , "@try" , "@property" , "@end" , "@throw" , "@catch" , "@finally" , "@autoreleasepool" , "@synthesize" , "@dynamic" , "@selector" , "@optional" , "@required" , "@encode" , "@package" , "@import" , "@defs" , "@compatibility_alias" , "__bridge" , "__bridge_transfer" , "__bridge_retained" , "__bridge_retain" , "__covariant" , "__contravariant" , "__kindof" , "_Nonnull" , "_Nullable" , "_Null_unspecified" , "__FUNCTION__" , "__PRETTY_FUNCTION__" , "__attribute__" , "getter" , "setter" , "retain" , "unsafe_unretained" , "nonnull" , "nullable" , "null_unspecified" , "null_resettable" , "class" , "instancetype" , "NS_DESIGNATED_INITIALIZER" , "NS_UNAVAILABLE" , "NS_REQUIRES_SUPER" , "NS_RETURNS_INNER_POINTER" , "NS_INLINE" , "NS_AVAILABLE" , "NS_DEPRECATED" , "NS_ENUM" , "NS_OPTIONS" , "NS_SWIFT_UNAVAILABLE" , "NS_ASSUME_NONNULL_BEGIN" , "NS_ASSUME_NONNULL_END" , "NS_REFINED_FOR_SWIFT" , "NS_SWIFT_NAME" , "NS_SWIFT_NOTHROW" , "NS_DURING" , "NS_HANDLER" , "NS_ENDHANDLER" , "NS_VALUERETURN" , "NS_VOIDRETURN" ] ,
literal : [ "false" , "true" , "FALSE" , "TRUE" , "nil" , "YES" , "NO" , "NULL" ] ,
built _in : [ "BOOL" , "dispatch_once_t" , "dispatch_queue_t" , "dispatch_sync" , "dispatch_async" , "dispatch_once" ]
} , illegal : "</" , contains : [ { className : "built_in" ,
begin : "\\b(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)\\w+"
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . C _NUMBER _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , {
className : "string" , variants : [ { begin : '@"' , end : '"' , illegal : "\\n" ,
contains : [ e . BACKSLASH _ESCAPE ] } ] } , { className : "meta" , begin : /#\s*[a-z]+\b/ , end : /$/ ,
keywords : {
keyword : "if else elif endif define undef warning error line pragma ifdef ifndef include"
} , contains : [ { begin : /\\\n/ , relevance : 0 } , e . inherit ( e . QUOTE _STRING _MODE , {
className : "string" } ) , { className : "string" , begin : /<.*?>/ , end : /$/ , illegal : "\\n"
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } , { className : "class" ,
begin : "(" + a . keyword . join ( "|" ) + ")\\b" , end : /(\{|$)/ , excludeEnd : ! 0 , keywords : a ,
contains : [ e . UNDERSCORE _TITLE _MODE ] } , { begin : "\\." + e . UNDERSCORE _IDENT _RE ,
relevance : 0 } ] } } , grmr _ocaml : e => ( { name : "OCaml" , aliases : [ "ml" ] , keywords : {
$pattern : "[a-z_]\\w*!?" ,
keyword : "and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value" ,
built _in : "array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref" ,
literal : "true false" } , illegal : /\/\/|>>/ , contains : [ { className : "literal" ,
begin : "\\[(\\|\\|)?\\]|\\(\\)" , relevance : 0 } , e . COMMENT ( "\\(\\*" , "\\*\\)" , {
contains : [ "self" ] } ) , { className : "symbol" , begin : "'[A-Za-z_](?!')[\\w']*" } , {
className : "type" , begin : "`[A-Z][\\w']*" } , { className : "type" ,
begin : "\\b[A-Z][\\w']*" , relevance : 0 } , { begin : "[a-z_]\\w*'[\\w']*" , relevance : 0
} , e . inherit ( e . APOS _STRING _MODE , { className : "string" , relevance : 0
} ) , e . inherit ( e . QUOTE _STRING _MODE , { illegal : null } ) , { className : "number" ,
begin : "\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)" ,
relevance : 0 } , { begin : /->/ } ] } ) , grmr _openscad : e => { const t = { className : "keyword" ,
begin : "\\$(f[asn]|t|vp[rtd]|children)" } , a = { className : "number" ,
begin : "\\b\\d+(\\.\\d+)?(e-?\\d+)?" , relevance : 0
} , n = e . inherit ( e . QUOTE _STRING _MODE , { illegal : null } ) , i = { className : "function" ,
beginKeywords : "module function" , end : /=|\{/ , contains : [ { className : "params" ,
begin : "\\(" , end : "\\)" , contains : [ "self" , a , n , t , { className : "literal" ,
begin : "false|true|PI|undef" } ] } , e . UNDERSCORE _TITLE _MODE ] } ; return { name : "OpenSCAD" ,
aliases : [ "scad" ] , keywords : {
keyword : "function module include use for intersection_for if else \\%" ,
literal : "false true PI undef" ,
built _in : "circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign"
} , contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , a , { className : "meta" ,
keywords : { keyword : "include use" } , begin : "include|use <" , end : ">" } , n , t , {
begin : "[*!#%]" , relevance : 0 } , i ] } } , grmr _oxygene : e => { const t = { $pattern : /\.?\w+/ ,
keyword : "abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained"
} , a = e . COMMENT ( /\{/ , /\}/ , { relevance : 0 } ) , n = e . COMMENT ( "\\(\\*" , "\\*\\)" , {
relevance : 10 } ) , i = { className : "string" , begin : "'" , end : "'" , contains : [ { begin : "''" } ]
} , r = { className : "string" , begin : "(#\\d+)+" } , s = {
beginKeywords : "function constructor destructor procedure method" , end : "[:;]" ,
keywords : "function constructor|10 destructor|10 procedure|10 method|10" ,
contains : [ e . inherit ( e . TITLE _MODE , { scope : "title.function" } ) , { className : "params" ,
begin : "\\(" , end : "\\)" , keywords : t , contains : [ i , r ] } , a , n ] } ; return { name : "Oxygene" ,
case _insensitive : ! 0 , keywords : t , illegal : '("|\\$[G-Zg-z]|\\/\\*|</|=>|->)' ,
contains : [ a , n , e . C _LINE _COMMENT _MODE , i , r , e . NUMBER _MODE , s , { scope : "punctuation" ,
match : /;/ , relevance : 0 } ] } } , grmr _parser3 : e => { const t = e . COMMENT ( /\{/ , /\}/ , {
contains : [ "self" ] } ) ; return { name : "Parser3" , subLanguage : "xml" , relevance : 0 ,
contains : [ e . COMMENT ( "^#" , "$" ) , e . COMMENT ( /\^rem\{/ , /\}/ , { relevance : 10 ,
contains : [ t ] } ) , { className : "meta" , begin : "^@(?:BASE|USE|CLASS|OPTIONS)$" ,
relevance : 10 } , { className : "title" ,
begin : "@[\\w\\-]+\\[[\\w^;\\-]*\\](?:\\[[\\w^;\\-]*\\])?(?:.*)$" } , {
className : "variable" , begin : /\$\{?[\w\-.:]+\}?/ } , { className : "keyword" ,
begin : /\^[\w\-.:]+/ } , { className : "number" , begin : "\\^#[0-9a-fA-F]+"
} , e . C _NUMBER _MODE ] } } , grmr _pf : e => ( { name : "Packet Filter config" ,
aliases : [ "pf.conf" ] , keywords : { $pattern : /[a-z0-9_<>-]+/ ,
built _in : "block match pass load anchor|5 antispoof|10 set table" ,
keyword : "in out log quick on rdomain inet inet6 proto from port os to route allow-opts divert-packet divert-reply divert-to flags group icmp-type icmp6-type label once probability recieved-on rtable prio queue tos tag tagged user keep fragment for os drop af-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robin source-hash static-port dup-to reply-to route-to parent bandwidth default min max qlimit block-policy debug fingerprints hostid limit loginterface optimization reassemble ruleset-optimization basic none profile skip state-defaults state-policy timeout const counters persist no modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppy source-track global rule max-src-nodes max-src-states max-src-conn max-src-conn-rate overload flush scrub|5 max-mss min-ttl no-df|10 random-id" ,
literal : "all any no-route self urpf-failed egress|5 unknown" } ,
contains : [ e . HASH _COMMENT _MODE , e . NUMBER _MODE , e . QUOTE _STRING _MODE , {
className : "variable" , begin : /\$[\w\d#@][\w\d_]*/ } , { className : "variable" ,
begin : /<(?!\/)/ , end : />/ } ] } ) , grmr _pgsql : e => {
const t = e . COMMENT ( "--" , "$" ) , a = "\\$([a-zA-Z_]?|[a-zA-Z_][a-zA-Z_0-9]*)\\$" , n = "BIGINT INT8 BIGSERIAL SERIAL8 BIT VARYING VARBIT BOOLEAN BOOL BOX BYTEA CHARACTER CHAR VARCHAR CIDR CIRCLE DATE DOUBLE PRECISION FLOAT8 FLOAT INET INTEGER INT INT4 INTERVAL JSON JSONB LINE LSEG|10 MACADDR MACADDR8 MONEY NUMERIC DEC DECIMAL PATH POINT POLYGON REAL FLOAT4 SMALLINT INT2 SMALLSERIAL|10 SERIAL2|10 SERIAL|10 SERIAL4|10 TEXT TIME ZONE TIMETZ|10 TIMESTAMP TIMESTAMPTZ|10 TSQUERY|10 TSVECTOR|10 TXID_SNAPSHOT|10 UUID XML NATIONAL NCHAR INT4RANGE|10 INT8RANGE|10 NUMRANGE|10 TSRANGE|10 TSTZRANGE|10 DATERANGE|10 ANYELEMENT ANYARRAY ANYNONARRAY ANYENUM ANYRANGE CSTRING INTERNAL RECORD PG_DDL_COMMAND VOID UNKNOWN OPAQUE REFCURSOR NAME OID REGPROC|10 REGPROCEDURE|10 REGOPER|10 REGOPERATOR|10 REGCLASS|10 REGTYPE|10 REGROLE|10 REGNAMESPACE|10 REGCONFIG|10 REGDICTIONARY|10 " , i = n . trim ( ) . split ( " " ) . map ( ( e => e . split ( "|" ) [ 0 ] ) ) . join ( "|" ) , r = " ARRAY _AGG AVG BIT _AND BIT _OR BOOL _AND BOOL _OR COUNT EVERY JSON _AGG JSONB _AGG JSON _OBJECT _AGG JSONB _OBJECT _AGG MAX MIN MODE STRING _AGG SUM XMLAGG CORR COVAR _POP COVAR _SAMP REGR _AVGX REGR _AVGY REGR _COUNT REGR _INTERCEPT REGR _R2 REGR _SLOPE REGR _SXX REGR _SXY REGR _SYY STDDEV STDDEV _POP STDDEV _SAMP VARIANCE VAR _POP VAR _SAMP PERCENTILE _CONT PERCENTILE _DISC ROW _NUMBER RANK DENSE _RANK PERCENT _RANK CUME _DIST NTILE LAG LEAD FIRST _VALUE LAST _VALUE NTH _VALUE NUM _NONNULLS NUM _NULLS ABS CBRT CEIL CEILING DEGREES DIV EXP FLOOR LN LOG MOD PI POWER RADIANS ROUND SCALE SIGN SQRT TRUNC WIDTH _BUCKET RANDOM SETSEED ACOS ACOSD ASIN ASIND ATAN ATAND ATAN2 ATAN2D COS COSD COT COTD SIN SIND TAN TAND BIT _LENGTH CHAR _LENGTH CHARACTER _LENGTH LOWER OCTET _LENGTH OVERLAY POSITION SUBSTRING TREAT TRIM UPPER ASCII BTRIM CHR CONCAT CONCAT _WS CONVERT CONVERT _FROM CONVERT _TO DECODE ENCODE INITCAP LEFT LENGTH LPAD LTRIM MD5 PARSE _IDENT PG _CLIENT _ENCODING QUOTE _IDENT | 10 QUOTE _LITERAL | 10 QUOTE _NULLABLE | 10 REGEXP _MATCH REGEXP _MATCHES REGEXP _REPLACE REGEXP _SPLIT _TO _ARRAY REGEXP _SPLIT _TO _TABLE REPEAT REPLACE REVERSE RIGHT RPAD RTRIM SPLIT _PART STRPOS SUBSTR TO _ASCII TO _HEX TRANSLATE OCTET _LENGTH GET _BIT GET _BYTE SET _BIT SET _BYTE TO _CHAR TO _DATE TO _NUMBER TO _TIMESTAMP AGE CLOCK _TIMESTAMP | 10 DATE _PART DATE _TRUNC ISFINITE JUSTIFY _DAYS JUSTIFY _HOURS JUSTIFY _INTERVAL MAKE _DATE MAKE _INTERVAL | 10 MAKE _TIME MAKE _TIMESTAMP | 10 MAKE _TIMESTAMPTZ | 10 NOW STATEMENT _TIMESTAMP | 10 TIMEOFDAY TRANSACTION _TIMESTAMP | 10 ENUM _FIRST ENUM _LAST ENUM _RANGE AREA CENTER DIAMETER HEIGHT ISCLOSED ISOPEN NPOINTS PCLOSE POPEN RADIUS WIDTH BOX BOUND _BOX CIRCLE LINE LSEG PATH POLYGON ABBREV BROADCAST HOST HOSTMASK MASKLEN NETMASK NETWORK SET _MASKLEN TEXT INET _SAME _FAMILY INET _MERGE MACADDR8 _SET7BIT ARRAY _TO _TSVECTOR GET _CURRENT _TS _CONFIG NUMNODE PLAINTO _TSQUERY PHRASETO _TSQUERY WEBSEARCH _TO _TSQUERY QUERYTREE SETWEIGHT STRIP TO _TSQUERY TO _TSVECTOR JSON _TO _TSVECTOR JSONB _TO _TSVECTOR TS _DELETE TS _FILTER TS _HEADLINE TS _RANK TS _RANK _CD TS _REWRITE TSQUERY _PHRASE TSVECTOR _TO _ARRAY TSVECTOR _UPDATE _TRIGGER TSVECTOR _UPDATE _TRIGGER _COLUMN XMLCOMMENT XMLCONCAT XMLELEMENT XMLFOREST XMLPI XMLROOT XMLEXISTS XML _IS _WELL _FORMED XML _IS _WELL _FORMED _DOCUMENT XML _IS _WELL _FORMED _CONTENT XPATH XPATH _EXISTS XMLTABLE XMLNAMESPACES TABLE _TO _XML TABLE _TO _XMLSCHEMA TABLE _TO _XML _AND _XMLSCHEMA QUERY _TO _XML QUERY _TO _XMLSCHEMA QUERY _TO _XML _AND _XMLSCHEMA CURSOR _TO _XML CURSOR _TO _XMLSCHEMA SCHEMA _TO _XML SCHEMA _TO _XMLSCHEMA SCHEMA _TO _XML _AND _XMLSCHEMA DATABASE _TO _XML DATABASE _TO _XMLSCHEMA DATABASE _TO _XML _AND _XMLSCHEMA XMLATTRIBUTES TO _JSON TO _JSONB ARRAY _TO _JSON ROW _TO _JSON JSON _BUILD _ARRAY JSONB _BUILD _ARRAY JSON _BUILD _OBJECT JSONB _BUILD _OBJECT JSON _OBJECT JSONB _OBJECT JSON _ARRAY _LENGTH JSONB _ARRAY _LENGTH JSON _EACH JSONB _EACH JSON _EACH _TEXT JSONB _EACH _TEXT JSON _EXTRACT _PATH JSONB _EXTRACT _PATH JSON _OBJECT _KEYS JSONB _OBJECT _KEYS JSON _POPULATE _RECORD JSONB _POPULATE _RECORD JSON _POPULATE _RECORDSET JSONB _POPULATE _RECORDSET JSON _ARRAY _ELEMENTS JSONB _ARRAY _ELEMENTS JSON _ARRAY _ELEMENTS _TEXT JSONB _ARRAY _ELEMENTS _TEXT JSON _TYPEOF JSONB _TYPEOF JSON _TO _RECORD JSONB _TO _RECORD JSON _TO _RECORDSET JSONB _TO _RECORDSET JSON _STRIP _NULLS JSONB _STRIP _NULL
; return { name : "PostgreSQL" , aliases : [ "postgres" , "postgresql" ] , supersetOf : "sql" ,
case _insensitive : ! 0 , keywords : {
keyword : "ABORT ALTER ANALYZE BEGIN CALL CHECKPOINT|10 CLOSE CLUSTER COMMENT COMMIT COPY CREATE DEALLOCATE DECLARE DELETE DISCARD DO DROP END EXECUTE EXPLAIN FETCH GRANT IMPORT INSERT LISTEN LOAD LOCK MOVE NOTIFY PREPARE REASSIGN|10 REFRESH REINDEX RELEASE RESET REVOKE ROLLBACK SAVEPOINT SECURITY SELECT SET SHOW START TRUNCATE UNLISTEN|10 UPDATE VACUUM|10 VALUES AGGREGATE COLLATION CONVERSION|10 DATABASE DEFAULT PRIVILEGES DOMAIN TRIGGER EXTENSION FOREIGN WRAPPER|10 TABLE FUNCTION GROUP LANGUAGE LARGE OBJECT MATERIALIZED VIEW OPERATOR CLASS FAMILY POLICY PUBLICATION|10 ROLE RULE SCHEMA SEQUENCE SERVER STATISTICS SUBSCRIPTION SYSTEM TABLESPACE CONFIGURATION DICTIONARY PARSER TEMPLATE TYPE USER MAPPING PREPARED ACCESS METHOD CAST AS TRANSFORM TRANSACTION OWNED TO INTO SESSION AUTHORIZATION INDEX PROCEDURE ASSERTION ALL ANALYSE AND ANY ARRAY ASC ASYMMETRIC|10 BOTH CASE CHECK COLLATE COLUMN CONCURRENTLY|10 CONSTRAINT CROSS DEFERRABLE RANGE DESC DISTINCT ELSE EXCEPT FOR FREEZE|10 FROM FULL HAVING ILIKE IN INITIALLY INNER INTERSECT IS ISNULL JOIN LATERAL LEADING LIKE LIMIT NATURAL NOT NOTNULL NULL OFFSET ON ONLY OR ORDER OUTER OVERLAPS PLACING PRIMARY REFERENCES RETURNING SIMILAR SOME SYMMETRIC TABLESAMPLE THEN TRAILING UNION UNIQUE USING VARIADIC|10 VERBOSE WHEN WHERE WINDOW WITH BY RETURNS INOUT OUT SETOF|10 IF STRICT CURRENT CONTINUE OWNER LOCATION OVER PARTITION WITHIN BETWEEN ESCAPE EXTERNAL INVOKER DEFINER WORK RENAME VERSION CONNECTION CONNECT TABLES TEMP TEMPORARY FUNCTIONS SEQUENCES TYPES SCHEMAS OPTION CASCADE RESTRICT ADD ADMIN EXISTS VALID VALIDATE ENABLE DISABLE REPLICA|10 ALWAYS PASSING COLUMNS PATH REF VALUE OVERRIDING IMMUTABLE STABLE VOLATILE BEFORE AFTER EACH ROW PROCEDURAL ROUTINE NO HANDLER VALIDATOR OPTIONS STORAGE OIDS|10 WITHOUT INHERIT DEPENDS CALLED INPUT LEAKPROOF|10 COST ROWS NOWAIT SEARCH UNTIL ENCRYPTED|10 PASSWORD CONFLICT|10 INSTEAD INHERITS CHARACTERISTICS WRITE CURSOR ALSO STATEMENT SHARE EXCLUSIVE INLINE ISOLATION REPEATABLE READ COMMITTED SERIALIZABLE UNCOMMITTED LOCAL GLOBAL SQL PROCEDURES RECURSIVE SNAPSHOT ROLLUP CUBE TRUSTED|10 INCLUDE FOLLOWING PRECEDING UNBOUNDED RANGE GROUPS UNENCRYPTED|10 SYSID FORMAT DELIMITER HEADER QUOTE ENCODING FILTER OFF FORCE_QUOTE FORCE_NOT_NULL FORCE_NULL COSTS BUFFERS TIMING SUMMARY DISABLE_PAGE_SKIPPING RESTART CYCLE GENERATED IDENTITY DEFERRED IMMEDIATE LEVEL LOGGED UNLOGGED OF NOTHING NONE EXCLUDE ATTRIBUTE USAGE ROUTINES TRUE FALSE NAN INFINITY ALIAS BEGIN CONSTANT DECLARE END EXCEPTION RETURN PERFORM|10 RAISE GET DIAGNOSTICS STACKED|10 FOREACH LOOP ELSIF EXIT WHILE REVERSE SLICE DEBUG LOG INFO NOTICE WARNING ASSERT OPEN SUPERUSER NOSUPERUSER CREATEDB NOCREATEDB CREATEROLE NOCREATEROLE INHERIT NOINHERIT LOGIN NOLOGIN REPLICATION NOREPLICATION BYPASSRLS NOBYPASSRLS " ,
built _in : " CURRENT _TIME CURRENT _TIMESTAMP CURRENT _USER CURRENT _CATALOG | 10 CURRENT _DATE LOCALTIME LOCALTIMESTAMP CURRENT _ROLE | 10 CURRENT _SCHEMA | 10 SESSION _USER PUBLIC FOUND NEW OLD TG _NAME | 10 TG _WHEN | 10 TG _LEVEL | 10 TG _OP | 10 TG _RELID | 10 TG _RELNAME | 10 TG _TABLE _NAME | 10 TG _TABLE _SCHEMA | 10 TG _NARGS | 10 TG _ARGV | 10 TG _EVENT | 10 TG _TAG | 10 ROW _COUNT RESULT _OID | 10 PG _CONTEXT | 10 RETURNED _SQLSTATE COLUMN _NAME CONSTRAINT _NAME PG _DATATYPE _NAME | 10 MESSAGE _TEXT TABLE _NAME SCHEMA _NAME PG _EXCEPTION _DETAIL | 10 PG _EXCEPTION _HINT | 10 PG _EXCEPTION _CONTEXT | 10 SQLSTATE SQLERRM | 10 SUCCESSFUL _COMPLETION WARNING DYNAMIC _RESULT _SETS _RETURNED IMPLICIT _ZERO _BIT _PADDING NULL _VALUE _ELIMINATED _IN _SET _FUNCTION PRIVILEGE _NOT _GRANTED PRIVILEGE _NOT _REVOKED STRING _DATA _RIGHT _TRUNCATION DEPRECATED _FEATURE NO _DATA NO _ADDITIONAL _DYNAMIC _RESULT _SETS _RETURNED SQL _STATEMENT _NOT _YET _COMPLETE CONNECTION _EXCEPTION CONNECTION _DOES _NOT _EXIST CONNECTION _FAILURE SQLCLIENT _UNABLE _TO _ESTABLISH _SQLCONNECTION SQLSERVER _REJECTED _ESTABLISHMENT _OF _SQLCONNECTION TRANSACTION _RESOLUTION _UNKNOWN PROTOCOL _VIOLATION TRIGGERED _ACTION _EXCEPTION FEATURE _NOT _SUPPORTED INVALID _TRANSACTION _INITIATION LOCATOR _EXCEPTION INVALID _LOCATOR _SPECIFICATION INVALID _GRANTOR INVALID _GRANT _OPERATION INVALID _ROLE _SPECIFICATION DIAGNOSTICS _EXCEPTION STACKED _DIAGNOSTICS _ACCESSED _WITHOUT _ACTIVE _HANDLER CASE _NOT _FOUND CARDINALITY _VIOLATION DATA _EXCEPTION ARRAY _SUBSCRIPT _ERROR CHARACTER _NOT _IN _REPERTOIRE DATETIME _FIELD _OVERFLOW DIVISION _BY _ZERO ERROR _IN _ASSIGNMENT ESCAPE _CHARACTER _CONFLICT INDICATOR _OVERFLOW INTERVAL _FIELD _OVERFLOW INVALID _ARGUMENT _FOR _LOGARITHM INVALID _ARGUMENT _FOR _NTILE _FUNCTION INVALID _ARGUMENT _FOR _NTH _VALUE _FUNCTION INVALID _ARGUMENT _FOR _POWER _FUNCTION INVALID _ARGUMENT _FOR _WIDTH _BUCKET _FUNCTION INVALID _CHARACTER _VALUE _FOR _CAST INVALID _DATETIME _FORMAT INVALID _ESCAPE _CHARACTER INVALID _ESCAPE _OCTET INVALID _ESCAPE _SEQUENCE NONSTANDARD _USE _OF _ESCAPE _CHARACTER INVALID _INDICATOR _PARAMETER _VALUE INVALID _PARAMETER _VALUE INVALID _REGULAR _EXPRESSION INVALID _ROW _COUNT _IN _LIMIT _CLAUSE INVALID _ROW _COUNT _IN _RESULT _OFFSET _CLAUSE INVALID _TABLESAMPLE _ARGUMENT INVALID _TABLESAMPLE _REPEAT INVALID _TIME _ZONE _DISPLACEMENT _VALUE INVALID _USE _OF _ESCAPE _CHARACTER MOST _SPECIFIC _TYPE _MISMATCH NULL _VALUE _NOT _ALLOWED NULL _VALUE _NO _INDICATOR _PARAMETER NUMERIC _VALUE _OUT _OF _RANGE SEQUENCE _GENERATOR _LIMIT _EXCEEDED STRING _DATA _LENGTH _MISMATCH STRING _DATA _RIGHT _TRUNCATION SUBSTRING _ERROR TRIM _ERROR UNTERMINATED _C _STRING ZERO _LENGTH _CHARACTER _STRING FLOATING _POINT _EXCEPTION INVALID _TEXT _REPRESENTATION INVALID _BINARY _REPRESENTATION BAD _COPY _FILE _FORMAT UNTRANSLATABLE _CHARACTER NOT _AN _XML _DOCUMENT INVALID _XML _DOCUMENT INVALID _XML _CONTENT INVALID _XML _COMMENT INVALID _XML _PROCESSING _INSTRUCTION INTEGRITY _CONSTRAINT _VIOLATION RESTRICT _VIOLATION NOT _NULL _VIOLATION FOREIGN _KEY _VIOLATION UNIQUE _VIOLATION CHECK _VIOLATION EXCLUSION _VIOLATION INVALID _CURSOR _STATE INVALID _TRANSACTION _STATE ACTIVE _SQL _TRANSACTION BRANCH _TRANSACTION _ALREADY _ACTIVE HELD _CURSOR _REQUIRES _SAME _ISOLATION _LEVEL INAPPROPRIATE _ACCESS _MODE _FOR _BRANCH _TRANSACTION INAPPROPRIATE _ISOLATION _LEVEL _FOR _BRANCH _TRANSACTION NO _ACTIVE _SQL _TRANSACTION _FOR _BRANCH _TRANSACTION READ _ONLY _SQL _TRANSACTION SCHEMA _AND _DATA _STATEMENT _MIXING _NOT _SUPPORTED NO _ACTIVE _SQL _TRANSACTION IN _FAILED _SQL _TRANSACTION IDLE _IN _TRANSACTION _SESSION _TIMEOUT INVALID _SQL _STATEMENT _NAME TRIGGERED _DATA _CHANGE _VIOLATION INVALID _AUTHORIZATION _SPECIFICATION INVALID _PASSWORD DEPENDENT _PRIVILEGE _DESCRIPTORS _STILL _EXIST DEPENDENT _OBJECTS _STILL _EXIST INVALID _TRANSACTION _TERMINATION SQL _ROUTINE _EXCEPTION FUNCTION _EXECUTED _NO _RETURN _STATEMENT MODIFYING _SQL _DATA _NOT _PERMITTED PROHIBITED _SQL _STATEMENT _ATTEMPTED READING _SQL _DATA _NOT _PERMITTED INVALID _CURSOR _NAME EXTERNAL _ROUTINE _EXCEPTION CONTAINING _SQL _NOT _PERMITTED MODIFYING _SQL _DATA _NOT _PERMITTED PROHIBITED _SQL _STATEMENT _ATTEMPTED READING _SQL _DATA _NOT _PERMITTED EXTERNAL _ROUTINE _INVOCATION _EXCEPTION INVALID _SQLSTATE _RETURNED NULL _VALUE _NOT _ALLOWED TRIGGER _PROTOCOL _VIOLATED SRF _PROTOCOL _VIOLATED EVENT _TRIGGER _PROTOCOL _VIOLATED SAVEPOINT _EXCEPTION INVALID _SAVEPOINT _SPECIFICAT
} , illegal : /:==|\W\s*\(\*|(^|\s)\$[a-z]|\{\{|[a-z]:\s*$|\.\.\.|TO:|DO:/ ,
contains : [ { className : "keyword" , variants : [ { begin : /\bTEXT\s*SEARCH\b/ } , {
begin : /\b(PRIMARY|FOREIGN|FOR(\s+NO)?)\s+KEY\b/ } , {
begin : /\bPARALLEL\s+(UNSAFE|RESTRICTED|SAFE)\b/ } , {
begin : /\bSTORAGE\s+(PLAIN|EXTERNAL|EXTENDED|MAIN)\b/ } , {
begin : /\bMATCH\s+(FULL|PARTIAL|SIMPLE)\b/ } , { begin : /\bNULLS\s+(FIRST|LAST)\b/ } , {
begin : /\bEVENT\s+TRIGGER\b/ } , { begin : /\b(MAPPING|OR)\s+REPLACE\b/ } , {
begin : /\b(FROM|TO)\s+(PROGRAM|STDIN|STDOUT)\b/ } , {
begin : /\b(SHARE|EXCLUSIVE)\s+MODE\b/ } , {
begin : /\b(LEFT|RIGHT)\s+(OUTER\s+)?JOIN\b/ } , {
begin : /\b(FETCH|MOVE)\s+(NEXT|PRIOR|FIRST|LAST|ABSOLUTE|RELATIVE|FORWARD|BACKWARD)\b/
} , { begin : /\bPRESERVE\s+ROWS\b/ } , { begin : /\bDISCARD\s+PLANS\b/ } , {
begin : /\bREFERENCING\s+(OLD|NEW)\b/ } , { begin : /\bSKIP\s+LOCKED\b/ } , {
begin : /\bGROUPING\s+SETS\b/ } , {
begin : /\b(BINARY|INSENSITIVE|SCROLL|NO\s+SCROLL)\s+(CURSOR|FOR)\b/ } , {
begin : /\b(WITH|WITHOUT)\s+HOLD\b/ } , {
begin : /\bWITH\s+(CASCADED|LOCAL)\s+CHECK\s+OPTION\b/ } , {
begin : /\bEXCLUDE\s+(TIES|NO\s+OTHERS)\b/ } , {
begin : /\bFORMAT\s+(TEXT|XML|JSON|YAML)\b/ } , {
begin : /\bSET\s+((SESSION|LOCAL)\s+)?NAMES\b/ } , { begin : /\bIS\s+(NOT\s+)?UNKNOWN\b/
} , { begin : /\bSECURITY\s+LABEL\b/ } , { begin : /\bSTANDALONE\s+(YES|NO|NO\s+VALUE)\b/
} , { begin : /\bWITH\s+(NO\s+)?DATA\b/ } , { begin : /\b(FOREIGN|SET)\s+DATA\b/ } , {
begin : /\bSET\s+(CATALOG|CONSTRAINTS)\b/ } , { begin : /\b(WITH|FOR)\s+ORDINALITY\b/ } , {
begin : /\bIS\s+(NOT\s+)?DOCUMENT\b/ } , {
begin : /\bXML\s+OPTION\s+(DOCUMENT|CONTENT)\b/ } , {
begin : /\b(STRIP|PRESERVE)\s+WHITESPACE\b/ } , {
begin : /\bNO\s+(ACTION|MAXVALUE|MINVALUE)\b/ } , {
begin : /\bPARTITION\s+BY\s+(RANGE|LIST|HASH)\b/ } , { begin : /\bAT\s+TIME\s+ZONE\b/ } , {
begin : /\bGRANTED\s+BY\b/ } , { begin : /\bRETURN\s+(QUERY|NEXT)\b/ } , {
begin : /\b(ATTACH|DETACH)\s+PARTITION\b/ } , {
begin : /\bFORCE\s+ROW\s+LEVEL\s+SECURITY\b/ } , {
begin : /\b(INCLUDING|EXCLUDING)\s+(COMMENTS|CONSTRAINTS|DEFAULTS|IDENTITY|INDEXES|STATISTICS|STORAGE|ALL)\b/
} , { begin : /\bAS\s+(ASSIGNMENT|IMPLICIT|PERMISSIVE|RESTRICTIVE|ENUM|RANGE)\b/ } ] } , {
begin : /\b(FORMAT|FAMILY|VERSION)\s*\(/ } , { begin : /\bINCLUDE\s*\(/ ,
keywords : "INCLUDE" } , { begin : /\bRANGE(?!\s*(BETWEEN|UNBOUNDED|CURRENT|[-0-9]+))/
} , {
begin : /\b(VERSION|OWNER|TEMPLATE|TABLESPACE|CONNECTION\s+LIMIT|PROCEDURE|RESTRICT|JOIN|PARSER|COPY|START|END|COLLATION|INPUT|ANALYZE|STORAGE|LIKE|DEFAULT|DELIMITER|ENCODING|COLUMN|CONSTRAINT|TABLE|SCHEMA)\s*=/
} , { begin : /\b(PG_\w+?|HAS_[A-Z_]+_PRIVILEGE)\b/ , relevance : 10 } , {
begin : /\bEXTRACT\s*\(/ , end : /\bFROM\b/ , returnEnd : ! 0 , keywords : {
type : "CENTURY DAY DECADE DOW DOY EPOCH HOUR ISODOW ISOYEAR MICROSECONDS MILLENNIUM MILLISECONDS MINUTE MONTH QUARTER SECOND TIMEZONE TIMEZONE_HOUR TIMEZONE_MINUTE WEEK YEAR"
} } , { begin : /\b(XMLELEMENT|XMLPI)\s*\(\s*NAME/ , keywords : { keyword : "NAME" } } , {
begin : /\b(XMLPARSE|XMLSERIALIZE)\s*\(\s*(DOCUMENT|CONTENT)/ , keywords : {
keyword : "DOCUMENT CONTENT" } } , { beginKeywords : "CACHE INCREMENT MAXVALUE MINVALUE" ,
end : e . C _NUMBER _RE , returnEnd : ! 0 , keywords : "BY CACHE INCREMENT MAXVALUE MINVALUE"
} , { className : "type" , begin : /\b(WITH|WITHOUT)\s+TIME\s+ZONE\b/ } , { className : "type" ,
begin : /\bINTERVAL\s+(YEAR|MONTH|DAY|HOUR|MINUTE|SECOND)(\s+TO\s+(MONTH|HOUR|MINUTE|SECOND))?\b/
} , {
begin : /\bRETURNS\s+(LANGUAGE_HANDLER|TRIGGER|EVENT_TRIGGER|FDW_HANDLER|INDEX_AM_HANDLER|TSM_HANDLER)\b/ ,
keywords : { keyword : "RETURNS" ,
type : "LANGUAGE_HANDLER TRIGGER EVENT_TRIGGER FDW_HANDLER INDEX_AM_HANDLER TSM_HANDLER"
} } , { begin : "\\b(" + r + ")\\s*\\(" } , { begin : "\\.(" + i + ")\\b" } , {
begin : "\\b(" + i + ")\\s+PATH\\b" , keywords : { keyword : "PATH" ,
type : n . replace ( "PATH " , "" ) } } , { className : "type" , begin : "\\b(" + i + ")\\b" } , {
className : "string" , begin : "'" , end : "'" , contains : [ { begin : "''" } ] } , {
className : "string" , begin : "(e|E|u&|U&)'" , end : "'" , contains : [ { begin : "\\\\." } ] ,
relevance : 10 } , e . END _SAME _AS _BEGIN ( { begin : a , end : a , contains : [ {
subLanguage : [ "pgsql" , "perl" , "python" , "tcl" , "r" , "lua" , "java" , "php" , "ruby" , "bash" , "scheme" , "xml" , "json" ] ,
endsWithParent : ! 0 } ] } ) , { begin : '"' , end : '"' , contains : [ { begin : '""' } ]
} , e . C _NUMBER _MODE , e . C _BLOCK _COMMENT _MODE , t , { className : "meta" , variants : [ {
begin : "%(ROW)?TYPE" , relevance : 10 } , { begin : "\\$\\d+" } , { begin : "^#\\w" , end : "$" } ] } , {
className : "symbol" , begin : "<<\\s*[a-zA-Z_][a-zA-Z_0-9$]*\\s*>>" , relevance : 10 } ] } } ,
grmr _php : e => {
const t = e . regex , a = "[a-zA-Z0-9_\x7f-\xff]*(?![A-Za-z0-9])(?![$]))" , n = t . concat ( "([a-zA-Z_\\x7f-\\xff]" , a ) , i = t . concat ( "([A-Z]" , a ) , r = {
scope : "variable" , match : "\\$+" + n } , s = { scope : "subst" , variants : [ { begin : /\$\w+/ } , {
begin : /\{\$/ , end : /\}/ } ] } , o = e . inherit ( e . APOS _STRING _MODE , { illegal : null
} ) , l = "[ \t\n]" , _ = { scope : "string" , variants : [ e . inherit ( e . QUOTE _STRING _MODE , {
illegal : null , contains : e . QUOTE _STRING _MODE . contains . concat ( s )
} ) , o , e . END _SAME _AS _BEGIN ( { begin : /<<<[ \t]*(\w+)\n/ , end : /[ \t]*(\w+)\b/ ,
contains : e . QUOTE _STRING _MODE . contains . concat ( s ) } ) ] } , c = { scope : "number" ,
variants : [ { begin : "\\b0[bB][01]+(?:_[01]+)*\\b" } , {
begin : "\\b0[oO][0-7]+(?:_[0-7]+)*\\b" } , {
begin : "\\b0[xX][\\da-fA-F]+(?:_[\\da-fA-F]+)*\\b" } , {
begin : "(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:[eE][+-]?\\d+)?"
} ] , relevance : 0
} , d = [ "__CLASS__" , "__DIR__" , "__FILE__" , "__FUNCTION__" , "__COMPILER_HALT_OFFSET__" , "__LINE__" , "__METHOD__" , "__NAMESPACE__" , "__TRAIT__" , "die" , "echo" , "exit" , "include" , "include_once" , "print" , "require" , "require_once" , "array" , "abstract" , "and" , "as" , "binary" , "bool" , "boolean" , "break" , "callable" , "case" , "catch" , "class" , "clone" , "const" , "continue" , "declare" , "default" , "do" , "double" , "else" , "elseif" , "empty" , "enddeclare" , "endfor" , "endforeach" , "endif" , "endswitch" , "endwhile" , "enum" , "eval" , "extends" , "final" , "finally" , "float" , "for" , "foreach" , "from" , "global" , "goto" , "if" , "implements" , "instanceof" , "insteadof" , "int" , "integer" , "interface" , "isset" , "iterable" , "list" , "match|0" , "mixed" , "new" , "never" , "object" , "or" , "private" , "protected" , "public" , "readonly" , "real" , "return" , "string" , "switch" , "throw" , "trait" , "try" , "unset" , "use" , "var" , "void" , "while" , "xor" , "yield" ] , m = [ "Error|0" , "AppendIterator" , "ArgumentCountError" , "ArithmeticError" , "ArrayIterator" , "ArrayObject" , "AssertionError" , "BadFunctionCallException" , "BadMethodCallException" , "CachingIterator" , "CallbackFilterIterator" , "CompileError" , "Countable" , "DirectoryIterator" , "DivisionByZeroError" , "DomainException" , "EmptyIterator" , "ErrorException" , "Exception" , "FilesystemIterator" , "FilterIterator" , "GlobIterator" , "InfiniteIterator" , "InvalidArgumentException" , "IteratorIterator" , "LengthException" , "LimitIterator" , "LogicException" , "MultipleIterator" , "NoRewindIterator" , "OutOfBoundsException" , "OutOfRangeException" , "OuterIterator" , "OverflowException" , "ParentIterator" , "ParseError" , "RangeException" , "RecursiveArrayIterator" , "RecursiveCachingIterator" , "RecursiveCallbackFilterIterator" , "RecursiveDirectoryIterator" , "RecursiveFilterIterator" , "RecursiveIterator" , "RecursiveIteratorIterator" , "RecursiveRegexIterator" , "RecursiveTreeIterator" , "RegexIterator" , "RuntimeException" , "SeekableIterator" , "SplDoublyLinkedList" , "SplFileInfo" , "SplFileObject" , "SplFixedArray" , "SplHeap" , "SplMaxHeap" , "SplMinHeap" , "SplObjectStorage" , "SplObserver" , "SplPriorityQueue" , "SplQueue" , "SplStack" , "SplSubject" , "SplTempFileObject" , "TypeError" , "UnderflowException" , "UnexpectedValueException" , "UnhandledMatchError" , "ArrayAccess" , "BackedEnum" , "Closure" , "Fiber" , "Generator" , "Iterator" , "IteratorAggregate" , "Serializable" , "Stringable" , "Throwable" , "Traversable" , "UnitEnum" , "WeakReference" , "WeakMap" , "Directory" , "__PHP_Incomplete_Class" , "parent" , "php_user_filter" , "self" , "static" , "stdClass" ] , p = {
keyword : d , literal : ( e => { const t = [ ] ; return [ "false" , "null" , "true" ] . forEach ( ( e => {
t . push ( e ) , e . toLowerCase ( ) === e ? t . push ( e . toUpperCase ( ) ) : t . push ( e . toLowerCase ( ) )
} ) ) , t } ) ( ) , built _in : m } , u = e => e . map ( ( e => e . replace ( /\|\d+$/ , "" ) ) ) , E = { variants : [ {
match : [ /new/ , t . concat ( l , "+" ) , t . concat ( "(?!" , u ( m ) . join ( "\\b|" ) , "\\b)" ) , t . concat ( /\\?/ , n ) , t . concat ( l , "*" , /\(/ ) ] ,
scope : { 1 : "keyword" , 4 : "title.class" } } ] } , S = t . concat ( n , "\\b(?!\\()" ) , g = { variants : [ {
match : [ t . concat ( /::/ , t . lookahead ( /(?!class\b)/ ) ) , S ] , scope : { 2 : "variable.constant"
} } , { match : [ /::/ , /class/ ] , scope : { 2 : "variable.language" } } , {
match : [ i , t . concat ( /::/ , t . lookahead ( /(?!class\b)/ ) ) , S ] , scope : { 1 : "title.class" ,
3 : "variable.constant" } } , { match : [ i , t . concat ( "::" , t . lookahead ( /(?!class\b)/ ) ) ] ,
scope : { 1 : "title.class" } } , { match : [ i , /::/ , /class/ ] , scope : { 1 : "title.class" ,
3 : "variable.language" } } ] } , T = { relevance : 0 , begin : /\(/ , end : /\)/ , keywords : p ,
contains : [ { scope : "attr" , match : t . concat ( n , t . lookahead ( ":" ) , t . lookahead ( /(?!::)/ ) )
} , r , g , e . C _BLOCK _COMMENT _MODE , _ , c , E ] } , b = { relevance : 0 ,
match : [ /\b/ , t . concat ( "(?!fn\\b|function\\b|" , u ( d ) . join ( "\\b|" ) , "|" , u ( m ) . join ( "\\b|" ) , "\\b)" ) , n , t . concat ( l , "*" ) , t . lookahead ( /(?=\()/ ) ] ,
scope : { 3 : "title.function.invoke" } , contains : [ T ] } ; return T . contains . push ( b ) , {
case _insensitive : ! 1 , keywords : p ,
contains : [ e . HASH _COMMENT _MODE , e . COMMENT ( "//" , "$" ) , e . COMMENT ( "/\\*" , "\\*/" , {
contains : [ { scope : "doctag" , match : "@[A-Za-z]+" } ] } ) , { match : /__halt_compiler\(\);/ ,
keywords : "__halt_compiler" , starts : { scope : "comment" , end : e . MATCH _NOTHING _RE ,
contains : [ { match : /\?>/ , scope : "meta" , endsParent : ! 0 } ] } } , { scope : "meta" , variants : [ {
begin : /<\?php/ , relevance : 10 } , { begin : /<\?[=]?/ } , { begin : /\?>/ } ] } , {
scope : "variable.language" , match : /\$this\b/ } , r , b , g , { match : [ /const/ , /\s/ , n ] ,
scope : { 1 : "keyword" , 3 : "variable.constant" } } , E , { scope : "function" , relevance : 0 ,
beginKeywords : "fn function" , end : /[;{]/ , excludeEnd : ! 0 , illegal : "[$%\\[]" ,
contains : [ { beginKeywords : "use" } , e . UNDERSCORE _TITLE _MODE , { begin : "=>" ,
endsParent : ! 0 } , { scope : "params" , begin : "\\(" , end : "\\)" , excludeBegin : ! 0 ,
excludeEnd : ! 0 , keywords : p , contains : [ "self" , r , g , e . C _BLOCK _COMMENT _MODE , _ , c ] } ] } , {
scope : "class" , variants : [ { beginKeywords : "enum" , illegal : /[($"]/ } , {
beginKeywords : "class interface trait" , illegal : /[:($"]/ } ] , relevance : 0 , end : /\{/ ,
excludeEnd : ! 0 , contains : [ { beginKeywords : "extends implements"
} , e . UNDERSCORE _TITLE _MODE ] } , { beginKeywords : "namespace" , relevance : 0 , end : ";" ,
illegal : /[.']/ , contains : [ e . inherit ( e . UNDERSCORE _TITLE _MODE , { scope : "title.class"
} ) ] } , { beginKeywords : "use" , relevance : 0 , end : ";" , contains : [ {
match : /\b(as|const|function)\b/ , scope : "keyword" } , e . UNDERSCORE _TITLE _MODE ] } , _ , c ] }
} , grmr _php _template : e => ( { name : "PHP template" , subLanguage : "xml" , contains : [ {
begin : /<\?(php|=)?/ , end : /\?>/ , subLanguage : "php" , contains : [ { begin : "/\\*" ,
end : "\\*/" , skip : ! 0 } , { begin : 'b"' , end : '"' , skip : ! 0 } , { begin : "b'" , end : "'" , skip : ! 0
} , e . inherit ( e . APOS _STRING _MODE , { illegal : null , className : null , contains : null ,
skip : ! 0 } ) , e . inherit ( e . QUOTE _STRING _MODE , { illegal : null , className : null ,
contains : null , skip : ! 0 } ) ] } ] } ) , grmr _plaintext : e => ( { name : "Plain text" ,
aliases : [ "text" , "txt" ] , disableAutodetect : ! 0 } ) , grmr _pony : e => ( { name : "Pony" ,
keywords : {
keyword : "actor addressof and as be break class compile_error compile_intrinsic consume continue delegate digestof do else elseif embed end error for fun if ifdef in interface is isnt lambda let match new not object or primitive recover repeat return struct then trait try type until use var where while with xor" ,
meta : "iso val tag trn box ref" , literal : "this false true" } , contains : [ {
className : "type" , begin : "\\b_?[A-Z][\\w]*" , relevance : 0 } , { className : "string" ,
begin : '"""' , end : '"""' , relevance : 10 } , { className : "string" , begin : '"' , end : '"' ,
contains : [ e . BACKSLASH _ESCAPE ] } , { className : "string" , begin : "'" , end : "'" ,
contains : [ e . BACKSLASH _ESCAPE ] , relevance : 0 } , { begin : e . IDENT _RE + "'" , relevance : 0 } , {
className : "number" ,
begin : "(-?)(\\b0[xX][a-fA-F0-9]+|\\b0[bB][01]+|(\\b\\d+(_\\d+)?(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)" ,
relevance : 0 } , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } ) ,
grmr _powershell : e => { const t = { $pattern : /-?[A-z\.\-]+\b/ ,
keyword : "if else foreach return do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch hidden static parameter" ,
built _in : "ac asnp cat cd CFS chdir clc clear clhy cli clp cls clv cnsn compare copy cp cpi cpp curl cvpa dbp del diff dir dnsn ebp echo|0 epal epcsv epsn erase etsn exsn fc fhx fl ft fw gal gbp gc gcb gci gcm gcs gdr gerr ghy gi gin gjb gl gm gmo gp gps gpv group gsn gsnp gsv gtz gu gv gwmi h history icm iex ihy ii ipal ipcsv ipmo ipsn irm ise iwmi iwr kill lp ls man md measure mi mount move mp mv nal ndr ni nmo npssc nsn nv ogv oh popd ps pushd pwd r rbp rcjb rcsn rd rdr ren ri rjb rm rmdir rmo rni rnp rp rsn rsnp rujb rv rvpa rwmi sajb sal saps sasv sbp sc scb select set shcm si sl sleep sls sort sp spjb spps spsv start stz sujb sv swmi tee trcm type wget where wjb write"
} , a = { begin : "`[\\s\\S]" , relevance : 0 } , n = { className : "variable" , variants : [ {
begin : /\$\B/ } , { className : "keyword" , begin : /\$this/ } , { begin : /\$[\w\d][\w\d_:]*/ } ]
} , i = { className : "string" , variants : [ { begin : /"/ , end : /"/ } , { begin : /@"/ , end : /^"@/ } ] ,
contains : [ a , n , { className : "variable" , begin : /\$[A-z]/ , end : /[^A-z]/ } ] } , r = {
className : "string" , variants : [ { begin : /'/ , end : /'/ } , { begin : /@'/ , end : /^'@/ } ]
} , s = e . inherit ( e . COMMENT ( null , null ) , { variants : [ { begin : /#/ , end : /$/ } , { begin : /<#/ ,
end : /#>/ } ] , contains : [ { className : "doctag" , variants : [ {
begin : /\.(synopsis|description|example|inputs|outputs|notes|link|component|role|functionality)/
} , {
begin : /\.(parameter|forwardhelptargetname|forwardhelpcategory|remotehelprunspace|externalhelp)\s+\S+/
} ] } ] } ) , o = { className : "class" , beginKeywords : "class enum" , end : /\s*[{]/ ,
excludeEnd : ! 0 , relevance : 0 , contains : [ e . TITLE _MODE ] } , l = { className : "function" ,
begin : /function\s+/ , end : /\s*\{|$/ , excludeEnd : ! 0 , returnBegin : ! 0 , relevance : 0 ,
contains : [ { begin : "function" , relevance : 0 , className : "keyword" } , { className : "title" ,
begin : /\w[\w\d]*((-)[\w\d]+)*/ , relevance : 0 } , { begin : /\(/ , end : /\)/ ,
className : "params" , relevance : 0 , contains : [ n ] } ] } , _ = { begin : /using\s/ , end : /$/ ,
returnBegin : ! 0 , contains : [ i , r , { className : "keyword" ,
begin : /(using|assembly|command|module|namespace|type)/ } ] } , c = {
className : "function" , begin : /\[.*\]\s*[\w]+[ ]??\(/ , end : /$/ , returnBegin : ! 0 ,
relevance : 0 , contains : [ { className : "keyword" ,
begin : "(" . concat ( t . keyword . toString ( ) . replace ( /\s/g , "|" ) , ")\\b" ) , endsParent : ! 0 ,
relevance : 0 } , e . inherit ( e . TITLE _MODE , { endsParent : ! 0 } ) ]
} , d = [ c , s , a , e . NUMBER _MODE , i , r , { className : "built_in" , variants : [ {
begin : "(Add|Clear|Close|Copy|Enter|Exit|Find|Format|Get|Hide|Join|Lock|Move|New|Open|Optimize|Pop|Push|Redo|Remove|Rename|Reset|Resize|Search|Select|Set|Show|Skip|Split|Step|Switch|Undo|Unlock|Watch|Backup|Checkpoint|Compare|Compress|Convert|ConvertFrom|ConvertTo|Dismount|Edit|Expand|Export|Group|Import|Initialize|Limit|Merge|Mount|Out|Publish|Restore|Save|Sync|Unpublish|Update|Approve|Assert|Build|Complete|Confirm|Deny|Deploy|Disable|Enable|Install|Invoke|Register|Request|Restart|Resume|Start|Stop|Submit|Suspend|Uninstall|Unregister|Wait|Debug|Measure|Ping|Repair|Resolve|Test|Trace|Connect|Disconnect|Read|Receive|Send|Write|Block|Grant|Protect|Revoke|Unblock|Unprotect|Use|ForEach|Sort|Tee|Where)+(-)[\\w\\d]+"
} ] } , n , { className : "literal" , begin : /\$(null|true|false)\b/ } , {
className : "selector-tag" , begin : /@\B/ , relevance : 0 } ] , m = { begin : /\[/ , end : /\]/ ,
excludeBegin : ! 0 , excludeEnd : ! 0 , relevance : 0 , contains : [ ] . concat ( "self" , d , {
begin : "(string|char|byte|int|long|bool|decimal|single|double|DateTime|xml|array|hashtable|void)" ,
className : "built_in" , relevance : 0 } , { className : "type" , begin : /[\.\w\d]+/ ,
relevance : 0 } ) } ; return c . contains . unshift ( m ) , { name : "PowerShell" ,
aliases : [ "pwsh" , "ps" , "ps1" ] , case _insensitive : ! 0 , keywords : t ,
contains : d . concat ( o , l , _ , { variants : [ { className : "operator" ,
begin : "(-and|-as|-band|-bnot|-bor|-bxor|-casesensitive|-ccontains|-ceq|-cge|-cgt|-cle|-clike|-clt|-cmatch|-cne|-cnotcontains|-cnotlike|-cnotmatch|-contains|-creplace|-csplit|-eq|-exact|-f|-file|-ge|-gt|-icontains|-ieq|-ige|-igt|-ile|-ilike|-ilt|-imatch|-in|-ine|-inotcontains|-inotlike|-inotmatch|-ireplace|-is|-isnot|-isplit|-join|-le|-like|-lt|-match|-ne|-not|-notcontains|-notin|-notlike|-notmatch|-or|-regex|-replace|-shl|-shr|-split|-wildcard|-xor)\\b"
} , { className : "literal" , begin : /(-){1,2}[\w\d-]+/ , relevance : 0 } ] } , m ) } } ,
grmr _processing : e => {
const t = e . regex , a = [ "displayHeight" , "displayWidth" , "mouseY" , "mouseX" , "mousePressed" , "pmouseX" , "pmouseY" , "key" , "keyCode" , "pixels" , "focused" , "frameCount" , "frameRate" , "height" , "width" , "size" , "createGraphics" , "beginDraw" , "createShape" , "loadShape" , "PShape" , "arc" , "ellipse" , "line" , "point" , "quad" , "rect" , "triangle" , "bezier" , "bezierDetail" , "bezierPoint" , "bezierTangent" , "curve" , "curveDetail" , "curvePoint" , "curveTangent" , "curveTightness" , "shape" , "shapeMode" , "beginContour" , "beginShape" , "bezierVertex" , "curveVertex" , "endContour" , "endShape" , "quadraticVertex" , "vertex" , "ellipseMode" , "noSmooth" , "rectMode" , "smooth" , "strokeCap" , "strokeJoin" , "strokeWeight" , "mouseClicked" , "mouseDragged" , "mouseMoved" , "mousePressed" , "mouseReleased" , "mouseWheel" , "keyPressed" , "keyPressedkeyReleased" , "keyTyped" , "print" , "println" , "save" , "saveFrame" , "day" , "hour" , "millis" , "minute" , "month" , "second" , "year" , "background" , "clear" , "colorMode" , "fill" , "noFill" , "noStroke" , "stroke" , "alpha" , "blue" , "brightness" , "color" , "green" , "hue" , "lerpColor" , "red" , "saturation" , "modelX" , "modelY" , "modelZ" , "screenX" , "screenY" , "screenZ" , "ambient" , "emissive" , "shininess" , "specular" , "add" , "createImage" , "beginCamera" , "camera" , "endCamera" , "frustum" , "ortho" , "perspective" , "printCamera" , "printProjection" , "cursor" , "frameRate" , "noCursor" , "exit" , "loop" , "noLoop" , "popStyle" , "pushStyle" , "redraw" , "binary" , "boolean" , "byte" , "char" , "float" , "hex" , "int" , "str" , "unbinary" , "unhex" , "join" , "match" , "matchAll" , "nf" , "nfc" , "nfp" , "nfs" , "split" , "splitTokens" , "trim" , "append" , "arrayCopy" , "concat" , "expand" , "reverse" , "shorten" , "sort" , "splice" , "subset" , "box" , "sphere" , "sphereDetail" , "createInput" , "createReader" , "loadBytes" , "loadJSONArray" , "loadJSONObject" , "loadStrings" , "loadTable" , "loadXML" , "open" , "parseXML" , "saveTable" , "selectFolder" , "selectInput" , "beginRaw" , "beginRecord" , "createOutput" , "createWriter" , "endRaw" , "endRecord" , "PrintWritersaveBytes" , "saveJSONArray" , "saveJSONObject" , "saveStream" , "saveStrings" , "saveXML" , "selectOutput" , "popMatrix" , "printMatrix" , "pushMatrix" , "resetMatrix" , "rotate" , "rotateX" , "rotateY" , "rotateZ" , "scale" , "shearX" , "shearY" , "translate" , "ambientLight" , "directionalLight" , "lightFalloff" , "lights" , "lightSpecular" , "noLights" , "normal" , "pointLight" , "spotLight" , "image" , "imageMode" , "loadImage" , "noTint" , "requestImage" , "tint" , "texture" , "textureMode" , "textureWrap" , "blend" , "copy" , "filter" , "get" , "loadPixels" , "set" , "updatePixels" , "blendMode" , "loadShader" , "PShaderresetShader" , "shader" , "createFont" , "loadFont" , "text" , "textFont" , "textAlign" , "textLeading" , "textMode" , "textSize" , "textWidth" , "textAscent" , "textDescent" , "abs" , "ceil" , "constrain" , "dist" , "exp" , "floor" , "lerp" , "log" , "mag" , "map" , "max" , "min" , "norm" , "pow" , "round" , "sq" , "sqrt" , "acos" , "asin" , "atan" , "atan2" , "cos" , "degrees" , "radians" , "sin" , "tan" , "noise" , "noiseDetail" , "noiseSeed" , "random" , "randomGaussian" , "randomSeed" ] , n = e . IDENT _RE , i = {
variants : [ { match : t . concat ( t . either ( ... a ) , t . lookahead ( /\s*\(/ ) ) ,
className : "built_in" } , { relevance : 0 ,
match : t . concat ( /\b(?!for|if|while)/ , n , t . lookahead ( /\s*\(/ ) ) ,
className : "title.function" } ] } , r = { match : [ /new\s+/ , n ] , className : { 1 : "keyword" ,
2 : "class.title" } } , s = { relevance : 0 , match : [ /\./ , n ] , className : { 2 : "property" } } , o = {
variants : [ { match : [ /class/ , /\s+/ , n , /\s+/ , /extends/ , /\s+/ , n ] } , {
match : [ /class/ , /\s+/ , n ] } ] , className : { 1 : "keyword" , 3 : "title.class" , 5 : "keyword" ,
7 : "title.class.inherited" } } ; return { name : "Processing" , aliases : [ "pde" ] , keywords : {
keyword : [ "abstract" , "assert" , "break" , "case" , "catch" , "const" , "continue" , "default" , "else" , "enum" , "final" , "finally" , "for" , "if" , "import" , "instanceof" , "long" , "native" , "new" , "package" , "private" , "private" , "protected" , "protected" , "public" , "public" , "return" , "static" , "strictfp" , "switch" , "synchronized" , "throw" , "throws" , "transient" , "try" , "void" , "volatile" , "while" ] ,
literal : "P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI null true false" ,
title : "setup draw" , variable : "super this" ,
built _in : [ ... a , "BufferedReader" , "PVector" , "PFont" , "PImage" , "PGraphics" , "HashMap" , "String" , "Array" , "FloatDict" , "ArrayList" , "FloatList" , "IntDict" , "IntList" , "JSONArray" , "JSONObject" , "Object" , "StringDict" , "StringList" , "Table" , "TableRow" , "XML" ] ,
type : [ "boolean" , "byte" , "char" , "color" , "double" , "float" , "int" , "long" , "short" ] } ,
contains : [ o , r , i , s , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . C _NUMBER _MODE ]
} } , grmr _profile : e => ( { name : "Python profiler" , contains : [ e . C _NUMBER _MODE , {
begin : "[a-zA-Z_][\\da-zA-Z_]+\\.[\\da-zA-Z_]{1,3}" , end : ":" , excludeEnd : ! 0 } , {
begin : "(ncalls|tottime|cumtime)" , end : "$" ,
keywords : "ncalls tottime|10 cumtime|10 filename" , relevance : 10 } , {
begin : "function calls" , end : "$" , contains : [ e . C _NUMBER _MODE ] , relevance : 10
} , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , { className : "string" , begin : "\\(" ,
end : "\\)$" , excludeBegin : ! 0 , excludeEnd : ! 0 , relevance : 0 } ] } ) , grmr _prolog : e => {
const t = { begin : /\(/ , end : /\)/ , relevance : 0 } , a = { begin : /\[/ , end : /\]/ } , n = {
className : "comment" , begin : /%/ , end : /$/ , contains : [ e . PHRASAL _WORDS _MODE ] } , i = {
className : "string" , begin : /`/ , end : /`/ , contains : [ e . BACKSLASH _ESCAPE ] } , r = [ {
begin : /[a-z][A-Za-z0-9_]*/ , relevance : 0 } , { className : "symbol" , variants : [ {
begin : /[A-Z][a-zA-Z0-9_]*/ } , { begin : /_[A-Za-z0-9_]*/ } ] , relevance : 0 } , t , { begin : /:-/
} , a , n , e . C _BLOCK _COMMENT _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , i , {
className : "string" , begin : /0'(\\'|.)/ } , { className : "string" , begin : /0'\\s/
} , e . C _NUMBER _MODE ] ; return t . contains = r , a . contains = r , { name : "Prolog" ,
contains : r . concat ( [ { begin : /\.$/ } ] ) } } , grmr _properties : e => {
const t = "[ \\t\\f]*" , a = "([^\\\\:= \\t\\f\\n]|\\\\.)+" ; return { name : ".properties" ,
disableAutodetect : ! 0 , case _insensitive : ! 0 , illegal : /\S/ ,
contains : [ e . COMMENT ( "^\\s*[!#]" , "$" ) , { returnBegin : ! 0 , variants : [ {
begin : a + "[ \\t\\f]*[:=][ \\t\\f]*" } , { begin : a + "[ \\t\\f]+" } ] , contains : [ {
className : "attr" , begin : a , endsParent : ! 0 } ] , starts : {
end : "([ \\t\\f]*[:=][ \\t\\f]*|[ \\t\\f]+)" , relevance : 0 , starts : {
className : "string" , end : /$/ , relevance : 0 , contains : [ { begin : "\\\\\\\\" } , {
begin : "\\\\\\n" } ] } } } , { className : "attr" , begin : a + t + "$" } ] } } , grmr _protobuf : e => {
const t = { match : [ /(message|enum|service)\s+/ , e . IDENT _RE ] , scope : { 1 : "keyword" ,
2 : "title.class" } } ; return { name : "Protocol Buffers" , keywords : {
keyword : [ "package" , "import" , "option" , "optional" , "required" , "repeated" , "group" , "oneof" ] ,
type : [ "double" , "float" , "int32" , "int64" , "uint32" , "uint64" , "sint32" , "sint64" , "fixed32" , "fixed64" , "sfixed32" , "sfixed64" , "bool" , "string" , "bytes" ] ,
literal : [ "true" , "false" ] } ,
contains : [ e . QUOTE _STRING _MODE , e . NUMBER _MODE , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , t , {
className : "function" , beginKeywords : "rpc" , end : /[{;]/ , excludeEnd : ! 0 ,
keywords : "rpc returns" } , { begin : /^\s*[A-Z_]+(?=\s*=[^\n]+;$)/ } ] } } ,
grmr _puppet : e => {
const t = e . COMMENT ( "#" , "$" ) , a = "([A-Za-z_]|::)(\\w|::)*" , n = e . inherit ( e . TITLE _MODE , {
begin : a } ) , i = { className : "variable" , begin : "\\$" + a } , r = { className : "string" ,
contains : [ e . BACKSLASH _ESCAPE , i ] , variants : [ { begin : /'/ , end : /'/ } , { begin : /"/ , end : /"/
} ] } ; return { name : "Puppet" , aliases : [ "pp" ] , contains : [ t , i , r , { beginKeywords : "class" ,
end : "\\{|;" , illegal : /=/ , contains : [ n , t ] } , { beginKeywords : "define" , end : /\{/ ,
contains : [ { className : "section" , begin : e . IDENT _RE , endsParent : ! 0 } ] } , {
begin : e . IDENT _RE + "\\s+\\{" , returnBegin : ! 0 , end : /\S/ , contains : [ {
className : "keyword" , begin : e . IDENT _RE } , { begin : /\{/ , end : /\}/ , keywords : {
keyword : "and case default else elsif false if in import enherits node or true undef unless main settings $string " ,
literal : "alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted" ,
built _in : "architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version"
} , relevance : 0 , contains : [ r , t , { begin : "[a-zA-Z_]+\\s*=>" , returnBegin : ! 0 , end : "=>" ,
contains : [ { className : "attr" , begin : e . IDENT _RE } ] } , { className : "number" ,
begin : "(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b" ,
relevance : 0 } , i ] } ] , relevance : 0 } ] } } , grmr _purebasic : e => ( { name : "PureBASIC" ,
aliases : [ "pb" , "pbi" ] ,
keywords : "Align And Array As Break CallDebugger Case CompilerCase CompilerDefault CompilerElse CompilerElseIf CompilerEndIf CompilerEndSelect CompilerError CompilerIf CompilerSelect CompilerWarning Continue Data DataSection Debug DebugLevel Declare DeclareC DeclareCDLL DeclareDLL DeclareModule Default Define Dim DisableASM DisableDebugger DisableExplicit Else ElseIf EnableASM EnableDebugger EnableExplicit End EndDataSection EndDeclareModule EndEnumeration EndIf EndImport EndInterface EndMacro EndModule EndProcedure EndSelect EndStructure EndStructureUnion EndWith Enumeration EnumerationBinary Extends FakeReturn For ForEach ForEver Global Gosub Goto If Import ImportC IncludeBinary IncludeFile IncludePath Interface List Macro MacroExpandedCount Map Module NewList NewMap Next Not Or Procedure ProcedureC ProcedureCDLL ProcedureDLL ProcedureReturn Protected Prototype PrototypeC ReDim Read Repeat Restore Return Runtime Select Shared Static Step Structure StructureUnion Swap Threaded To UndefineMacro Until Until UnuseModule UseModule Wend While With XIncludeFile XOr" ,
contains : [ e . COMMENT ( ";" , "$" , { relevance : 0 } ) , { className : "function" ,
begin : "\\b(Procedure|Declare)(C|CDLL|DLL)?\\b" , end : "\\(" , excludeEnd : ! 0 ,
returnBegin : ! 0 , contains : [ { className : "keyword" ,
begin : "(Procedure|Declare)(C|CDLL|DLL)?" , excludeEnd : ! 0 } , { className : "type" ,
begin : "\\.\\w*" } , e . UNDERSCORE _TITLE _MODE ] } , { className : "string" , begin : '(~)?"' ,
end : '"' , illegal : "\\n" } , { className : "symbol" , begin : "#[a-zA-Z_]\\w*\\$?" } ] } ) ,
grmr _python : e => {
const t = e . regex , a = /[\p{XID_Start}_]\p{XID_Continue}*/u , n = [ "and" , "as" , "assert" , "async" , "await" , "break" , "class" , "continue" , "def" , "del" , "elif" , "else" , "except" , "finally" , "for" , "from" , "global" , "if" , "import" , "in" , "is" , "lambda" , "nonlocal|10" , "not" , "or" , "pass" , "raise" , "return" , "try" , "while" , "with" , "yield" ] , i = {
$pattern : /[A-Za-z]\w+|__\w+__/ , keyword : n ,
2021-10-19 23:53:22 -07:00
built _in : [ "__import__" , "abs" , "all" , "any" , "ascii" , "bin" , "bool" , "breakpoint" , "bytearray" , "bytes" , "callable" , "chr" , "classmethod" , "compile" , "complex" , "delattr" , "dict" , "dir" , "divmod" , "enumerate" , "eval" , "exec" , "filter" , "float" , "format" , "frozenset" , "getattr" , "globals" , "hasattr" , "hash" , "help" , "hex" , "id" , "input" , "int" , "isinstance" , "issubclass" , "iter" , "len" , "list" , "locals" , "map" , "max" , "memoryview" , "min" , "next" , "object" , "oct" , "open" , "ord" , "pow" , "print" , "property" , "range" , "repr" , "reversed" , "round" , "set" , "setattr" , "slice" , "sorted" , "staticmethod" , "str" , "sum" , "super" , "tuple" , "type" , "vars" , "zip" ] ,
literal : [ "__debug__" , "Ellipsis" , "False" , "None" , "NotImplemented" , "True" ] ,
type : [ "Any" , "Callable" , "Coroutine" , "Dict" , "List" , "Literal" , "Generic" , "Optional" , "Sequence" , "Set" , "Tuple" , "Type" , "Union" ]
2022-01-15 21:29:41 -08:00
} , r = { className : "meta" , begin : /^(>>>|\.\.\.) / } , s = { className : "subst" , begin : /\{/ ,
end : /\}/ , keywords : i , illegal : /#/ } , o = { begin : /\{\{/ , relevance : 0 } , l = {
2021-10-19 23:53:22 -07:00
className : "string" , contains : [ e . BACKSLASH _ESCAPE ] , variants : [ {
begin : /([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/ , end : /'''/ ,
2022-01-15 21:29:41 -08:00
contains : [ e . BACKSLASH _ESCAPE , r ] , relevance : 10 } , {
2021-10-19 23:53:22 -07:00
begin : /([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/ , end : /"""/ ,
2022-01-15 21:29:41 -08:00
contains : [ e . BACKSLASH _ESCAPE , r ] , relevance : 10 } , {
2021-10-19 23:53:22 -07:00
begin : /([fF][rR]|[rR][fF]|[fF])'''/ , end : /'''/ ,
2022-01-15 21:29:41 -08:00
contains : [ e . BACKSLASH _ESCAPE , r , o , s ] } , { begin : /([fF][rR]|[rR][fF]|[fF])"""/ ,
end : /"""/ , contains : [ e . BACKSLASH _ESCAPE , r , o , s ] } , { begin : /([uU]|[rR])'/ , end : /'/ ,
2021-10-19 23:53:22 -07:00
relevance : 10 } , { begin : /([uU]|[rR])"/ , end : /"/ , relevance : 10 } , {
begin : /([bB]|[bB][rR]|[rR][bB])'/ , end : /'/ } , { begin : /([bB]|[bB][rR]|[rR][bB])"/ ,
end : /"/ } , { begin : /([fF][rR]|[rR][fF]|[fF])'/ , end : /'/ ,
2022-01-15 21:29:41 -08:00
contains : [ e . BACKSLASH _ESCAPE , o , s ] } , { begin : /([fF][rR]|[rR][fF]|[fF])"/ , end : /"/ ,
contains : [ e . BACKSLASH _ESCAPE , o , s ] } , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ]
} , _ = "[0-9](_?[0-9])*" , c = ` ( \\ b( ${ _ } ))? \\ .( ${ _ } )| \\ b( ${ _ } ) \\ . ` , d = "\\b|" + n . join ( "|" ) , m = {
2021-10-19 23:53:22 -07:00
className : "number" , relevance : 0 , variants : [ {
2022-01-15 21:29:41 -08:00
begin : ` ( \\ b( ${ _ } )|( ${ c } ))[eE][+-]?( ${ _ } )[jJ]?(?= ${ d } ) ` } , { begin : ` ( ${ c } )[jJ]? ` } , {
begin : ` \\ b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?(?= ${ d } ) ` } , {
begin : ` \\ b0[bB](_?[01])+[lL]?(?= ${ d } ) ` } , { begin : ` \\ b0[oO](_?[0-7])+[lL]?(?= ${ d } ) `
} , { begin : ` \\ b0[xX](_?[0-9a-fA-F])+[lL]?(?= ${ d } ) ` } , { begin : ` \\ b( ${ _ } )[jJ](?= ${ d } ) `
} ] } , p = { className : "comment" , begin : t . lookahead ( /# type:/ ) , end : /$/ , keywords : i ,
contains : [ { begin : /# type:/ } , { begin : /#/ , end : /\b\B/ , endsWithParent : ! 0 } ] } , u = {
2021-10-19 23:53:22 -07:00
className : "params" , variants : [ { className : "" , begin : /\(\s*\)/ , skip : ! 0 } , { begin : /\(/ ,
2022-01-15 21:29:41 -08:00
end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 , keywords : i ,
contains : [ "self" , r , m , l , e . HASH _COMMENT _MODE ] } ] } ; return s . contains = [ l , m , r ] , {
name : "Python" , aliases : [ "py" , "gyp" , "ipython" ] , unicodeRegex : ! 0 , keywords : i ,
illegal : /(<\/|->|\?)|=>/ , contains : [ r , m , { begin : /\bself\b/ } , { beginKeywords : "if" ,
relevance : 0 } , l , p , e . HASH _COMMENT _MODE , { match : [ /\bdef/ , /\s+/ , a ] , scope : {
1 : "keyword" , 3 : "title.function" } , contains : [ u ] } , { variants : [ {
match : [ /\bclass/ , /\s+/ , a , /\s*/ , /\(\s*/ , a , /\s*\)/ ] } , { match : [ /\bclass/ , /\s+/ , a ] } ] ,
2021-10-19 23:53:22 -07:00
scope : { 1 : "keyword" , 3 : "title.class" , 6 : "title.class.inherited" } } , {
2022-01-15 21:29:41 -08:00
className : "meta" , begin : /^[\t ]*@/ , end : /(?=#)|$/ , contains : [ m , u , l ] } ] } } ,
2021-10-19 23:53:22 -07:00
grmr _python _repl : e => ( { aliases : [ "pycon" ] , contains : [ { className : "meta" , starts : {
end : / |$/ , starts : { end : "$" , subLanguage : "python" } } , variants : [ {
2022-01-15 21:29:41 -08:00
begin : /^>>>(?=[ ]|$)/ } , { begin : /^\.\.\.(?=[ ]|$)/ } ] } ] } ) , grmr _q : e => ( { name : "Q" ,
aliases : [ "k" , "kdb" ] , keywords : { $pattern : /(`?)[A-Za-z0-9_]+\b/ ,
keyword : "do while select delete by update from" , literal : "0b 1b" ,
built _in : "neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum" ,
type : "`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid"
} , contains : [ e . C _LINE _COMMENT _MODE , e . QUOTE _STRING _MODE , e . C _NUMBER _MODE ] } ) ,
grmr _qml : e => { const t = "[a-zA-Z_][a-zA-Z0-9\\._]*" , a = { className : "attribute" ,
begin : "\\bid\\s*:" , starts : { className : "string" , end : t , returnEnd : ! 1 } } , n = {
begin : t + "\\s*:" , returnBegin : ! 0 , contains : [ { className : "attribute" , begin : t ,
end : "\\s*:" , excludeEnd : ! 0 , relevance : 0 } ] , relevance : 0 } , i = {
begin : e . regex . concat ( t , /\s*\{/ ) , end : /\{/ , returnBegin : ! 0 , relevance : 0 ,
contains : [ e . inherit ( e . TITLE _MODE , { begin : t } ) ] } ; return { name : "QML" , aliases : [ "qt" ] ,
case _insensitive : ! 1 , keywords : {
keyword : "in of on if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await import" ,
literal : "true false null undefined NaN Infinity" ,
built _in : "eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Behavior bool color coordinate date double enumeration font geocircle georectangle geoshape int list matrix4x4 parent point quaternion real rect size string url variant vector2d vector3d vector4d Promise"
} , contains : [ { className : "meta" , begin : /^\s*['"]use (strict|asm)['"]/
} , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , { className : "string" , begin : "`" , end : "`" ,
contains : [ e . BACKSLASH _ESCAPE , { className : "subst" , begin : "\\$\\{" , end : "\\}" } ]
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , { className : "number" , variants : [ {
begin : "\\b(0[bB][01]+)" } , { begin : "\\b(0[oO][0-7]+)" } , { begin : e . C _NUMBER _RE } ] ,
relevance : 0 } , { begin : "(" + e . RE _STARTERS _RE + "|\\b(case|return|throw)\\b)\\s*" ,
keywords : "return throw case" ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . REGEXP _MODE , { begin : /</ ,
end : />\s*[);\]]/ , relevance : 0 , subLanguage : "xml" } ] , relevance : 0 } , {
className : "keyword" , begin : "\\bsignal\\b" , starts : { className : "string" ,
end : "(\\(|:|=|;|,|//|/\\*|$)" , returnEnd : ! 0 } } , { className : "keyword" ,
begin : "\\bproperty\\b" , starts : { className : "string" , end : "(:|=|;|,|//|/\\*|$)" ,
returnEnd : ! 0 } } , { className : "function" , beginKeywords : "function" , end : /\{/ ,
excludeEnd : ! 0 , contains : [ e . inherit ( e . TITLE _MODE , { begin : /[A-Za-z$_][0-9A-Za-z$_]*/
} ) , { className : "params" , begin : /\(/ , end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } ] , illegal : /\[|%/ } , {
begin : "\\." + e . IDENT _RE , relevance : 0 } , a , n , i ] , illegal : /#/ } } , grmr _r : e => {
const t = e . regex , a = /(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/ , n = t . either ( /0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/ , /0[xX][0-9a-fA-F]+(?:[pP][+-]?\d+)?[Li]?/ , /(?:\d+(?:\.\d*)?|\.\d+)(?:[eE][+-]?\d+)?[Li]?/ ) , i = /[=!<>:]=|\|\||&&|:::?|<-|<<-|->>|->|\|>|[-+*\/?!$&|:<=>@^~]|\*\*/ , r = t . either ( /[()]/ , /[{}]/ , /\[\[/ , /[[\]]/ , /\\/ , /,/ )
; return { name : "R" , keywords : { $pattern : a ,
2021-10-19 23:53:22 -07:00
keyword : "function if in break next repeat else for while" ,
literal : "NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10" ,
built _in : "LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm"
} , contains : [ e . COMMENT ( /#'/ , /$/ , { contains : [ { scope : "doctag" , match : /@examples/ ,
2022-01-15 21:29:41 -08:00
starts : { end : t . lookahead ( t . either ( /\n^#'\s*(?=@[a-zA-Z]+)/ , /\n^(?!#')/ ) ) ,
2021-10-19 23:53:22 -07:00
endsParent : ! 0 } } , { scope : "doctag" , begin : "@param" , end : /$/ , contains : [ {
2022-01-15 21:29:41 -08:00
scope : "variable" , variants : [ { match : a } , { match : /`(?:\\.|[^`\\])+`/ } ] , endsParent : ! 0
2021-10-19 23:53:22 -07:00
} ] } , { scope : "doctag" , match : /@[a-zA-Z]+/ } , { scope : "keyword" , match : /\\[a-zA-Z]+/ } ]
} ) , e . HASH _COMMENT _MODE , { scope : "string" , contains : [ e . BACKSLASH _ESCAPE ] ,
variants : [ e . END _SAME _AS _BEGIN ( { begin : /[rR]"(-*)\(/ , end : /\)(-*)"/
} ) , e . END _SAME _AS _BEGIN ( { begin : /[rR]"(-*)\{/ , end : /\}(-*)"/
} ) , e . END _SAME _AS _BEGIN ( { begin : /[rR]"(-*)\[/ , end : /\](-*)"/
} ) , e . END _SAME _AS _BEGIN ( { begin : /[rR]'(-*)\(/ , end : /\)(-*)'/
} ) , e . END _SAME _AS _BEGIN ( { begin : /[rR]'(-*)\{/ , end : /\}(-*)'/
} ) , e . END _SAME _AS _BEGIN ( { begin : /[rR]'(-*)\[/ , end : /\](-*)'/ } ) , { begin : '"' , end : '"' ,
relevance : 0 } , { begin : "'" , end : "'" , relevance : 0 } ] } , { relevance : 0 , variants : [ { scope : {
2022-01-15 21:29:41 -08:00
1 : "operator" , 2 : "number" } , match : [ i , n ] } , { scope : { 1 : "operator" , 2 : "number" } ,
match : [ /%[^%]*%/ , n ] } , { scope : { 1 : "punctuation" , 2 : "number" } , match : [ r , n ] } , { scope : {
2 : "number" } , match : [ /[^a-zA-Z0-9._]|^/ , n ] } ] } , { scope : { 3 : "operator" } ,
match : [ a , /\s+/ , /<-/ , /\s+/ ] } , { scope : "operator" , relevance : 0 , variants : [ { match : i } , {
2021-10-19 23:53:22 -07:00
match : /%[^%]*%/ } ] } , { scope : "punctuation" , relevance : 0 , match : r } , { begin : "`" , end : "`" ,
2022-01-15 21:29:41 -08:00
contains : [ { begin : /\\./ } ] } ] } } , grmr _reasonml : e => {
const t = "~?[a-z$_][0-9a-zA-Z$_]*" , a = "`?[A-Z$_][0-9a-zA-Z$_]*" , n = "(" + [ "||" , "++" , "**" , "+." , "*" , "/" , "*." , "/." , "..." ] . map ( ( e => e . split ( "" ) . map ( ( e => "\\" + e ) ) . join ( "" ) ) ) . join ( "|" ) + "|\\|>|&&|==|===)" , i = "\\s+" + n + "\\s+" , r = {
keyword : "and as asr assert begin class constraint do done downto else end exception external for fun function functor if in include inherit initializer land lazy let lor lsl lsr lxor match method mod module mutable new nonrec object of open or private rec sig struct then to try type val virtual when while with" ,
built _in : "array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 ref string unit " ,
literal : "true false"
} , s = "\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)" , o = {
className : "number" , relevance : 0 , variants : [ { begin : s } , { begin : "\\(-" + s + "\\)" } ] } , l = {
className : "operator" , relevance : 0 , begin : n } , _ = [ { className : "identifier" ,
relevance : 0 , begin : t } , l , o ] , c = [ e . QUOTE _STRING _MODE , l , { className : "module" ,
begin : "\\b" + a , returnBegin : ! 0 , relevance : 0 , end : "." , contains : [ {
className : "identifier" , begin : a , relevance : 0 } ] } ] , d = [ { className : "module" ,
begin : "\\b" + a , returnBegin : ! 0 , end : "." , relevance : 0 , contains : [ {
className : "identifier" , begin : a , relevance : 0 } ] } ] , m = { className : "function" ,
relevance : 0 , keywords : r , variants : [ { begin : "\\s(\\(\\.?.*?\\)|" + t + ")\\s*=>" ,
end : "\\s*=>" , returnBegin : ! 0 , relevance : 0 , contains : [ { className : "params" ,
variants : [ { begin : t } , {
begin : "~?[a-z$_][0-9a-zA-Z$_]*(\\s*:\\s*[a-z$_][0-9a-z$_]*(\\(\\s*('?[a-z$_][0-9a-z$_]*\\s*(,'?[a-z$_][0-9a-z$_]*\\s*)*)?\\))?){0,2}"
} , { begin : /\(\s*\)/ } ] } ] } , { begin : "\\s\\(\\.?[^;\\|]*\\)\\s*=>" , end : "\\s=>" ,
returnBegin : ! 0 , relevance : 0 , contains : [ { className : "params" , relevance : 0 , variants : [ {
begin : t , end : "(,|\\n|\\))" , relevance : 0 , contains : [ l , { className : "typing" , begin : ":" ,
end : "(,|\\n)" , returnBegin : ! 0 , relevance : 0 , contains : d } ] } ] } ] } , {
begin : "\\(\\.\\s" + t + "\\)\\s*=>" } ] } ; c . push ( m ) ; const p = { className : "constructor" ,
begin : a + "\\(" , end : "\\)" , illegal : "\\n" , keywords : r ,
contains : [ e . QUOTE _STRING _MODE , l , { className : "params" , begin : "\\b" + t } ] } , u = {
className : "pattern-match" , begin : "\\|" , returnBegin : ! 0 , keywords : r , end : "=>" ,
relevance : 0 , contains : [ p , l , { relevance : 0 , className : "constructor" , begin : a } ] } , E = {
className : "module-access" , keywords : r , returnBegin : ! 0 , variants : [ {
begin : "\\b(" + a + "\\.)+" + t } , { begin : "\\b(" + a + "\\.)+\\(" , end : "\\)" , returnBegin : ! 0 ,
contains : [ m , { begin : "\\(" , end : "\\)" , relevance : 0 , skip : ! 0 } ] . concat ( c ) } , {
begin : "\\b(" + a + "\\.)+\\{" , end : /\}/ } ] , contains : c } ; return d . push ( E ) , {
name : "ReasonML" , aliases : [ "re" ] , keywords : r , illegal : "(:-|:=|\\$\\{|\\+=)" ,
contains : [ e . COMMENT ( "/\\*" , "\\*/" , { illegal : "^(#,\\/\\/)" } ) , {
className : "character" , begin : "'(\\\\[^']+|[^'])'" , illegal : "\\n" , relevance : 0
} , e . QUOTE _STRING _MODE , { className : "literal" , begin : "\\(\\)" , relevance : 0 } , {
className : "literal" , begin : "\\[\\|" , end : "\\|\\]" , relevance : 0 , contains : _ } , {
className : "literal" , begin : "\\[" , end : "\\]" , relevance : 0 , contains : _ } , p , {
className : "operator" , begin : i , illegal : "--\x3e" , relevance : 0
} , o , e . C _LINE _COMMENT _MODE , u , m , { className : "module-def" ,
begin : "\\bmodule\\s+" + t + "\\s+" + a + "\\s+=\\s+\\{" , end : /\}/ , returnBegin : ! 0 ,
keywords : r , relevance : 0 , contains : [ { className : "module" , relevance : 0 , begin : a } , {
begin : /\{/ , end : /\}/ , relevance : 0 , skip : ! 0 } ] . concat ( c ) } , E ] } } , grmr _rib : e => ( {
name : "RenderMan RIB" ,
keywords : "ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd" ,
illegal : "</" ,
contains : [ e . HASH _COMMENT _MODE , e . C _NUMBER _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ]
} ) , grmr _roboconf : e => { const t = "[a-zA-Z-_][^\\n{]+\\{" , a = { className : "attribute" ,
begin : /[a-zA-Z-_]+/ , end : /\s*:/ , excludeEnd : ! 0 , starts : { end : ";" , relevance : 0 ,
contains : [ { className : "variable" , begin : /\.[a-zA-Z-_]+/ } , { className : "keyword" ,
begin : /\(optional\)/ } ] } } ; return { name : "Roboconf" , aliases : [ "graph" , "instances" ] ,
case _insensitive : ! 0 , keywords : "import" , contains : [ { begin : "^facet " + t , end : /\}/ ,
keywords : "facet" , contains : [ a , e . HASH _COMMENT _MODE ] } , { begin : "^\\s*instance of " + t ,
end : /\}/ ,
keywords : "name count channels instance-data instance-state instance of" ,
illegal : /\S/ , contains : [ "self" , a , e . HASH _COMMENT _MODE ] } , { begin : "^" + t , end : /\}/ ,
contains : [ a , e . HASH _COMMENT _MODE ] } , e . HASH _COMMENT _MODE ] } } , grmr _routeros : e => {
const t = "foreach do while for if from to step else on-error and or not in" , a = "true false yes no nothing nil null" , n = {
className : "variable" , variants : [ { begin : /\$[\w\d#@][\w\d_]*/ } , { begin : /\$\{(.*?)\}/
} ] } , i = { className : "string" , begin : /"/ , end : /"/ , contains : [ e . BACKSLASH _ESCAPE , n , {
className : "variable" , begin : /\$\(/ , end : /\)/ , contains : [ e . BACKSLASH _ESCAPE ] } ] } , r = {
className : "string" , begin : /'/ , end : /'/ } ; return { name : "Microtik RouterOS script" ,
aliases : [ "mikrotik" ] , case _insensitive : ! 0 , keywords : { $pattern : /:?[\w-]+/ ,
literal : a ,
keyword : t + " :" + t . split ( " " ) . join ( " :" ) + " :" + "global local beep delay put len typeof pick log time set find environment terminal error execute parse resolve toarray tobool toid toip toip6 tonum tostr totime" . split ( " " ) . join ( " :" )
} , contains : [ { variants : [ { begin : /\/\*/ , end : /\*\// } , { begin : /\/\// , end : /$/ } , {
begin : /<\// , end : />/ } ] , illegal : /./ } , e . COMMENT ( "^#" , "$" ) , i , r , n , {
begin : /[\w-]+=([^\s{}[\]()>]+)/ , relevance : 0 , returnBegin : ! 0 , contains : [ {
className : "attribute" , begin : /[^=]+/ } , { begin : /=/ , endsWithParent : ! 0 , relevance : 0 ,
contains : [ i , r , n , { className : "literal" , begin : "\\b(" + a . split ( " " ) . join ( "|" ) + ")\\b"
} , { begin : /("[^"]*"|[^\s{}[\]]+)/ } ] } ] } , { className : "number" , begin : /\*[0-9a-fA-F]+/
} , {
begin : "\\b(add|remove|enable|disable|set|get|print|export|edit|find|run|debug|error|info|warning)([\\s[(\\]|])" ,
returnBegin : ! 0 , contains : [ { className : "built_in" , begin : /\w+/ } ] } , {
className : "built_in" , variants : [ {
begin : "(\\.\\./|/|\\s)((traffic-flow|traffic-generator|firewall|scheduler|aaa|accounting|address-list|address|align|area|bandwidth-server|bfd|bgp|bridge|client|clock|community|config|connection|console|customer|default|dhcp-client|dhcp-server|discovery|dns|e-mail|ethernet|filter|firmware|gps|graphing|group|hardware|health|hotspot|identity|igmp-proxy|incoming|instance|interface|ip|ipsec|ipv6|irq|l2tp-server|lcd|ldp|logging|mac-server|mac-winbox|mangle|manual|mirror|mme|mpls|nat|nd|neighbor|network|note|ntp|ospf|ospf-v3|ovpn-server|page|peer|pim|ping|policy|pool|port|ppp|pppoe-client|pptp-server|prefix|profile|proposal|proxy|queue|radius|resource|rip|ripng|route|routing|screen|script|security-profiles|server|service|service-port|settings|shares|smb|sms|sniffer|snmp|snooper|socks|sstp-server|system|tool|tracking|type|upgrade|upnp|user-manager|users|user|vlan|secret|vrrp|watchdog|web-access|wireless|pptp|pppoe|lan|wan|layer7-protocol|lease|simple|raw);?\\s)+"
} , { begin : /\.\./ , relevance : 0 } ] } ] } } , grmr _rsl : e => { const t = {
match : [ /(surface|displacement|light|volume|imager)/ , /\s+/ , e . IDENT _RE ] , scope : {
1 : "keyword" , 3 : "title.class" } } ; return { name : "RenderMan RSL" , keywords : {
keyword : [ "while" , "for" , "if" , "do" , "return" , "else" , "break" , "extern" , "continue" ] ,
built _in : [ "abs" , "acos" , "ambient" , "area" , "asin" , "atan" , "atmosphere" , "attribute" , "calculatenormal" , "ceil" , "cellnoise" , "clamp" , "comp" , "concat" , "cos" , "degrees" , "depth" , "Deriv" , "diffuse" , "distance" , "Du" , "Dv" , "environment" , "exp" , "faceforward" , "filterstep" , "floor" , "format" , "fresnel" , "incident" , "length" , "lightsource" , "log" , "match" , "max" , "min" , "mod" , "noise" , "normalize" , "ntransform" , "opposite" , "option" , "phong" , "pnoise" , "pow" , "printf" , "ptlined" , "radians" , "random" , "reflect" , "refract" , "renderinfo" , "round" , "setcomp" , "setxcomp" , "setycomp" , "setzcomp" , "shadow" , "sign" , "sin" , "smoothstep" , "specular" , "specularbrdf" , "spline" , "sqrt" , "step" , "tan" , "texture" , "textureinfo" , "trace" , "transform" , "vtransform" , "xcomp" , "ycomp" , "zcomp" ] ,
type : [ "matrix" , "float" , "color" , "point" , "normal" , "vector" ] } , illegal : "</" ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , e . C _NUMBER _MODE , {
className : "meta" , begin : "#" , end : "$" } , t , {
beginKeywords : "illuminate illuminance gather" , end : "\\(" } ] } } ,
grmr _ruleslanguage : e => ( { name : "Oracle Rules Language" , keywords : {
keyword : "BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING" ,
built _in : "IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME"
} ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . C _NUMBER _MODE , {
className : "literal" , variants : [ { begin : "#\\s+" , relevance : 0 } , { begin : "#[a-zA-Z .]+"
} ] } ] } ) , grmr _rust : e => { const t = e . regex , a = { className : "title.function.invoke" ,
relevance : 0 , begin : t . concat ( /\b/ , /(?!let\b)/ , e . IDENT _RE , t . lookahead ( /\s*\(/ ) )
} , n = "([ui](8|16|32|64|128|size)|f(32|64))?" , i = [ "drop " , "Copy" , "Send" , "Sized" , "Sync" , "Drop" , "Fn" , "FnMut" , "FnOnce" , "ToOwned" , "Clone" , "Debug" , "PartialEq" , "PartialOrd" , "Eq" , "Ord" , "AsRef" , "AsMut" , "Into" , "From" , "Default" , "Iterator" , "Extend" , "IntoIterator" , "DoubleEndedIterator" , "ExactSizeIterator" , "SliceConcatExt" , "ToString" , "assert!" , "assert_eq!" , "bitflags!" , "bytes!" , "cfg!" , "col!" , "concat!" , "concat_idents!" , "debug_assert!" , "debug_assert_eq!" , "env!" , "panic!" , "file!" , "format!" , "format_args!" , "include_bin!" , "include_str!" , "line!" , "local_data_key!" , "module_path!" , "option_env!" , "print!" , "println!" , "select!" , "stringify!" , "try!" , "unimplemented!" , "unreachable!" , "vec!" , "write!" , "writeln!" , "macro_rules!" , "assert_ne!" , "debug_assert_ne!" ]
2021-10-19 23:53:22 -07:00
; return { name : "Rust" , aliases : [ "rs" ] , keywords : { $pattern : e . IDENT _RE + "!?" ,
type : [ "i8" , "i16" , "i32" , "i64" , "i128" , "isize" , "u8" , "u16" , "u32" , "u64" , "u128" , "usize" , "f32" , "f64" , "str" , "char" , "bool" , "Box" , "Option" , "Result" , "String" , "Vec" ] ,
keyword : [ "abstract" , "as" , "async" , "await" , "become" , "box" , "break" , "const" , "continue" , "crate" , "do" , "dyn" , "else" , "enum" , "extern" , "false" , "final" , "fn" , "for" , "if" , "impl" , "in" , "let" , "loop" , "macro" , "match" , "mod" , "move" , "mut" , "override" , "priv" , "pub" , "ref" , "return" , "self" , "Self" , "static" , "struct" , "super" , "trait" , "true" , "try" , "type" , "typeof" , "unsafe" , "unsized" , "use" , "virtual" , "where" , "while" , "yield" ] ,
literal : [ "true" , "false" , "Some" , "None" , "Ok" , "Err" ] , built _in : i } , illegal : "</" ,
contains : [ e . C _LINE _COMMENT _MODE , e . COMMENT ( "/\\*" , "\\*/" , { contains : [ "self" ]
} ) , e . inherit ( e . QUOTE _STRING _MODE , { begin : /b?"/ , illegal : null } ) , {
className : "string" , variants : [ { begin : /b?r(#*)"(.|\n)*?"\1(?!#)/ } , {
begin : /b?'\\?(x\w{2}|u\w{4}|U\w{8}|.)'/ } ] } , { className : "symbol" ,
begin : /'[a-zA-Z_][a-zA-Z0-9_]*/ } , { className : "number" , variants : [ {
2022-01-15 21:29:41 -08:00
begin : "\\b0b([01_]+)" + n } , { begin : "\\b0o([0-7_]+)" + n } , {
begin : "\\b0x([A-Fa-f0-9_]+)" + n } , {
begin : "\\b(\\d[\\d_]*(\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)" + n } ] , relevance : 0 } , {
2021-10-19 23:53:22 -07:00
begin : [ /fn/ , /\s+/ , e . UNDERSCORE _IDENT _RE ] , className : { 1 : "keyword" ,
3 : "title.function" } } , { className : "meta" , begin : "#!?\\[" , end : "\\]" , contains : [ {
className : "string" , begin : /"/ , end : /"/ } ] } , {
begin : [ /let/ , /\s+/ , /(?:mut\s+)?/ , e . UNDERSCORE _IDENT _RE ] , className : { 1 : "keyword" ,
3 : "keyword" , 4 : "variable" } } , {
begin : [ /for/ , /\s+/ , e . UNDERSCORE _IDENT _RE , /\s+/ , /in/ ] , className : { 1 : "keyword" ,
3 : "variable" , 5 : "keyword" } } , { begin : [ /type/ , /\s+/ , e . UNDERSCORE _IDENT _RE ] ,
className : { 1 : "keyword" , 3 : "title.class" } } , {
begin : [ /(?:trait|enum|struct|union|impl|for)/ , /\s+/ , e . UNDERSCORE _IDENT _RE ] ,
className : { 1 : "keyword" , 3 : "title.class" } } , { begin : e . IDENT _RE + "::" , keywords : {
2022-01-15 21:29:41 -08:00
keyword : "Self" , built _in : i } } , { className : "punctuation" , begin : "->" } , a ] } } ,
grmr _sas : e => { const t = e . regex ; return { name : "SAS" , case _insensitive : ! 0 , keywords : {
literal : [ "null" , "missing" , "_all_" , "_automatic_" , "_character_" , "_infile_" , "_n_" , "_name_" , "_null_" , "_numeric_" , "_user_" , "_webout_" ] ,
keyword : [ "do" , "if" , "then" , "else" , "end" , "until" , "while" , "abort" , "array" , "attrib" , "by" , "call" , "cards" , "cards4" , "catname" , "continue" , "datalines" , "datalines4" , "delete" , "delim" , "delimiter" , "display" , "dm" , "drop" , "endsas" , "error" , "file" , "filename" , "footnote" , "format" , "goto" , "in" , "infile" , "informat" , "input" , "keep" , "label" , "leave" , "length" , "libname" , "link" , "list" , "lostcard" , "merge" , "missing" , "modify" , "options" , "output" , "out" , "page" , "put" , "redirect" , "remove" , "rename" , "replace" , "retain" , "return" , "select" , "set" , "skip" , "startsas" , "stop" , "title" , "update" , "waitsas" , "where" , "window" , "x|0" , "systask" , "add" , "and" , "alter" , "as" , "cascade" , "check" , "create" , "delete" , "describe" , "distinct" , "drop" , "foreign" , "from" , "group" , "having" , "index" , "insert" , "into" , "in" , "key" , "like" , "message" , "modify" , "msgtype" , "not" , "null" , "on" , "or" , "order" , "primary" , "references" , "reset" , "restrict" , "select" , "set" , "table" , "unique" , "update" , "validate" , "view" , "where" ]
} , contains : [ { className : "keyword" , begin : /^\s*(proc [\w\d_]+|data|run|quit)[\s;]/
} , { className : "variable" , begin : /&[a-zA-Z_&][a-zA-Z0-9_]*\.?/ } , {
begin : [ /^\s*/ , /datalines;|cards;/ , /(?:.*\n)+/ , /^\s*;\s*$/ ] , className : {
2 : "keyword" , 3 : "string" } } , {
begin : [ /%mend|%macro/ , /\s+/ , /[a-zA-Z_&][a-zA-Z0-9_]*/ ] , className : { 1 : "built_in" ,
3 : "title.function" } } , { className : "built_in" ,
begin : "%" + t . either ( "bquote" , "nrbquote" , "cmpres" , "qcmpres" , "compstor" , "datatyp" , "display" , "do" , "else" , "end" , "eval" , "global" , "goto" , "if" , "index" , "input" , "keydef" , "label" , "left" , "length" , "let" , "local" , "lowcase" , "macro" , "mend" , "nrbquote" , "nrquote" , "nrstr" , "put" , "qcmpres" , "qleft" , "qlowcase" , "qscan" , "qsubstr" , "qsysfunc" , "qtrim" , "quote" , "qupcase" , "scan" , "str" , "substr" , "superq" , "syscall" , "sysevalf" , "sysexec" , "sysfunc" , "sysget" , "syslput" , "sysprod" , "sysrc" , "sysrput" , "then" , "to" , "trim" , "unquote" , "until" , "upcase" , "verify" , "while" , "window" )
} , { className : "title.function" , begin : /%[a-zA-Z_][a-zA-Z_0-9]*/ } , {
className : "meta" ,
begin : t . either ( "abs" , "addr" , "airy" , "arcos" , "arsin" , "atan" , "attrc" , "attrn" , "band" , "betainv" , "blshift" , "bnot" , "bor" , "brshift" , "bxor" , "byte" , "cdf" , "ceil" , "cexist" , "cinv" , "close" , "cnonct" , "collate" , "compbl" , "compound" , "compress" , "cos" , "cosh" , "css" , "curobs" , "cv" , "daccdb" , "daccdbsl" , "daccsl" , "daccsyd" , "dacctab" , "dairy" , "date" , "datejul" , "datepart" , "datetime" , "day" , "dclose" , "depdb" , "depdbsl" , "depdbsl" , "depsl" , "depsl" , "depsyd" , "depsyd" , "deptab" , "deptab" , "dequote" , "dhms" , "dif" , "digamma" , "dim" , "dinfo" , "dnum" , "dopen" , "doptname" , "doptnum" , "dread" , "dropnote" , "dsname" , "erf" , "erfc" , "exist" , "exp" , "fappend" , "fclose" , "fcol" , "fdelete" , "fetch" , "fetchobs" , "fexist" , "fget" , "fileexist" , "filename" , "fileref" , "finfo" , "finv" , "fipname" , "fipnamel" , "fipstate" , "floor" , "fnonct" , "fnote" , "fopen" , "foptname" , "foptnum" , "fpoint" , "fpos" , "fput" , "fread" , "frewind" , "frlen" , "fsep" , "fuzz" , "fwrite" , "gaminv" , "gamma" , "getoption" , "getvarc" , "getvarn" , "hbound" , "hms" , "hosthelp" , "hour" , "ibessel" , "index" , "indexc" , "indexw" , "input" , "inputc" , "inputn" , "int" , "intck" , "intnx" , "intrr" , "irr" , "jbessel" , "juldate" , "kurtosis" , "lag" , "lbound" , "left" , "length" , "lgamma" , "libname" , "libref" , "log" , "log10" , "log2" , "logpdf" , "logpmf" , "logsdf" , "lowcase" , "max" , "mdy" , "mean" , "min" , "minute" , "mod" , "month" , "mopen" , "mort" , "n" , "netpv" , "nmiss" , "normal" , "note" , "npv" , "open" , "ordinal" , "pathname" , "pdf" , "peek" , "peekc" , "pmf" , "point" , "poisson" , "poke" , "probbeta" , "probbnml" , "probchi" , "probf" , "probgam" , "probhypr" , "probit" , "probnegb" , "probnorm" , "probt" , "put" , "putc" , "putn" , "qtr" , "quote" , "ranbin" , "rancau" , "ranexp" , "rangam" , "range" , "rank" , "rannor" , "ranpoi" , "rantbl" , "rantri" , "ranuni" , "repeat" , "resolve" , "reverse" , "rewind" , "right" , "round" , "saving" , "scan" , "sdf" , "second" , "sign" , "sin" , "sinh" , "skewness" , "soundex" , "spedis" , "sqrt" , "std" , "stderr" , "stfips" , "stname" , "stnamel" , "substr" , "sum" , "symget" , "sysget" , "sysmsg" , "sysprod" , "sysrc" , "system" , "tan" , "tanh" , "time" , "timepart" , "tinv" , "tnonct" , "today" , "translate" , "tranwrd" , "trigamma" , "trim" , "trimn" , "trunc" , "uniform" , "upcase" , "uss" , "var" , "varfmt" , "varinfmt" , "varlabel" , "varlen" , "varname" , "varnum" , "varray" , "varrayx" , "vartype" , "verify" , "vformat" , "vformatd" , "vformatdx" , "vformatn" , "vformatnx" , "vformatw" , "vformatwx" , "vformatx" , "vinarray" , "vinarrayx" , "vinformat" , "vinformatd" , "vinformatdx" , "vinformatn" , "vinformatnx" , "vinformatw" , "vinformatwx" , "vinformatx" , "vlabel" , "vlabelx" , "vlength" , "vlengthx" , "vname" , "vnamex" , "vtype" , "vtypex" , "weekday" , "year" , "yyq" , "zipfips" , "zipname" , "zipnamel" , "zipstate" ) + "(?=\\()"
} , { className : "string" , variants : [ e . APOS _STRING _MODE , e . QUOTE _STRING _MODE ]
} , e . COMMENT ( "\\*" , ";" ) , e . C _BLOCK _COMMENT _MODE ] } } , grmr _scala : e => {
const t = e . regex , a = { className : "subst" , variants : [ { begin : "\\$[A-Za-z0-9_]+" } , {
begin : /\$\{/ , end : /\}/ } ] } , n = { className : "string" , variants : [ { begin : '"""' , end : '"""'
} , { begin : '"' , end : '"' , illegal : "\\n" , contains : [ e . BACKSLASH _ESCAPE ] } , {
begin : '[a-z]+"' , end : '"' , illegal : "\\n" , contains : [ e . BACKSLASH _ESCAPE , a ] } , {
className : "string" , begin : '[a-z]+"""' , end : '"""' , contains : [ a ] , relevance : 10 } ] } , i = {
className : "type" , begin : "\\b[A-Z][A-Za-z0-9_]*" , relevance : 0 } , r = {
className : "title" ,
begin : /[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/ ,
relevance : 0 } , s = { className : "class" , beginKeywords : "class object trait type" ,
end : /[:={\[\n;]/ , excludeEnd : ! 0 ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , {
beginKeywords : "extends with" , relevance : 10 } , { begin : /\[/ , end : /\]/ , excludeBegin : ! 0 ,
excludeEnd : ! 0 , relevance : 0 , contains : [ i ] } , { className : "params" , begin : /\(/ , end : /\)/ ,
excludeBegin : ! 0 , excludeEnd : ! 0 , relevance : 0 , contains : [ i ] } , r ] } , o = {
className : "function" , beginKeywords : "def" , end : t . lookahead ( /[:={\[(\n;]/ ) ,
contains : [ r ] } ; return { name : "Scala" , keywords : { literal : "true false null" ,
keyword : "type yield lazy override def with val var sealed abstract private trait object if then forSome for while do throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit export enum given"
} ,
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , n , i , o , s , e . C _NUMBER _MODE , {
begin : [ /^\s*/ , "extension" , /\s+(?=[[(])/ ] , beginScope : { 2 : "keyword" } } , [ {
begin : [ /^\s*/ , /end/ , /\s+/ , /(extension\b)?/ ] , beginScope : { 2 : "keyword" , 4 : "keyword" }
} ] , { match : /\.inline\b/ } , { begin : /\binline(?=\s)/ , keywords : "inline" } , {
begin : [ /\(\s*/ , /using/ , /\s+(?!\))/ ] , beginScope : { 2 : "keyword" } } , { className : "meta" ,
begin : "@[A-Za-z]+" } ] } } , grmr _scheme : e => {
const t = "[^\\(\\)\\[\\]\\{\\}\",'`;#|\\\\\\s]+" , a = { $pattern : t ,
built _in : "case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?"
} , n = { className : "literal" , begin : "(#t|#f|#\\\\" + t + "|#\\\\.)" } , i = {
className : "number" , variants : [ { begin : "(-|\\+)?\\d+([./]\\d+)?" , relevance : 0 } , {
begin : "(-|\\+)?\\d+([./]\\d+)?[+\\-](-|\\+)?\\d+([./]\\d+)?i" , relevance : 0 } , {
begin : "#b[0-1]+(/[0-1]+)?" } , { begin : "#o[0-7]+(/[0-7]+)?" } , {
begin : "#x[0-9a-f]+(/[0-9a-f]+)?" } ] } , r = e . QUOTE _STRING _MODE , s = [ e . COMMENT ( ";" , "$" , {
relevance : 0 } ) , e . COMMENT ( "#\\|" , "\\|#" ) ] , o = { begin : t , relevance : 0 } , l = {
className : "symbol" , begin : "'" + t } , _ = { endsWithParent : ! 0 , relevance : 0 } , c = { variants : [ {
begin : /'/ } , { begin : "`" } ] , contains : [ { begin : "\\(" , end : "\\)" ,
contains : [ "self" , n , r , i , o , l ] } ] } , d = { className : "name" , relevance : 0 , begin : t ,
keywords : a } , m = { variants : [ { begin : "\\(" , end : "\\)" } , { begin : "\\[" , end : "\\]" } ] ,
contains : [ { begin : /lambda/ , endsWithParent : ! 0 , returnBegin : ! 0 , contains : [ d , {
endsParent : ! 0 , variants : [ { begin : /\(/ , end : /\)/ } , { begin : /\[/ , end : /\]/ } ] ,
contains : [ o ] } ] } , d , _ ] } ; return _ . contains = [ n , i , r , o , l , c , m ] . concat ( s ) , {
name : "Scheme" , illegal : /\S/ , contains : [ e . SHEBANG ( ) , i , r , l , c , m ] . concat ( s ) } } ,
grmr _scilab : e => { const t = [ e . C _NUMBER _MODE , { className : "string" , begin : "'|\"" ,
end : "'|\"" , contains : [ e . BACKSLASH _ESCAPE , { begin : "''" } ] } ] ; return { name : "Scilab" ,
aliases : [ "sci" ] , keywords : { $pattern : /%?\w+/ ,
keyword : "abort break case clear catch continue do elseif else endfunction end for function global if pause return resume select try then while" ,
literal : "%f %F %t %T %pi %eps %inf %nan %e %i %z %s" ,
built _in : "abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp error exec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isempty isinfisnan isvector lasterror length load linspace list listfiles log10 log2 log max min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand real round sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tan type typename warning zeros matrix"
} , illegal : '("|#|/\\*|\\s+/\\w+)' , contains : [ { className : "function" ,
beginKeywords : "function" , end : "$" , contains : [ e . UNDERSCORE _TITLE _MODE , {
className : "params" , begin : "\\(" , end : "\\)" } ] } , {
begin : "[a-zA-Z_][a-zA-Z_0-9]*[\\.']+" , relevance : 0 } , { begin : "\\[" ,
end : "\\][\\.']*" , relevance : 0 , contains : t } , e . COMMENT ( "//" , "$" ) ] . concat ( t ) } } ,
grmr _scss : e => { const t = me ( e ) , a = Se , n = Ee , i = "@[a-z-]+" , r = { className : "variable" ,
2021-10-19 23:53:22 -07:00
begin : "(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b" } ; return { name : "SCSS" , case _insensitive : ! 0 ,
illegal : "[=/|']" ,
2022-01-15 21:29:41 -08:00
contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , t . CSS _NUMBER _MODE , {
2021-10-19 23:53:22 -07:00
className : "selector-id" , begin : "#[A-Za-z0-9_-]+" , relevance : 0 } , {
className : "selector-class" , begin : "\\.[A-Za-z0-9_-]+" , relevance : 0
2022-01-15 21:29:41 -08:00
} , t . ATTRIBUTE _SELECTOR _MODE , { className : "selector-tag" ,
begin : "\\b(" + pe . join ( "|" ) + ")\\b" , relevance : 0 } , { className : "selector-pseudo" ,
begin : ":(" + n . join ( "|" ) + ")" } , { className : "selector-pseudo" ,
begin : ":(:)?(" + a . join ( "|" ) + ")" } , r , { begin : /\(/ , end : /\)/ ,
contains : [ t . CSS _NUMBER _MODE ] } , t . CSS _VARIABLE , { className : "attribute" ,
begin : "\\b(" + ge . join ( "|" ) + ")\\b" } , {
2021-10-19 23:53:22 -07:00
begin : "\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b"
} , { begin : /:/ , end : /[;}{]/ ,
2022-01-15 21:29:41 -08:00
contains : [ t . BLOCK _COMMENT , r , t . HEXCOLOR , t . CSS _NUMBER _MODE , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , t . IMPORTANT ]
2021-10-19 23:53:22 -07:00
} , { begin : "@(page|font-face)" , keywords : { $pattern : i , keyword : "@page @font-face" } } , {
begin : "@" , end : "[{;]" , returnBegin : ! 0 , keywords : { $pattern : /[a-z-]+/ ,
2022-01-15 21:29:41 -08:00
keyword : "and or not only" , attribute : ue . join ( " " ) } , contains : [ { begin : i ,
2021-10-19 23:53:22 -07:00
className : "keyword" } , { begin : /[a-z-]+(?=:)/ , className : "attribute"
2022-01-15 21:29:41 -08:00
} , r , e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , t . HEXCOLOR , t . CSS _NUMBER _MODE ]
} , t . FUNCTION _DISPATCH ] } } , grmr _shell : e => ( { name : "Shell Session" ,
2021-10-19 23:53:22 -07:00
aliases : [ "console" , "shellsession" ] , contains : [ { className : "meta" ,
begin : /^\s{0,3}[/~\w\d[\]()@-]*[>%$#][ ]?/ , starts : { end : /[^\\](?=\s*$)/ ,
2022-01-15 21:29:41 -08:00
subLanguage : "bash" } } ] } ) , grmr _smali : e => {
const t = [ "add" , "and" , "cmp" , "cmpg" , "cmpl" , "const" , "div" , "double" , "float" , "goto" , "if" , "int" , "long" , "move" , "mul" , "neg" , "new" , "nop" , "not" , "or" , "rem" , "return" , "shl" , "shr" , "sput" , "sub" , "throw" , "ushr" , "xor" ]
; return { name : "Smali" , contains : [ { className : "string" , begin : '"' , end : '"' , relevance : 0
} , e . COMMENT ( "#" , "$" , { relevance : 0 } ) , { className : "keyword" , variants : [ {
begin : "\\s*\\.end\\s[a-zA-Z0-9]*" } , { begin : "^[ ]*\\.[a-zA-Z]*" , relevance : 0 } , {
begin : "\\s:[a-zA-Z_0-9]*" , relevance : 0 } , {
begin : "\\s(transient|constructor|abstract|final|synthetic|public|private|protected|static|bridge|system)"
} ] } , { className : "built_in" , variants : [ { begin : "\\s(" + t . join ( "|" ) + ")\\s" } , {
begin : "\\s(" + t . join ( "|" ) + ")((-|/)[a-zA-Z0-9]+)+\\s" , relevance : 10 } , {
begin : "\\s(aget|aput|array|check|execute|fill|filled|goto/16|goto/32|iget|instance|invoke|iput|monitor|packed|sget|sparse)((-|/)[a-zA-Z0-9]+)*\\s" ,
relevance : 10 } ] } , { className : "class" , begin : "L[^(;:\n]*;" , relevance : 0 } , {
begin : "[vp][0-9]+" } ] } } , grmr _smalltalk : e => { const t = "[a-z][a-zA-Z0-9_]*" , a = {
className : "string" , begin : "\\$.{1}" } , n = { className : "symbol" ,
begin : "#" + e . UNDERSCORE _IDENT _RE } ; return { name : "Smalltalk" , aliases : [ "st" ] ,
keywords : [ "self" , "super" , "nil" , "true" , "false" , "thisContext" ] ,
contains : [ e . COMMENT ( '"' , '"' ) , e . APOS _STRING _MODE , { className : "type" ,
begin : "\\b[A-Z][A-Za-z0-9_]*" , relevance : 0 } , { begin : t + ":" , relevance : 0
} , e . C _NUMBER _MODE , n , a , { begin : "\\|[ ]*" + t + "([ ]+" + t + ")*[ ]*\\|" , returnBegin : ! 0 ,
end : /\|/ , illegal : /\S/ , contains : [ { begin : "(\\|[ ]*)?" + t } ] } , { begin : "#\\(" ,
end : "\\)" , contains : [ e . APOS _STRING _MODE , a , e . C _NUMBER _MODE , n ] } ] } } , grmr _sml : e => ( {
name : "SML (Standard ML)" , aliases : [ "ml" ] , keywords : { $pattern : "[a-z_]\\w*!?" ,
keyword : "abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while" ,
built _in : "array bool char exn int list option order real ref string substring vector unit word" ,
literal : "true false NONE SOME LESS EQUAL GREATER nil" } , illegal : /\/\/|>>/ ,
contains : [ { className : "literal" , begin : /\[(\|\|)?\]|\(\)/ , relevance : 0
} , e . COMMENT ( "\\(\\*" , "\\*\\)" , { contains : [ "self" ] } ) , { className : "symbol" ,
begin : "'[A-Za-z_](?!')[\\w']*" } , { className : "type" , begin : "`[A-Z][\\w']*" } , {
className : "type" , begin : "\\b[A-Z][\\w']*" , relevance : 0 } , {
begin : "[a-z_]\\w*'[\\w']*" } , e . inherit ( e . APOS _STRING _MODE , { className : "string" ,
relevance : 0 } ) , e . inherit ( e . QUOTE _STRING _MODE , { illegal : null } ) , { className : "number" ,
begin : "\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)" ,
relevance : 0 } , { begin : /[-=]>/ } ] } ) , grmr _sqf : e => { const t = { className : "string" ,
variants : [ { begin : '"' , end : '"' , contains : [ { begin : '""' , relevance : 0 } ] } , { begin : "'" ,
end : "'" , contains : [ { begin : "''" , relevance : 0 } ] } ] } , a = { className : "meta" ,
begin : /#\s*[a-z]+\b/ , end : /$/ , keywords : {
keyword : "define undef ifdef ifndef else endif include" } , contains : [ { begin : /\\\n/ ,
relevance : 0 } , e . inherit ( t , { className : "string" } ) , { className : "string" ,
begin : /<[^\n>]*>/ , end : /$/ , illegal : "\\n"
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ] } ; return { name : "SQF" ,
case _insensitive : ! 0 , keywords : {
keyword : [ "case" , "catch" , "default" , "do" , "else" , "exit" , "exitWith" , "for" , "forEach" , "from" , "if" , "private" , "switch" , "then" , "throw" , "to" , "try" , "waitUntil" , "while" , "with" ] ,
built _in : [ "abs" , "accTime" , "acos" , "action" , "actionIDs" , "actionKeys" , "actionKeysImages" , "actionKeysNames" , "actionKeysNamesArray" , "actionName" , "actionParams" , "activateAddons" , "activatedAddons" , "activateKey" , "add3DENConnection" , "add3DENEventHandler" , "add3DENLayer" , "addAction" , "addBackpack" , "addBackpackCargo" , "addBackpackCargoGlobal" , "addBackpackGlobal" , "addBinocularItem" , "addCamShake" , "addCuratorAddons" , "addCuratorCameraArea" , "addCuratorEditableObjects" , "addCuratorEditingArea" , "addCuratorPoints" , "addEditorObject" , "addEventHandler" , "addForce" , "addForceGeneratorRTD" , "addGoggles" , "addGroupIcon" , "addHandgunItem" , "addHeadgear" , "addItem" , "addItemCargo" , "addItemCargoGlobal" , "addItemPool" , "addItemToBackpack" , "addItemToUniform" , "addItemToVest" , "addLiveStats" , "addMagazine" , "addMagazineAmmoCargo" , "addMagazineCargo" , "addMagazineCargoGlobal" , "addMagazineGlobal" , "addMagazinePool" , "addMagazines" , "addMagazineTurret" , "addMenu" , "addMenuItem" , "addMissionEventHandler" , "addMPEventHandler" , "addMusicEventHandler" , "addonFiles" , "addOwnedMine" , "addPlayerScores" , "addPrimaryWeaponItem" , "addPublicVariableEventHandler" , "addRating" , "addResources" , "addScore" , "addScoreSide" , "addSecondaryWeaponItem" , "addSwitchableUnit" , "addTeamMember" , "addToRemainsCollector" , "addTorque" , "addUniform" , "addVehicle" , "addVest" , "addWaypoint" , "addWeapon" , "addWeaponCargo" , "addWeaponCargoGlobal" , "addWeaponGlobal" , "addWeaponItem" , "addWeaponPool" , "addWeaponTurret" , "addWeaponWithAttachmentsCargo" , "addWeaponWithAttachmentsCargoGlobal" , "admin" , "agent" , "agents" , "AGLToASL" , "aimedAtTarget" , "aimPos" , "airDensityCurveRTD" , "airDensityRTD" , "airplaneThrottle" , "airportSide" , "AISFinishHeal" , "alive" , "all3DENEntities" , "allActiveTitleEffects" , "allAddonsInfo" , "allAirports" , "allControls" , "allCurators" , "allCutLayers" , "allDead" , "allDeadMen" , "allDiarySubjects" , "allDisplays" , "allGroups" , "allMapMarkers" , "allMines" , "allMissionObjects" , "allow3DMode" , "allowCrewInImmobile" , "allowCuratorLogicIgnoreAreas" , "allowDamage" , "allowDammage" , "allowFileOperations" , "allowFleeing" , "allowGetIn" , "allowSprint" , "allPlayers" , "allSimpleObjects" , "allSites" , "allTurrets" , "allUnits" , "allUnitsUAV" , "allVariables" , "ammo" , "ammoOnPylon" , "and" , "animate" , "animateBay" , "animateDoor" , "animatePylon" , "animateSource" , "animationNames" , "animationPhase" , "animationSourcePhase" , "animationState" , "apertureParams" , "append" , "apply" , "armoryPoints" , "arrayIntersect" , "asin" , "ASLToAGL" , "ASLToATL" , "assert" , "assignAsCargo" , "assignAsCargoIndex" , "assignAsCommander" , "assignAsDriver" , "assignAsGunner" , "assignAsTurret" , "assignCurator" , "assignedCargo" , "assignedCommander" , "assignedDriver" , "assignedGunner" , "assignedItems" , "assignedTarget" , "assignedTeam" , "assignedVehicle" , "assignedVehicleRole" , "assignItem" , "assignTeam" , "assignToAirport" , "atan" , "atan2" , "atg" , "ATLToASL" , "attachedObject" , "attachedObjects" , "attachedTo" , "attachObject" , "attachTo" , "attackEnabled" , "backpack" , "backpackCargo" , "backpackContainer" , "backpackItems" , "backpackMagazines" , "backpackSpaceFor" , "batteryChargeRTD" , "behaviour" , "benchmark" , "bezierInterpolation" , "binocular" , "binocularItems" , "binocularMagazine" , "boundingBox" , "boundingBoxReal" , "boundingCenter" , "break" , "breakOut" , "breakTo" , "breakWith" , "briefingName" , "buildingExit" , "buildingPos" , "buldozer_EnableRoadDiag" , "buldozer_IsEnabledRoadDiag" , "buldozer_LoadNewRoads" , "buldozer_reloadOperMap" , "buttonAction" , "buttonSetAction" , "cadetMode" , "calculatePath" , "calculatePlayerVisibilityByFriendly" , "call" , "callExtension" , "camCommand" , "camCommit" , "camCommitPrepared" , "camCommitted" , "camConstuctionSetParams" , "camCreate" , "camDestroy" , "cameraEffect" , "cameraEffectEnableHUD" , "cameraInterest" , "cameraOn" , "cameraView" , "campaignConfigFile" , "camPreload" , "camPreloaded" , "camPrepareBank" , "camPrepareDir" , "camPrepareDive" , "camPrepareFocus" , "camPrepareFov" , "camPrepareFovRange" , "camPreparePos" , "camPrepareRelPos" , "camPrepareTarget" , "camSetBank" , "camSetDir" , "camSetDive" , "camSetFocus" , "camSetFov" , "camSetFovRange" , "camSetPos" , "camSetRelPos" , "camSetTarget" , "camTarget" , "camUseNVG" , "canAdd" , "canAddItemToBackpack" , "canAddItemToUniform" , "canAddItemToVest" , "cancelSimpleTaskDestination" , "canFire" , " canM
literal : [ "blufor" , "civilian" , "configNull" , "controlNull" , "displayNull" , "east" , "endl" , "false" , "grpNull" , "independent" , "lineBreak" , "locationNull" , "nil" , "objNull" , "opfor" , "pi" , "resistance" , "scriptNull" , "sideAmbientLife" , "sideEmpty" , "sideLogic" , "sideUnknown" , "taskNull" , "teamMemberNull" , "true" , "west" ]
} , contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . NUMBER _MODE , {
className : "variable" , begin : /\b_+[a-zA-Z]\w*/ } , { className : "title" ,
begin : /[a-zA-Z]\w+_fnc_\w+/ } , t , a ] , illegal : /#|^\$ / } } , grmr _sql : e => {
const t = e . regex , a = e . COMMENT ( "--" , "$" ) , n = [ "true" , "false" , "unknown" ] , i = [ "bigint" , "binary" , "blob" , "boolean" , "char" , "character" , "clob" , "date" , "dec" , "decfloat" , "decimal" , "float" , "int" , "integer" , "interval" , "nchar" , "nclob" , "national" , "numeric" , "real" , "row" , "smallint" , "time" , "timestamp" , "varchar" , "varying" , "varbinary" ] , r = [ "abs" , "acos" , "array_agg" , "asin" , "atan" , "avg" , "cast" , "ceil" , "ceiling" , "coalesce" , "corr" , "cos" , "cosh" , "count" , "covar_pop" , "covar_samp" , "cume_dist" , "dense_rank" , "deref" , "element" , "exp" , "extract" , "first_value" , "floor" , "json_array" , "json_arrayagg" , "json_exists" , "json_object" , "json_objectagg" , "json_query" , "json_table" , "json_table_primitive" , "json_value" , "lag" , "last_value" , "lead" , "listagg" , "ln" , "log" , "log10" , "lower" , "max" , "min" , "mod" , "nth_value" , "ntile" , "nullif" , "percent_rank" , "percentile_cont" , "percentile_disc" , "position" , "position_regex" , "power" , "rank" , "regr_avgx" , "regr_avgy" , "regr_count" , "regr_intercept" , "regr_r2" , "regr_slope" , "regr_sxx" , "regr_sxy" , "regr_syy" , "row_number" , "sin" , "sinh" , "sqrt" , "stddev_pop" , "stddev_samp" , "substring" , "substring_regex" , "sum" , "tan" , "tanh" , "translate" , "translate_regex" , "treat" , "trim" , "trim_array" , "unnest" , "upper" , "value_of" , "var_pop" , "var_samp" , "width_bucket" ] , s = [ "create table" , "insert into" , "primary key" , "foreign key" , "not null" , "alter table" , "add constraint" , "grouping sets" , "on overflow" , "character set" , "respect nulls" , "ignore nulls" , "nulls first" , "nulls last" , "depth first" , "breadth first" ] , o = r , l = [ "abs" , "acos" , "all" , "allocate" , "alter" , "and" , "any" , "are" , "array" , "array_agg" , "array_max_cardinality" , "as" , "asensitive" , "asin" , "asymmetric" , "at" , "atan" , "atomic" , "authorization" , "avg" , "begin" , "begin_frame" , "begin_partition" , "between" , "bigint" , "binary" , "blob" , "boolean" , "both" , "by" , "call" , "called" , "cardinality" , "cascaded" , "case" , "cast" , "ceil" , "ceiling" , "char" , "char_length" , "character" , "character_length" , "check" , "classifier" , "clob" , "close" , "coalesce" , "collate" , "collect" , "column" , "commit" , "condition" , "connect" , "constraint" , "contains" , "convert" , "copy" , "corr" , "corresponding" , "cos" , "cosh" , "count" , "covar_pop" , "covar_samp" , "create" , "cross" , "cube" , "cume_dist" , "current" , "current_catalog" , "current_date" , "current_default_transform_group" , "current_path" , "current_role" , "current_row" , "current_schema" , "current_time" , "current_timestamp" , "current_path" , "current_role" , "current_transform_group_for_type" , "current_user" , "cursor" , "cycle" , "date" , "day" , "deallocate" , "dec" , "decimal" , "decfloat" , "declare" , "default" , "define" , "delete" , "dense_rank" , "deref" , "describe" , "deterministic" , "disconnect" , "distinct" , "double" , "drop" , "dynamic" , "each" , "element" , "else" , "empty" , "end" , "end_frame" , "end_partition" , "end-exec" , "equals" , "escape" , "every" , "except" , "exec" , "execute" , "exists" , "exp" , "external" , "extract" , "false" , "fetch" , "filter" , "first_value" , "float" , "floor" , "for" , "foreign" , "frame_row" , "free" , "from" , "full" , "function" , "fusion" , "get" , "global" , "grant" , "group" , "grouping" , "groups" , "having" , "hold" , "hour" , "identity" , "in" , "indicator" , "initial" , "inner" , "inout" , "insensitive" , "insert" , "int" , "integer" , "intersect" , "intersection" , "interval" , "into" , "is" , "join" , "json_array" , "json_arrayagg" , "json_exists" , "json_object" , "json_objectagg" , "json_query" , "json_table" , "json_table_primitive" , "json_value" , "lag" , "language" , "large" , "last_value" , "lateral" , "lead" , "leading" , "left" , "like" , "like_regex" , "listagg" , "ln" , "local" , "localtime" , "localtimestamp" , "log" , "log10" , "lower" , "match" , "match_number" , "match_recognize" , "matches" , "max" , "member" , "merge" , "method" , "min" , "minute" , "mod" , "modifies" , "module" , "month" , "multiset" , "national" , "natural" , "nchar" , "nclob" , "new" , "no" , "none" , "normalize" , "not" , "nth_value" , "ntile" , "null" , "nullif" , "numeric" , "octet_length" , "occurrences_regex" , "of" , "offset" , "old" , "omit" , "on" , "one" , "only" , "open" , "or" , "order" , "out" , "outer" , "over" , "overlaps" , "overlay" , "parameter" , "partition" , "pattern" , "per" , "percent" , "percent_rank" , "percentile_cont" , "percentile_disc" , "period" , "portion" , "position" , "position_regex" , "power" , "precedes" , "precision" , "prepare" , "primary" , "procedure" , "ptf" , "range" , "rank" , "reads" , "real" , "recursive" , "ref" , "references" , "referencing" , "regr_avgx" , " r
begin : t . concat ( /\b/ , t . either ( ... o ) , /\s*\(/ ) , relevance : 0 , keywords : { built _in : o } }
2021-10-19 23:53:22 -07:00
; return { name : "SQL" , case _insensitive : ! 0 , illegal : /[{}]|<\// , keywords : {
2022-01-15 21:29:41 -08:00
$pattern : /\b[\w\.]+/ , keyword : ( ( e , { exceptions : t , when : a } = { } ) => { const n = a
; return t = t || [ ] , e . map ( ( e => e . match ( /\|\d+$/ ) || t . includes ( e ) ? e : n ( e ) ? e + "|0" : e ) )
} ) ( l , { when : e => e . length < 3 } ) , literal : n , type : i ,
2021-10-19 23:53:22 -07:00
built _in : [ "current_catalog" , "current_date" , "current_default_transform_group" , "current_path" , "current_role" , "current_schema" , "current_transform_group_for_type" , "current_user" , "session_user" , "system_time" , "system_user" , "current_time" , "localtime" , "current_timestamp" , "localtimestamp" ]
2022-01-15 21:29:41 -08:00
} , contains : [ { begin : t . either ( ... s ) , relevance : 0 , keywords : { $pattern : /[\w\.]+/ ,
keyword : l . concat ( s ) , literal : n , type : i } } , { className : "type" ,
begin : t . either ( "double precision" , "large object" , "with timezone" , "without timezone" )
} , _ , { className : "variable" , begin : /@[a-z0-9]+/ } , { className : "string" , variants : [ {
2021-10-19 23:53:22 -07:00
begin : /'/ , end : /'/ , contains : [ { begin : /''/ } ] } ] } , { begin : /"/ , end : /"/ , contains : [ {
2022-01-15 21:29:41 -08:00
begin : /""/ } ] } , e . C _NUMBER _MODE , e . C _BLOCK _COMMENT _MODE , a , { className : "operator" ,
2021-10-19 23:53:22 -07:00
begin : /[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/ , relevance : 0 } ] } } ,
2022-01-15 21:29:41 -08:00
grmr _stan : e => {
const t = e . regex , a = [ "bernoulli" , "bernoulli_logit" , "bernoulli_logit_glm" , "beta" , "beta_binomial" , "beta_proportion" , "binomial" , "binomial_logit" , "categorical" , "categorical_logit" , "categorical_logit_glm" , "cauchy" , "chi_square" , "dirichlet" , "discrete_range" , "double_exponential" , "exp_mod_normal" , "exponential" , "frechet" , "gamma" , "gaussian_dlm_obs" , "gumbel" , "hmm_latent" , "hypergeometric" , "inv_chi_square" , "inv_gamma" , "inv_wishart" , "lkj_corr" , "lkj_corr_cholesky" , "logistic" , "lognormal" , "multi_gp" , "multi_gp_cholesky" , "multi_normal" , "multi_normal_cholesky" , "multi_normal_prec" , "multi_student_t" , "multinomial" , "multinomial_logit" , "neg_binomial" , "neg_binomial_2" , "neg_binomial_2_log" , "neg_binomial_2_log_glm" , "normal" , "normal_id_glm" , "ordered_logistic" , "ordered_logistic_glm" , "ordered_probit" , "pareto" , "pareto_type_2" , "poisson" , "poisson_log" , "poisson_log_glm" , "rayleigh" , "scaled_inv_chi_square" , "skew_double_exponential" , "skew_normal" , "std_normal" , "student_t" , "uniform" , "von_mises" , "weibull" , "wiener" , "wishart" ] , n = e . COMMENT ( /\/\*/ , /\*\// , {
relevance : 0 , contains : [ { scope : "doctag" , match : /@(return|param)/ } ] } ) , i = {
scope : "meta" , begin : /#include\b/ , end : /$/ , contains : [ { match : /[a-z][a-z-._]+/ ,
scope : "string" } , e . C _LINE _COMMENT _MODE ]
} , r = [ "lower" , "upper" , "offset" , "multiplier" ] ; return { name : "Stan" ,
aliases : [ "stanfuncs" ] , keywords : { $pattern : e . IDENT _RE ,
title : [ "functions" , "model" , "data" , "parameters" , "quantities" , "transformed" , "generated" ] ,
type : [ "array" , "complex" , "int" , "real" , "vector" , "ordered" , "positive_ordered" , "simplex" , "unit_vector" , "row_vector" , "matrix" , "cholesky_factor_corr|10" , "cholesky_factor_cov|10" , "corr_matrix|10" , "cov_matrix|10" , "void" ] ,
keyword : [ "for" , "in" , "if" , "else" , "while" , "break" , "continue" , "return" ] ,
built _in : [ "Phi" , "Phi_approx" , "abs" , "acos" , "acosh" , "add_diag" , "algebra_solver" , "algebra_solver_newton" , "append_array" , "append_col" , "append_row" , "asin" , "asinh" , "atan" , "atan2" , "atanh" , "bessel_first_kind" , "bessel_second_kind" , "binary_log_loss" , "binomial_coefficient_log" , "block" , "cbrt" , "ceil" , "chol2inv" , "cholesky_decompose" , "choose" , "col" , "cols" , "columns_dot_product" , "columns_dot_self" , "conj" , "cos" , "cosh" , "cov_exp_quad" , "crossprod" , "csr_extract_u" , "csr_extract_v" , "csr_extract_w" , "csr_matrix_times_vector" , "csr_to_dense_matrix" , "cumulative_sum" , "determinant" , "diag_matrix" , "diag_post_multiply" , "diag_pre_multiply" , "diagonal" , "digamma" , "dims" , "distance" , "dot_product" , "dot_self" , "eigenvalues_sym" , "eigenvectors_sym" , "erf" , "erfc" , "exp" , "exp2" , "expm1" , "fabs" , "falling_factorial" , "fdim" , "floor" , "fma" , "fmax" , "fmin" , "fmod" , "gamma_p" , "gamma_q" , "generalized_inverse" , "get_imag" , "get_lp" , "get_real" , "head" , "hmm_hidden_state_prob" , "hmm_marginal" , "hypot" , "identity_matrix" , "inc_beta" , "int_step" , "integrate_1d" , "integrate_ode" , "integrate_ode_adams" , "integrate_ode_bdf" , "integrate_ode_rk45" , "inv" , "inv_Phi" , "inv_cloglog" , "inv_logit" , "inv_sqrt" , "inv_square" , "inverse" , "inverse_spd" , "is_inf" , "is_nan" , "lambert_w0" , "lambert_wm1" , "lbeta" , "lchoose" , "ldexp" , "lgamma" , "linspaced_array" , "linspaced_int_array" , "linspaced_row_vector" , "linspaced_vector" , "lmgamma" , "lmultiply" , "log" , "log1m" , "log1m_exp" , "log1m_inv_logit" , "log1p" , "log1p_exp" , "log_determinant" , "log_diff_exp" , "log_falling_factorial" , "log_inv_logit" , "log_inv_logit_diff" , "log_mix" , "log_modified_bessel_first_kind" , "log_rising_factorial" , "log_softmax" , "log_sum_exp" , "logit" , "machine_precision" , "map_rect" , "matrix_exp" , "matrix_exp_multiply" , "matrix_power" , "max" , "mdivide_left_spd" , "mdivide_left_tri_low" , "mdivide_right_spd" , "mdivide_right_tri_low" , "mean" , "min" , "modified_bessel_first_kind" , "modified_bessel_second_kind" , "multiply_log" , "multiply_lower_tri_self_transpose" , "negative_infinity" , "norm" , "not_a_number" , "num_elements" , "ode_adams" , "ode_adams_tol" , "ode_adjoint_tol_ctl" , "ode_bdf" , "ode_bdf_tol" , "ode_ckrk" , "ode_ckrk_tol" , "ode_rk45" , "ode_rk45_tol" , "one_hot_array" , "one_hot_int_array" , "one_hot_row_vector" , "one_hot_vector" , "ones_array" , "ones_int_array" , "ones_row_vector" , "ones_vector" , "owens_t" , "polar" , "positive_infinity" , "pow" , "print" , "prod" , "proj" , "qr_Q" , "qr_R" , "qr_thin_Q" , "qr_thin_R" , "quad_form" , "quad_form_diag" , "quad_form_sym" , "quantile" , "rank" , "reduce_sum" , "reject" , "rep_array" , "rep_matrix" , "rep_row_vector" , "rep_vector" , "reverse" , "rising_factorial" , "round" , "row" , "rows" , "rows_dot_product" , "rows_dot_self" , "scale_matrix_exp_multiply" , "sd" , "segment" , "sin" , "singular_values" , "sinh" , "size" , "softmax" , "sort_asc" , "sort_desc" , "sort_indices_asc" , "sort_indices_desc" , "sqrt" , "square" , "squared_distance" , "step" , "sub_col" , "sub_row" , "sum" , "svd_U" , "svd_V" , "symmetrize_from_lower_tri" , "tail" , "tan" , "tanh" , "target" , "tcrossprod" , "tgamma" , "to_array_1d" , "to_array_2d" , "to_complex" , "to_matrix" , "to_row_vector" , "to_vector" , "trace" , "trace_gen_quad_form" , "trace_quad_form" , "trigamma" , "trunc" , "uniform_simplex" , "variance" , "zeros_array" , "zeros_int_array" , "zeros_row_vector" ]
} , contains : [ e . C _LINE _COMMENT _MODE , i , e . HASH _COMMENT _MODE , n , { scope : "built_in" ,
match : /\s(pi|e|sqrt2|log2|log10)(?=\()/ , relevance : 0 } , {
match : t . concat ( /[<,]\s*/ , t . either ( ... r ) , /\s*=/ ) , keywords : r } , { scope : "keyword" ,
match : /\btarget(?=\s*\+=)/ } , {
match : [ /~\s*/ , t . either ( ... a ) , /(?:\(\))/ , /\s*T(?=\s*\[)/ ] , scope : { 2 : "built_in" ,
4 : "keyword" } } , { scope : "built_in" , keywords : a ,
begin : t . concat ( /\w*/ , t . either ( ... a ) , /(_lpdf|_lupdf|_lpmf|_cdf|_lcdf|_lccdf|_qf)(?=\s*[\(.*\)])/ )
} , { begin : [ /~/ , /\s*/ , t . concat ( t . either ( ... a ) , /(?=\s*[\(.*\)])/ ) ] , scope : {
3 : "built_in" } } , {
begin : [ /~/ , /\s*\w+(?=\s*[\(.*\)])/ , "(?!.*/\b(" + t . either ( ... a ) + ")\b)" ] , scope : {
2 : "title.function" } } , { scope : "title.function" ,
begin : /\w*(_lpdf|_lupdf|_lpmf|_cdf|_lcdf|_lccdf|_qf)(?=\s*[\(.*\)])/ } , {
scope : "number" ,
match : t . concat ( /(?:\b\d+(?:_\d+)*(?:\.(?:\d+(?:_\d+)*)?)?|\B\.\d+(?:_\d+)*)/ , /(?:[eE][+-]?\d+(?:_\d+)*)?i?(?!\w)/ ) ,
relevance : 0 } , { scope : "string" , begin : /"/ , end : /"/ } ] } } , grmr _stata : e => ( { name : "Stata" ,
aliases : [ "do" , "ado" ] , case _insensitive : ! 0 ,
keywords : " if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac _7 acprplot acprplot _7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova _estat anova _terms anovadef aorder ap app appe appen append arch arch _dr arch _estat arch _p archlm areg areg _p args arima arima _dr arima _estat arima _p as asmprobit asmprobit _estat asmprobit _lf asmprobit _mfx _ _dlg asmprobit _p ass asse asser assert avplot avplot _7 avplots avplots _7 bcskew0 bgodfrey bias binreg bip0 _lf biplot bipp _lf bipr _lf bipr _p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap _8 boxco _l boxco _p boxcox boxcox _6 boxcox _p bprobit br break brier bro brow brows browse brr brrstat bs bs _7 bsampl _w bsample bsample _7 bsqreg bstat bstat _7 bstat _8 bstrap bstrap _7 bubble bubbleplot ca ca _estat ca _p cabiplot camat canon canon _8 canon _8 _p canon _estat canon _p cap caprojection capt captu captur capture cat cc cchart cchart _7 cci cd censobs _table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog _lf clog _p clogi clogi _sw clogit clogit _lf clogit _p clogitp clogl _sw cloglog clonevar clslistarray cluster cluster _measures cluster _stop cluster _tree cluster _tree _8 clustermat cmdlog cnr cnre cnreg cnreg _p cnreg _sw cnsreg codebook collaps4 collapse colormult _nb colormult _nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr _anti corr _kmo corr _smc corre correl correla correlat correlate corrgram cou coun count cox cox _p cox _sw coxbase coxhaz coxvar cprplot cprplot _7 crc cret cretu cretur creturn cross cs cscript cscript _log csi ct ct _is ctset ctst _5 ctst _st cttost cumsp cumsp _7 cumul cusum cusum _7 cutil d | 0 datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di _g dir dirstats dis discard disp disp _res disp _s displ displa display distinct do doe doed doedi doedit dotplot dotplot _7 dprobit drawnorm drop ds ds _util dstdize duplicates durbina dwstat dydx e | 0 ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg _lf ereg _p ereg _sw ereghet ereghet _glf ereghet _glf _sh ereghet _gp ereghet _ilf ereghet _ilf _sh ereghet _ip eret eretu eretur ereturn err erro error esize est est _cfexist est _cfname est _clickable est _expand est _hold est _table est _unhold est _unholdok estat estat _default estat _summ estat _vce _only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor _estat factor _p factor _pca _rotated factor _rotate factormat fcast fcast _compute fcast _graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh _st file open file read file close file filefilter fillin find _hlp _file findfile findit findit _7 fit fl fli flis flist for5 _0 forest forestplot form forma format fpredict frac _154 frac _adj frac _chk frac _cox frac _ddp frac _dis frac _dv frac _in frac _mun frac _pp frac _pq frac _pv frac _wgt frac _xo fracgen fracplot fracplot _7 fracpoly fracpred fron _ex fron _hn fron _p fron _tn fron _tn2 frontier ftodate ftoe ftomdy ftowdate funnel funnelplot g | 0 gamhet _glf gamhet _gp gamhet _ilf gamhet _ip gamma gamma _d2 gamma _p gamma _sw gammahet gdi _hexagon gdi _spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder _7 glim _l01 glim _l02 glim _l03 glim _l04 glim _l05 glim _l06 glim _l07 glim _l08 glim _l09 glim _l10 glim _l11 glim _l12 glim _lf glim _mu glim _nw1 glim _nw2 glim _nw3 glim _p glim _v1 glim _v2 glim _v3 glim _v4 glim _v5 glim _v6 glim _v7 glm glm _6 glm _p glm _sw glmpred glo glob globa global glogit glogit _8 glogit _p gmeans gnbre _lf gnbreg gnbreg _5 gnbreg _p gomp _lf gompe _sw gomper _p gompertz gompertzhet gomphet _glf gomphet _glf _sh gomphet _gp gomphet _ilf gomphet _ilf _sh gomphet _ip gphdot gphpen gphprint gprefs gprobi _p gprobit gprobit _8 gr gr7 gr _copy gr _current gr _d
contains : [ { className : "symbol" , begin : /`[a-zA-Z0-9_]+'/ } , { className : "variable" ,
begin : /\$\{?[a-zA-Z0-9_]+\}?/ } , { className : "string" , variants : [ {
begin : '`"[^\r\n]*?"\'' } , { begin : '"[^\r\n"]*"' } ] } , { className : "built_in" ,
variants : [ {
begin : "\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\()"
} ] } , e . COMMENT ( "^[ \t]*\\*.*$" , ! 1 ) , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE ]
} ) , grmr _step21 : e => ( { name : "STEP Part 21" , aliases : [ "p21" , "step" , "stp" ] ,
case _insensitive : ! 0 , keywords : { $pattern : "[A-Z_][A-Z0-9_.]*" ,
keyword : [ "HEADER" , "ENDSEC" , "DATA" ] } , contains : [ { className : "meta" ,
begin : "ISO-10303-21;" , relevance : 10 } , { className : "meta" , begin : "END-ISO-10303-21;" ,
relevance : 10
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , e . COMMENT ( "/\\*\\*!" , "\\*/" ) , e . C _NUMBER _MODE , e . inherit ( e . APOS _STRING _MODE , {
illegal : null } ) , e . inherit ( e . QUOTE _STRING _MODE , { illegal : null } ) , {
className : "string" , begin : "'" , end : "'" } , { className : "symbol" , variants : [ { begin : "#" ,
end : "\\d+" , illegal : "\\W" } ] } ] } ) , grmr _stylus : e => { const t = me ( e ) , a = {
className : "variable" , begin : "\\$" + e . IDENT _RE } , n = "(?=[.\\s\\n[:,(])" ; return {
name : "Stylus" , aliases : [ "styl" ] , case _insensitive : ! 1 , keywords : "if else for in" ,
illegal : "(\\?|(\\bReturn\\b)|(\\bEnd\\b)|(\\bend\\b)|(\\bdef\\b)|;|#\\s|\\*\\s|===\\s|\\||%)" ,
contains : [ e . QUOTE _STRING _MODE , e . APOS _STRING _MODE , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , t . HEXCOLOR , {
begin : "\\.[a-zA-Z][a-zA-Z0-9_-]*(?=[.\\s\\n[:,(])" , className : "selector-class" } , {
begin : "#[a-zA-Z][a-zA-Z0-9_-]*(?=[.\\s\\n[:,(])" , className : "selector-id" } , {
begin : "\\b(" + pe . join ( "|" ) + ")" + n , className : "selector-tag" } , {
className : "selector-pseudo" , begin : "&?:(" + Ee . join ( "|" ) + ")" + n } , {
className : "selector-pseudo" , begin : "&?:(:)?(" + Se . join ( "|" ) + ")" + n
} , t . ATTRIBUTE _SELECTOR _MODE , { className : "keyword" , begin : /@media/ , starts : {
end : /[{;}]/ , keywords : { $pattern : /[a-z-]+/ , keyword : "and or not only" ,
attribute : ue . join ( " " ) } , contains : [ t . CSS _NUMBER _MODE ] } } , { className : "keyword" ,
begin : "@((-(o|moz|ms|webkit)-)?(charset|css|debug|extend|font-face|for|import|include|keyframes|media|mixin|page|warn|while))\\b"
} , a , t . CSS _NUMBER _MODE , { className : "function" ,
begin : "^[a-zA-Z][a-zA-Z0-9_-]*\\(.*\\)" , illegal : "[\\n]" , returnBegin : ! 0 ,
contains : [ { className : "title" , begin : "\\b[a-zA-Z][a-zA-Z0-9_-]*" } , {
className : "params" , begin : /\(/ , end : /\)/ ,
contains : [ t . HEXCOLOR , a , e . APOS _STRING _MODE , t . CSS _NUMBER _MODE , e . QUOTE _STRING _MODE ]
} ] } , t . CSS _VARIABLE , { className : "attribute" , begin : "\\b(" + ge . join ( "|" ) + ")\\b" ,
starts : { end : /;|$/ ,
contains : [ t . HEXCOLOR , a , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , t . CSS _NUMBER _MODE , e . C _BLOCK _COMMENT _MODE , t . IMPORTANT ] ,
illegal : /\./ , relevance : 0 } } , t . FUNCTION _DISPATCH ] } } , grmr _subunit : e => ( {
name : "SubUnit" , case _insensitive : ! 0 , contains : [ { className : "string" ,
begin : "\\[\n(multipart)?" , end : "\\]\n" } , { className : "string" ,
begin : "\\d{4}-\\d{2}-\\d{2}(\\s+)\\d{2}:\\d{2}:\\d{2}.\\d+Z" } , {
className : "string" , begin : "(\\+|-)\\d+" } , { className : "keyword" , relevance : 10 ,
variants : [ {
begin : "^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\s+(test)?"
} , { begin : "^progress(:?)(\\s+)?(pop|push)?" } , { begin : "^tags:" } , { begin : "^time:" } ] } ]
} ) , grmr _swift : e => { const t = { match : /\s+/ , relevance : 0 } , a = e . COMMENT ( "/\\*" , "\\*/" , {
contains : [ "self" ] } ) , n = [ e . C _LINE _COMMENT _MODE , a ] , i = { match : [ /\./ , S ( ... Ae , ... ve ) ] ,
className : { 2 : "keyword" } } , r = { match : E ( /\./ , S ( ... De ) ) , relevance : 0
} , s = De . filter ( ( e => "string" == typeof e ) ) . concat ( [ "_|0" ] ) , o = { variants : [ {
2021-10-19 23:53:22 -07:00
className : "keyword" ,
2022-01-15 21:29:41 -08:00
match : S ( ... De . filter ( ( e => "string" != typeof e ) ) . concat ( ye ) . map ( he ) , ... ve ) } ] } , l = {
$pattern : S ( /\b\w+/ , /#\w+/ ) , keyword : s . concat ( xe ) , literal : Me } , _ = [ i , r , o ] , c = [ {
match : E ( /\./ , S ( ... we ) ) , relevance : 0 } , { className : "built_in" ,
match : E ( /\b/ , S ( ... we ) , /(?=\()/ ) } ] , d = { match : /->/ , relevance : 0 } , p = [ d , {
className : "operator" , relevance : 0 , variants : [ { match : Ue } , { match : ` \\ .( \\ .| ${ ke } )+ ` } ]
} ] , u = "([0-9a-fA-F]_*)+" , g = { className : "number" , relevance : 0 , variants : [ {
2021-10-19 23:53:22 -07:00
match : "\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b" } , {
2022-01-15 21:29:41 -08:00
match : ` \\ b0x( ${ u } )( \\ .( ${ u } ))?([pP][+-]?(([0-9]_*)+))? \\ b ` } , {
match : /\b0o([0-7]_*)+\b/ } , { match : /\b0b([01]_*)+\b/ } ] } , T = ( e = "" ) => ( {
className : "subst" , variants : [ { match : E ( /\\/ , e , /[0\\tnr"']/ ) } , {
match : E ( /\\/ , e , /u\{[0-9a-fA-F]{1,8}\}/ ) } ] } ) , b = ( e = "" ) => ( { className : "subst" ,
match : E ( /\\/ , e , /[\t ]*(?:[\r\n]|\r\n)/ ) } ) , C = ( e = "" ) => ( { className : "subst" ,
label : "interpol" , begin : E ( /\\/ , e , /\(/ ) , end : /\)/ } ) , R = ( e = "" ) => ( { begin : E ( e , /"""/ ) ,
end : E ( /"""/ , e ) , contains : [ T ( e ) , b ( e ) , C ( e ) ] } ) , N = ( e = "" ) => ( { begin : E ( e , /"/ ) ,
end : E ( /"/ , e ) , contains : [ T ( e ) , C ( e ) ] } ) , O = { className : "string" ,
variants : [ R ( ) , R ( "#" ) , R ( "##" ) , R ( "###" ) , N ( ) , N ( "#" ) , N ( "##" ) , N ( "###" ) ] } , f = {
match : E ( /`/ , Ge , /`/ ) } , I = [ f , { className : "variable" , match : /\$\d+/ } , {
className : "variable" , match : ` \\ $ ${ Be } + ` } ] , h = [ { match : /(@|#(un)?)available/ ,
className : "keyword" , starts : { contains : [ { begin : /\(/ , end : /\)/ , keywords : Ve ,
contains : [ ... p , g , O ] } ] } } , { className : "keyword" , match : E ( /@/ , S ( ... He ) ) } , {
className : "meta" , match : E ( /@/ , Ge ) } ] , A = { match : m ( /\b[A-Z]/ ) , relevance : 0 , contains : [ {
2021-10-19 23:53:22 -07:00
className : "type" ,
2022-01-15 21:29:41 -08:00
match : E ( /(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/ , Be , "+" )
} , { className : "type" , match : Ye , relevance : 0 } , { match : /[?!]+/ , relevance : 0 } , {
match : /\.\.\./ , relevance : 0 } , { match : E ( /\s+&\s+/ , m ( Ye ) ) , relevance : 0 } ] } , v = {
begin : /</ , end : />/ , keywords : l , contains : [ ... n , ... _ , ... h , d , A ] } ; A . contains . push ( v )
; const y = { begin : /\(/ , end : /\)/ , relevance : 0 , keywords : l , contains : [ "self" , {
match : E ( Ge , /\s*:/ ) , keywords : "_|0" , relevance : 0
} , ... n , ... _ , ... c , ... p , g , O , ... I , ... h , A ] } , D = { begin : /</ , end : />/ , contains : [ ... n , A ]
} , M = { begin : /\(/ , end : /\)/ , keywords : l , contains : [ {
begin : S ( m ( E ( Ge , /\s*:/ ) ) , m ( E ( Ge , /\s+/ , Ge , /\s*:/ ) ) ) , end : /:/ , relevance : 0 ,
contains : [ { className : "keyword" , match : /\b_\b/ } , { className : "params" , match : Ge } ]
} , ... n , ... _ , ... p , g , O , ... h , A , y ] , endsParent : ! 0 , illegal : /["']/ } , L = {
match : [ /func/ , /\s+/ , S ( f . match , Ge , Ue ) ] , className : { 1 : "keyword" , 3 : "title.function"
} , contains : [ D , M , t ] , illegal : [ /\[/ , /%/ ] } , x = {
2021-10-19 23:53:22 -07:00
match : [ /\b(?:subscript|init[?!]?)/ , /\s*(?=[<(])/ ] , className : { 1 : "keyword" } ,
2022-01-15 21:29:41 -08:00
contains : [ D , M , t ] , illegal : /\[|%/ } , w = { match : [ /operator/ , /\s+/ , Ue ] , className : {
1 : "keyword" , 3 : "title" } } , P = { begin : [ /precedencegroup/ , /\s+/ , Ye ] , className : {
1 : "keyword" , 3 : "title" } , contains : [ A ] , keywords : [ ... Le , ... Me ] , end : /}/ }
; for ( const e of O . variants ) { const t = e . contains . find ( ( e => "interpol" === e . label ) )
; t . keywords = l ; const a = [ ... _ , ... c , ... p , g , O , ... I ] ; t . contains = [ ... a , { begin : /\(/ ,
end : /\)/ , contains : [ "self" , ... a ] } ] } return { name : "Swift" , keywords : l ,
contains : [ ... n , L , x , { beginKeywords : "struct protocol class extension enum actor" ,
2021-10-19 23:53:22 -07:00
end : "\\{" , excludeEnd : ! 0 , keywords : l , contains : [ e . inherit ( e . TITLE _MODE , {
2022-01-15 21:29:41 -08:00
className : "title.class" , begin : /[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/ } ) , ... _ ]
} , w , P , { beginKeywords : "import" , end : /$/ , contains : [ ... n ] , relevance : 0
} , ... _ , ... c , ... p , g , O , ... I , ... h , A , y ] } } , grmr _taggerscript : e => ( {
name : "Tagger Script" , contains : [ { className : "comment" , begin : /\$noop\(/ , end : /\)/ ,
contains : [ { begin : /\\[()]/ } , { begin : /\(/ , end : /\)/ , contains : [ { begin : /\\[()]/
} , "self" ] } ] , relevance : 10 } , { className : "keyword" , begin : /\$[_a-zA-Z0-9]+(?=\()/ } , {
className : "variable" , begin : /%[_a-zA-Z0-9:]+%/ } , { className : "symbol" ,
begin : /\\[\\nt$%,()]/ } , { className : "symbol" , begin : /\\u[a-fA-F0-9]{4}/ } ] } ) ,
grmr _yaml : e => {
const t = "true false yes no null" , a = "[\\w#;/?:@&=+$,.~*'()[\\]]+" , n = {
className : "string" , relevance : 0 , variants : [ { begin : /'/ , end : /'/ } , { begin : /"/ , end : /"/
} , { begin : /\S+/ } ] , contains : [ e . BACKSLASH _ESCAPE , { className : "template-variable" ,
variants : [ { begin : /\{\{/ , end : /\}\}/ } , { begin : /%\{/ , end : /\}/ } ] } ] } , i = e . inherit ( n , {
variants : [ { begin : /'/ , end : /'/ } , { begin : /"/ , end : /"/ } , { begin : /[^\s,{}[\]]+/ } ] } ) , r = {
end : "," , endsWithParent : ! 0 , excludeEnd : ! 0 , keywords : t , relevance : 0 } , s = { begin : /\{/ ,
end : /\}/ , contains : [ r ] , illegal : "\\n" , relevance : 0 } , o = { begin : "\\[" , end : "\\]" ,
contains : [ r ] , illegal : "\\n" , relevance : 0 } , l = [ { className : "attr" , variants : [ {
begin : "\\w[\\w :\\/.-]*:(?=[ \t]|$)" } , { begin : '"\\w[\\w :\\/.-]*":(?=[ \t]|$)' } , {
begin : "'\\w[\\w :\\/.-]*':(?=[ \t]|$)" } ] } , { className : "meta" , begin : "^---\\s*$" ,
relevance : 10 } , { className : "string" ,
begin : "[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*" } , {
begin : "<%[%=-]?" , end : "[%-]?%>" , subLanguage : "ruby" , excludeBegin : ! 0 , excludeEnd : ! 0 ,
relevance : 0 } , { className : "type" , begin : "!\\w+!" + a } , { className : "type" ,
begin : "!<" + a + ">" } , { className : "type" , begin : "!" + a } , { className : "type" , begin : "!!" + a
} , { className : "meta" , begin : "&" + e . UNDERSCORE _IDENT _RE + "$" } , { className : "meta" ,
begin : "\\*" + e . UNDERSCORE _IDENT _RE + "$" } , { className : "bullet" , begin : "-(?=[ ]|$)" ,
relevance : 0 } , e . HASH _COMMENT _MODE , { beginKeywords : t , keywords : { literal : t } } , {
className : "number" ,
begin : "\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b"
} , { className : "number" , begin : e . C _NUMBER _RE + "\\b" , relevance : 0 } , s , o , n ] , _ = [ ... l ]
; return _ . pop ( ) , _ . push ( i ) , r . contains = _ , { name : "YAML" , case _insensitive : ! 0 ,
aliases : [ "yml" ] , contains : l } } , grmr _tap : e => ( { name : "Test Anything Protocol" ,
case _insensitive : ! 0 , contains : [ e . HASH _COMMENT _MODE , { className : "meta" , variants : [ {
begin : "^TAP version (\\d+)$" } , { begin : "^1\\.\\.(\\d+)$" } ] } , { begin : /---$/ ,
end : "\\.\\.\\.$" , subLanguage : "yaml" , relevance : 0 } , { className : "number" ,
begin : " (\\d+) " } , { className : "symbol" , variants : [ { begin : "^ok" } , { begin : "^not ok" } ]
} ] } ) , grmr _tcl : e => { const t = e . regex , a = /[a-zA-Z_][a-zA-Z0-9_]*/ , n = {
className : "number" , variants : [ e . BINARY _NUMBER _MODE , e . C _NUMBER _MODE ] } ; return {
name : "Tcl" , aliases : [ "tk" ] ,
keywords : [ "after" , "append" , "apply" , "array" , "auto_execok" , "auto_import" , "auto_load" , "auto_mkindex" , "auto_mkindex_old" , "auto_qualify" , "auto_reset" , "bgerror" , "binary" , "break" , "catch" , "cd" , "chan" , "clock" , "close" , "concat" , "continue" , "dde" , "dict" , "encoding" , "eof" , "error" , "eval" , "exec" , "exit" , "expr" , "fblocked" , "fconfigure" , "fcopy" , "file" , "fileevent" , "filename" , "flush" , "for" , "foreach" , "format" , "gets" , "glob" , "global" , "history" , "http" , "if" , "incr" , "info" , "interp" , "join" , "lappend|10" , "lassign|10" , "lindex|10" , "linsert|10" , "list" , "llength|10" , "load" , "lrange|10" , "lrepeat|10" , "lreplace|10" , "lreverse|10" , "lsearch|10" , "lset|10" , "lsort|10" , "mathfunc" , "mathop" , "memory" , "msgcat" , "namespace" , "open" , "package" , "parray" , "pid" , "pkg::create" , "pkg_mkIndex" , "platform" , "platform::shell" , "proc" , "puts" , "pwd" , "read" , "refchan" , "regexp" , "registry" , "regsub|10" , "rename" , "return" , "safe" , "scan" , "seek" , "set" , "socket" , "source" , "split" , "string" , "subst" , "switch" , "tcl_endOfWord" , "tcl_findLibrary" , "tcl_startOfNextWord" , "tcl_startOfPreviousWord" , "tcl_wordBreakAfter" , "tcl_wordBreakBefore" , "tcltest" , "tclvars" , "tell" , "time" , "tm" , "trace" , "unknown" , "unload" , "unset" , "update" , "uplevel" , "upvar" , "variable" , "vwait" , "while" ] ,
contains : [ e . COMMENT ( ";[ \\t]*#" , "$" ) , e . COMMENT ( "^[ \\t]*#" , "$" ) , {
beginKeywords : "proc" , end : "[\\{]" , excludeEnd : ! 0 , contains : [ { className : "title" ,
begin : "[ \\t\\n\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*" , end : "[ \\t\\n\\r]" ,
endsWithParent : ! 0 , excludeEnd : ! 0 } ] } , { className : "variable" , variants : [ {
begin : t . concat ( /\$/ , t . optional ( /::/ ) , a , "(::" , a , ")*" ) } , {
begin : "\\$\\{(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*" , end : "\\}" , contains : [ n ] } ] } , {
className : "string" , contains : [ e . BACKSLASH _ESCAPE ] ,
variants : [ e . inherit ( e . QUOTE _STRING _MODE , { illegal : null } ) ] } , n ] } } , grmr _thrift : e => {
const t = [ "bool" , "byte" , "i16" , "i32" , "i64" , "double" , "string" , "binary" ] ; return {
name : "Thrift" , keywords : {
keyword : [ "namespace" , "const" , "typedef" , "struct" , "enum" , "service" , "exception" , "void" , "oneway" , "set" , "list" , "map" , "required" , "optional" ] ,
type : t , literal : "true false" } ,
contains : [ e . QUOTE _STRING _MODE , e . NUMBER _MODE , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , {
className : "class" , beginKeywords : "struct enum service exception" , end : /\{/ ,
illegal : /\n/ , contains : [ e . inherit ( e . TITLE _MODE , { starts : { endsWithParent : ! 0 ,
excludeEnd : ! 0 } } ) ] } , { begin : "\\b(set|list|map)\\s*<" , keywords : {
type : [ ... t , "set" , "list" , "map" ] } , end : ">" , contains : [ "self" ] } ] } } , grmr _tp : e => {
const t = { className : "number" , begin : "[1-9][0-9]*" , relevance : 0 } , a = {
className : "symbol" , begin : ":[^\\]]+" } ; return { name : "TP" , keywords : {
keyword : [ "ABORT" , "ACC" , "ADJUST" , "AND" , "AP_LD" , "BREAK" , "CALL" , "CNT" , "COL" , "CONDITION" , "CONFIG" , "DA" , "DB" , "DIV" , "DETECT" , "ELSE" , "END" , "ENDFOR" , "ERR_NUM" , "ERROR_PROG" , "FINE" , "FOR" , "GP" , "GUARD" , "INC" , "IF" , "JMP" , "LINEAR_MAX_SPEED" , "LOCK" , "MOD" , "MONITOR" , "OFFSET" , "Offset" , "OR" , "OVERRIDE" , "PAUSE" , "PREG" , "PTH" , "RT_LD" , "RUN" , "SELECT" , "SKIP" , "Skip" , "TA" , "TB" , "TO" , "TOOL_OFFSET" , "Tool_Offset" , "UF" , "UT" , "UFRAME_NUM" , "UTOOL_NUM" , "UNLOCK" , "WAIT" , "X" , "Y" , "Z" , "W" , "P" , "R" , "STRLEN" , "SUBSTR" , "FINDSTR" , "VOFFSET" , "PROG" , "ATTR" , "MN" , "POS" ] ,
literal : [ "ON" , "OFF" , "max_speed" , "LPOS" , "JPOS" , "ENABLE" , "DISABLE" , "START" , "STOP" , "RESET" ]
} , contains : [ { className : "built_in" ,
begin : "(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\[" ,
end : "\\]" , contains : [ "self" , t , a ] } , { className : "built_in" ,
begin : "(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\[" , end : "\\]" ,
contains : [ "self" , t , e . QUOTE _STRING _MODE , a ] } , { className : "keyword" ,
begin : "/(PROG|ATTR|MN|POS|END)\\b" } , { className : "keyword" ,
begin : "(CALL|RUN|POINT_LOGIC|LBL)\\b" } , { className : "keyword" ,
begin : "\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)" } , {
className : "number" ,
begin : "\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\b" , relevance : 0
} , e . COMMENT ( "//" , "[;$]" ) , e . COMMENT ( "!" , "[;$]" ) , e . COMMENT ( "--eg:" , "$" ) , e . QUOTE _STRING _MODE , {
className : "string" , begin : "'" , end : "'" } , e . C _NUMBER _MODE , { className : "variable" ,
begin : "\\$[A-Za-z0-9_]+" } ] } } , grmr _twig : e => {
const t = e . regex , a = [ "attribute" , "block" , "constant" , "country_timezones" , "cycle" , "date" , "dump" , "html_classes" , "include" , "max" , "min" , "parent" , "random" , "range" , "source" , "template_from_string" ]
; let n = [ "apply" , "autoescape" , "block" , "cache" , "deprecated" , "do" , "embed" , "extends" , "filter" , "flush" , "for" , "from" , "if" , "import" , "include" , "macro" , "sandbox" , "set" , "use" , "verbatim" , "with" ]
; n = n . concat ( n . map ( ( e => "end" + e ) ) ) ; const i = { scope : "string" , variants : [ { begin : /'/ ,
end : /'/ } , { begin : /"/ , end : /"/ } ] } , r = { scope : "number" , match : /\d+/ } , s = { begin : /\(/ ,
end : /\)/ , excludeBegin : ! 0 , excludeEnd : ! 0 , contains : [ i , r ] } , o = {
beginKeywords : a . join ( " " ) , keywords : { name : a } , relevance : 0 , contains : [ s ] } , l = {
match : /\|(?=[A-Za-z_]+:?)/ , beginScope : "punctuation" , relevance : 0 , contains : [ {
match : /[A-Za-z_]+:?/ ,
keywords : [ "abs" , "batch" , "capitalize" , "column" , "convert_encoding" , "country_name" , "currency_name" , "currency_symbol" , "data_uri" , "date" , "date_modify" , "default" , "escape" , "filter" , "first" , "format" , "format_currency" , "format_date" , "format_datetime" , "format_number" , "format_time" , "html_to_markdown" , "inky_to_html" , "inline_css" , "join" , "json_encode" , "keys" , "language_name" , "last" , "length" , "locale_name" , "lower" , "map" , "markdown" , "markdown_to_html" , "merge" , "nl2br" , "number_format" , "raw" , "reduce" , "replace" , "reverse" , "round" , "slice" , "slug" , "sort" , "spaceless" , "split" , "striptags" , "timezone_name" , "title" , "trim" , "u|0" , "upper" , "url_encode" ]
} ] } , _ = ( e , { relevance : a } ) => ( { beginScope : { 1 : "template-tag" , 3 : "name" } ,
relevance : a || 2 , endScope : "template-tag" , begin : [ /\{%/ , /\s*/ , t . either ( ... e ) ] ,
end : /%\}/ , keywords : "in" , contains : [ l , o , i , r ] } ) , c = _ ( n , { relevance : 2
} ) , d = _ ( [ /[a-z_]+/ ] , { relevance : 1 } ) ; return { name : "Twig" , aliases : [ "craftcms" ] ,
case _insensitive : ! 0 , subLanguage : "xml" , contains : [ e . COMMENT ( /\{#/ , /#\}/ ) , c , d , {
className : "template-variable" , begin : /\{\{/ , end : /\}\}/ , contains : [ "self" , l , o , i , r ]
} ] } } , grmr _typescript : e => {
const t = fe ( e ) , a = [ "any" , "void" , "number" , "boolean" , "string" , "object" , "never" , "enum" ] , n = {
2021-10-19 23:53:22 -07:00
beginKeywords : "namespace" , end : /\{/ , excludeEnd : ! 0 ,
2022-01-15 21:29:41 -08:00
contains : [ t . exports . CLASS _REFERENCE ] } , i = { beginKeywords : "interface" , end : /\{/ ,
excludeEnd : ! 0 , keywords : { keyword : "interface extends" , built _in : a } ,
contains : [ t . exports . CLASS _REFERENCE ] } , r = { $pattern : ie ,
keyword : re . concat ( [ "type" , "namespace" , "typedef" , "interface" , "public" , "private" , "protected" , "implements" , "declare" , "abstract" , "readonly" ] ) ,
literal : se , built _in : de . concat ( a ) , "variable.language" : ce } , s = { className : "meta" ,
begin : "@[A-Za-z$_][0-9A-Za-z$_]*" } , o = ( e , t , a ) => {
const n = e . contains . findIndex ( ( e => e . label === t ) )
; if ( - 1 === n ) throw Error ( "can not find mode to replace" ) ; e . contains . splice ( n , 1 , a ) }
; return Object . assign ( t . keywords , r ) ,
t . exports . PARAMS _CONTAINS . push ( s ) , t . contains = t . contains . concat ( [ s , n , i ] ) ,
o ( t , "shebang" , e . SHEBANG ( ) ) , o ( t , "use_strict" , { className : "meta" , relevance : 10 ,
2021-10-19 23:53:22 -07:00
begin : /^\s*['"]use strict['"]/
2022-01-15 21:29:41 -08:00
} ) , t . contains . find ( ( e => "func.def" === e . label ) ) . relevance = 0 , Object . assign ( t , {
name : "TypeScript" , aliases : [ "ts" , "tsx" ] } ) , t } , grmr _vala : e => ( { name : "Vala" ,
keywords : {
keyword : "char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override virtual delegate if while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var" ,
built _in : "DBus GLib CCode Gee Object Gtk Posix" , literal : "false true null" } ,
contains : [ { className : "class" , beginKeywords : "class interface namespace" , end : /\{/ ,
excludeEnd : ! 0 , illegal : "[^,:\\n\\s\\.]" , contains : [ e . UNDERSCORE _TITLE _MODE ]
} , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , { className : "string" , begin : '"""' ,
end : '"""' , relevance : 5 } , e . APOS _STRING _MODE , e . QUOTE _STRING _MODE , e . C _NUMBER _MODE , {
className : "meta" , begin : "^#" , end : "$" } ] } ) , grmr _vbnet : e => {
const t = e . regex , a = /\d{1,2}\/\d{1,2}\/\d{4}/ , n = /\d{4}-\d{1,2}-\d{1,2}/ , i = /(\d|1[012])(:\d+){0,2} *(AM|PM)/ , r = /\d{1,2}(:\d{1,2}){1,2}/ , s = {
className : "literal" , variants : [ { begin : t . concat ( /# */ , t . either ( n , a ) , / *#/ ) } , {
begin : t . concat ( /# */ , r , / *#/ ) } , { begin : t . concat ( /# */ , i , / *#/ ) } , {
begin : t . concat ( /# */ , t . either ( n , a ) , / +/ , t . either ( i , r ) , / *#/ ) } ]
2021-10-19 23:53:22 -07:00
} , o = e . COMMENT ( /'''/ , /$/ , { contains : [ { className : "doctag" , begin : /<\/?/ , end : />/ } ]
} ) , l = e . COMMENT ( null , /$/ , { variants : [ { begin : /'/ } , { begin : /([\t ]|^)REM(?=\s)/ } ] } )
; return { name : "Visual Basic .NET" , aliases : [ "vb" ] , case _insensitive : ! 0 ,
classNameAliases : { label : "symbol" } , keywords : {
keyword : "addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield" ,
built _in : "addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort" ,
type : "boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort" ,
literal : "true false nothing" } ,
illegal : "//|\\{|\\}|endif|gosub|variant|wend|^\\$ " , contains : [ {
className : "string" , begin : /"(""|[^/n])"C\b/ } , { className : "string" , begin : /"/ ,
end : /"/ , illegal : /\n/ , contains : [ { begin : /""/ } ] } , s , { className : "number" , relevance : 0 ,
variants : [ { begin : /\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/
} , { begin : /\b\d[\d_]*((U?[SIL])|[%&])?/ } , { begin : /&H[\dA-F_]+((U?[SIL])|[%&])?/ } , {
begin : /&O[0-7_]+((U?[SIL])|[%&])?/ } , { begin : /&B[01_]+((U?[SIL])|[%&])?/ } ] } , {
className : "label" , begin : /^\w+:/ } , o , l , { className : "meta" ,
begin : /[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/ ,
end : /$/ , keywords : {
keyword : "const disable else elseif enable end externalsource if region then" } ,
2022-01-15 21:29:41 -08:00
contains : [ l ] } ] } } , grmr _vbscript : e => {
const t = e . regex , a = [ "lcase" , "month" , "vartype" , "instrrev" , "ubound" , "setlocale" , "getobject" , "rgb" , "getref" , "string" , "weekdayname" , "rnd" , "dateadd" , "monthname" , "now" , "day" , "minute" , "isarray" , "cbool" , "round" , "formatcurrency" , "conversions" , "csng" , "timevalue" , "second" , "year" , "space" , "abs" , "clng" , "timeserial" , "fixs" , "len" , "asc" , "isempty" , "maths" , "dateserial" , "atn" , "timer" , "isobject" , "filter" , "weekday" , "datevalue" , "ccur" , "isdate" , "instr" , "datediff" , "formatdatetime" , "replace" , "isnull" , "right" , "sgn" , "array" , "snumeric" , "log" , "cdbl" , "hex" , "chr" , "lbound" , "msgbox" , "ucase" , "getlocale" , "cos" , "cdate" , "cbyte" , "rtrim" , "join" , "hour" , "oct" , "typename" , "trim" , "strcomp" , "int" , "createobject" , "loadpicture" , "tan" , "formatnumber" , "mid" , "split" , "cint" , "sin" , "datepart" , "ltrim" , "sqr" , "time" , "derived" , "eval" , "date" , "formatpercent" , "exp" , "inputbox" , "left" , "ascw" , "chrw" , "regexp" , "cstr" , "err" ]
; return { name : "VBScript" , aliases : [ "vbs" ] , case _insensitive : ! 0 , keywords : {
keyword : [ "call" , "class" , "const" , "dim" , "do" , "loop" , "erase" , "execute" , "executeglobal" , "exit" , "for" , "each" , "next" , "function" , "if" , "then" , "else" , "on" , "error" , "option" , "explicit" , "new" , "private" , "property" , "let" , "get" , "public" , "randomize" , "redim" , "rem" , "select" , "case" , "set" , "stop" , "sub" , "while" , "wend" , "with" , "end" , "to" , "elseif" , "is" , "or" , "xor" , "and" , "not" , "class_initialize" , "class_terminate" , "default" , "preserve" , "in" , "me" , "byval" , "byref" , "step" , "resume" , "goto" ] ,
built _in : [ "server" , "response" , "request" , "scriptengine" , "scriptenginebuildversion" , "scriptengineminorversion" , "scriptenginemajorversion" ] ,
literal : [ "true" , "false" , "null" , "nothing" , "empty" ] } , illegal : "//" , contains : [ {
begin : t . concat ( t . either ( ... a ) , "\\s*\\(" ) , relevance : 0 , keywords : { built _in : a }
} , e . inherit ( e . QUOTE _STRING _MODE , { contains : [ { begin : '""' } ] } ) , e . COMMENT ( /'/ , /$/ , {
relevance : 0 } ) , e . C _NUMBER _MODE ] } } , grmr _vbscript _html : e => ( {
name : "VBScript in HTML" , subLanguage : "xml" , contains : [ { begin : "<%" , end : "%>" ,
subLanguage : "vbscript" } ] } ) , grmr _verilog : e => {
const t = e . regex , a = [ "begin_keywords" , "celldefine" , "default_nettype" , "default_decay_time" , "default_trireg_strength" , "define" , "delay_mode_distributed" , "delay_mode_path" , "delay_mode_unit" , "delay_mode_zero" , "else" , "elsif" , "end_keywords" , "endcelldefine" , "endif" , "ifdef" , "ifndef" , "include" , "line" , "nounconnected_drive" , "pragma" , "resetall" , "timescale" , "unconnected_drive" , "undef" , "undefineall" ]
; return { name : "Verilog" , aliases : [ "v" , "sv" , "svh" ] , case _insensitive : ! 1 , keywords : {
$pattern : /\$?[\w]+(\$[\w]+)*/ ,
keyword : [ "accept_on" , "alias" , "always" , "always_comb" , "always_ff" , "always_latch" , "and" , "assert" , "assign" , "assume" , "automatic" , "before" , "begin" , "bind" , "bins" , "binsof" , "bit" , "break" , "buf|0" , "bufif0" , "bufif1" , "byte" , "case" , "casex" , "casez" , "cell" , "chandle" , "checker" , "class" , "clocking" , "cmos" , "config" , "const" , "constraint" , "context" , "continue" , "cover" , "covergroup" , "coverpoint" , "cross" , "deassign" , "default" , "defparam" , "design" , "disable" , "dist" , "do" , "edge" , "else" , "end" , "endcase" , "endchecker" , "endclass" , "endclocking" , "endconfig" , "endfunction" , "endgenerate" , "endgroup" , "endinterface" , "endmodule" , "endpackage" , "endprimitive" , "endprogram" , "endproperty" , "endspecify" , "endsequence" , "endtable" , "endtask" , "enum" , "event" , "eventually" , "expect" , "export" , "extends" , "extern" , "final" , "first_match" , "for" , "force" , "foreach" , "forever" , "fork" , "forkjoin" , "function" , "generate|5" , "genvar" , "global" , "highz0" , "highz1" , "if" , "iff" , "ifnone" , "ignore_bins" , "illegal_bins" , "implements" , "implies" , "import" , "incdir" , "include" , "initial" , "inout" , "input" , "inside" , "instance" , "int" , "integer" , "interconnect" , "interface" , "intersect" , "join" , "join_any" , "join_none" , "large" , "let" , "liblist" , "library" , "local" , "localparam" , "logic" , "longint" , "macromodule" , "matches" , "medium" , "modport" , "module" , "nand" , "negedge" , "nettype" , "new" , "nexttime" , "nmos" , "nor" , "noshowcancelled" , "not" , "notif0" , "notif1" , "or" , "output" , "package" , "packed" , "parameter" , "pmos" , "posedge" , "primitive" , "priority" , "program" , "property" , "protected" , "pull0" , "pull1" , "pulldown" , "pullup" , "pulsestyle_ondetect" , "pulsestyle_onevent" , "pure" , "rand" , "randc" , "randcase" , "randsequence" , "rcmos" , "real" , "realtime" , "ref" , "reg" , "reject_on" , "release" , "repeat" , "restrict" , "return" , "rnmos" , "rpmos" , "rtran" , "rtranif0" , "rtranif1" , "s_always" , "s_eventually" , "s_nexttime" , "s_until" , "s_until_with" , "scalared" , "sequence" , "shortint" , "shortreal" , "showcancelled" , "signed" , "small" , "soft" , "solve" , "specify" , "specparam" , "static" , "string" , "strong" , "strong0" , "strong1" , "struct" , "super" , "supply0" , "supply1" , "sync_accept_on" , "sync_reject_on" , "table" , "tagged" , "task" , "this" , "throughout" , "time" , "timeprecision" , "timeunit" , "tran" , "tranif0" , "tranif1" , "tri" , "tri0" , "tri1" , "triand" , "trior" , "trireg" , "type" , "typedef" , "union" , "unique" , "unique0" , "unsigned" , "until" , "until_with" , "untyped" , "use" , "uwire" , "var" , "vectored" , "virtual" , "void" , "wait" , "wait_order" , "wand" , "weak" , "weak0" , "weak1" , "while" , "wildcard" , "wire" , "with" , "within" , "wor" , "xnor" , "xor" ] ,
literal : [ "null" ] ,
built _in : [ "$finish" , "$stop" , "$exit" , "$fatal" , "$error" , "$warning" , "$info" , "$realtime" , "$time" , "$printtimescale" , "$bitstoreal" , "$bitstoshortreal" , "$itor" , "$signed" , "$cast" , "$bits" , "$stime" , "$timeformat" , "$realtobits" , "$shortrealtobits" , "$rtoi" , "$unsigned" , "$asserton" , "$assertkill" , "$assertpasson" , "$assertfailon" , "$assertnonvacuouson" , "$assertoff" , "$assertcontrol" , "$assertpassoff" , "$assertfailoff" , "$assertvacuousoff" , "$isunbounded" , "$sampled" , "$fell" , "$changed" , "$past_gclk" , "$fell_gclk" , "$changed_gclk" , "$rising_gclk" , "$steady_gclk" , "$coverage_control" , "$coverage_get" , "$coverage_save" , "$set_coverage_db_name" , "$rose" , "$stable" , "$past" , "$rose_gclk" , "$stable_gclk" , "$future_gclk" , "$falling_gclk" , "$changing_gclk" , "$display" , "$coverage_get_max" , "$coverage_merge" , "$get_coverage" , "$load_coverage_db" , "$typename" , "$unpacked_dimensions" , "$left" , "$low" , "$increment" , "$clog2" , "$ln" , "$log10" , "$exp" , "$sqrt" , "$pow" , "$floor" , "$ceil" , "$sin" , "$cos" , "$tan" , "$countbits" , "$onehot" , "$isunknown" , "$fatal" , "$warning" , "$dimensions" , "$right" , "$high" , "$size" , "$asin" , "$acos" , "$atan" , "$atan2" , "$hypot" , "$sinh" , "$cosh" , "$tanh" , "$asinh" , "$acosh" , "$atanh" , "$countones" , "$onehot0" , "$error" , "$info" , "$random" , "$dist_chi_square" , "$dist_erlang" , "$dist_exponential" , "$dist_normal" , "$dist_poisson" , "$dist_t" , "$dist_uniform" , "$q_initialize" , "$q_remove" , "$q_exam" , "$async$and$array" , "$async$nand$array" , "$async$or$array" , "$async$nor$array" , "$sync$and$array" , "$sync$nand$array" , "$sync$or$array" , "$sync$nor$array" , "$q_add" , "$q_full" , "$psprintf" , "$async$and$plane" , "$async$nand$plane" , "$async$or$plane" , "$async$nor$plane" , "$sync$and$plane" , "$sync$nand$plane" , "$sync$or$plane" , "$sync$nor$plane" , "$system" , "$display" , "$displayb" , "$displayh" , "$displayo" , "$strobe" , "$strobeb" , "$strobeh" , "$strobeo" , "$write" , "$readmemb" , "$readmemh" , "$writememh" , "$value$plusargs" , "$dumpvars" , "$dumpon" , "$dumplimit" , "$dumpports" , "$dumpportson" , "$dumpportslimit" , "$writeb" , "$writeh" , "$writeo" , "$monitor" , "$monitorb" , "$monitorh" , "$monitoro" , "$writememb" , "$dumpfile" , "$dumpoff" , "$dumpall" , "$dumpflush" , "$dumpportsoff" , "$dumpportsall" , "$dumpportsflush" , "$fclose" , "$fdisplay" , "$fdisplayb" , "$fdisplayh" , "$fdisplayo" , "$fstrobe" , "$fstrobeb" , "$fstrobeh" , "$fstrobeo" , "$swrite" , "$swriteb" , "$swriteh" , "$swriteo" , "$fscanf" , "$fread" , "$fseek" , "$fflush" , "$feof" , "$fopen" , "$fwrite" , "$fwriteb" , "$fwriteh" , "$fwriteo" , "$fmonitor" , "$fmonitorb" , "$fmonitorh" , "$fmonitoro" , "$sformat" , "$sformatf" , "$fgetc" , "$ungetc" , "$fgets" , "$sscanf" , "$rewind" , "$ftell" , "$ferror" ]
} , contains : [ e . C _BLOCK _COMMENT _MODE , e . C _LINE _COMMENT _MODE , e . QUOTE _STRING _MODE , {
scope : "number" , contains : [ e . BACKSLASH _ESCAPE ] , variants : [ {
begin : /\b((\d+'([bhodBHOD]))[0-9xzXZa-fA-F_]+)/ } , {
begin : /\B(('([bhodBHOD]))[0-9xzXZa-fA-F_]+)/ } , { begin : /\b[0-9][0-9_]*/ ,
relevance : 0 } ] } , { scope : "variable" , variants : [ { begin : "#\\((?!parameter).+\\)" } , {
begin : "\\.\\w+" , relevance : 0 } ] } , { scope : "variable.constant" ,
match : t . concat ( /`/ , t . either ( "__FILE__" , "__LINE__" ) ) } , { scope : "meta" ,
begin : t . concat ( /`/ , t . either ( ... a ) ) , end : /$|\/\/|\/\*/ , returnEnd : ! 0 , keywords : a } ] }
} , grmr _vhdl : e => ( { name : "VHDL" , case _insensitive : ! 0 , keywords : {
keyword : [ "abs" , "access" , "after" , "alias" , "all" , "and" , "architecture" , "array" , "assert" , "assume" , "assume_guarantee" , "attribute" , "begin" , "block" , "body" , "buffer" , "bus" , "case" , "component" , "configuration" , "constant" , "context" , "cover" , "disconnect" , "downto" , "default" , "else" , "elsif" , "end" , "entity" , "exit" , "fairness" , "file" , "for" , "force" , "function" , "generate" , "generic" , "group" , "guarded" , "if" , "impure" , "in" , "inertial" , "inout" , "is" , "label" , "library" , "linkage" , "literal" , "loop" , "map" , "mod" , "nand" , "new" , "next" , "nor" , "not" , "null" , "of" , "on" , "open" , "or" , "others" , "out" , "package" , "parameter" , "port" , "postponed" , "procedure" , "process" , "property" , "protected" , "pure" , "range" , "record" , "register" , "reject" , "release" , "rem" , "report" , "restrict" , "restrict_guarantee" , "return" , "rol" , "ror" , "select" , "sequence" , "severity" , "shared" , "signal" , "sla" , "sll" , "sra" , "srl" , "strong" , "subtype" , "then" , "to" , "transport" , "type" , "unaffected" , "units" , "until" , "use" , "variable" , "view" , "vmode" , "vprop" , "vunit" , "wait" , "when" , "while" , "with" , "xnor" , "xor" ] ,
built _in : [ "boolean" , "bit" , "character" , "integer" , "time" , "delay_length" , "natural" , "positive" , "string" , "bit_vector" , "file_open_kind" , "file_open_status" , "std_logic" , "std_logic_vector" , "unsigned" , "signed" , "boolean_vector" , "integer_vector" , "std_ulogic" , "std_ulogic_vector" , "unresolved_unsigned" , "u_unsigned" , "unresolved_signed" , "u_signed" , "real_vector" , "time_vector" ] ,
literal : [ "false" , "true" , "note" , "warning" , "error" , "failure" , "line" , "text" , "side" , "width" ]
} , illegal : /\{/ ,
contains : [ e . C _BLOCK _COMMENT _MODE , e . COMMENT ( "--" , "$" ) , e . QUOTE _STRING _MODE , {
2021-10-19 23:53:22 -07:00
className : "number" ,
2022-01-15 21:29:41 -08:00
begin : "\\b(\\d(_|\\d)*#\\w+(\\.\\w+)?#([eE][-+]?\\d(_|\\d)*)?|\\d(_|\\d)*(\\.\\d(_|\\d)*)?([eE][-+]?\\d(_|\\d)*)?)" ,
relevance : 0 } , { className : "string" , begin : "'(U|X|0|1|Z|W|L|H|-)'" ,
contains : [ e . BACKSLASH _ESCAPE ] } , { className : "symbol" ,
begin : "'[A-Za-z](_?[A-Za-z0-9])*" , contains : [ e . BACKSLASH _ESCAPE ] } ] } ) ,
grmr _vim : e => ( { name : "Vim Script" , keywords : { $pattern : /[!#@\w]+/ ,
keyword : " N | 0 P | 0 X | 0 a | 0 ab abc abo al am an | 0 ar arga argd arge argdo argg argl argu as au aug aun b | 0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c | 0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e | 0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f | 0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu go gr grepa gu gv ha helpf helpg helpt hi hid his ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j | 0 ju k | 0 keepa kee keepj lN lNf l | 0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m | 0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o | 0 om omapc ome on ono onoreme opt ou ounme ow p | 0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf quita qa rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u | 0 undoj undol una unh unl unlo unm unme uns up ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w | 0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x | 0 xa xmapc xm xme xn xnoreme xu xunme y | 0 z | 0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mks
built _in : "synIDtrans atan2 range matcharg did_filetype asin feedkeys xor argv complete_check add getwinposx getqflist getwinposy screencol clearmatches empty extend getcmdpos mzeval garbagecollect setreg ceil sqrt diff_hlID inputsecret get getfperm getpid filewritable shiftwidth max sinh isdirectory synID system inputrestore winline atan visualmode inputlist tabpagewinnr round getregtype mapcheck hasmapto histdel argidx findfile sha256 exists toupper getcmdline taglist string getmatches bufnr strftime winwidth bufexists strtrans tabpagebuflist setcmdpos remote_read printf setloclist getpos getline bufwinnr float2nr len getcmdtype diff_filler luaeval resolve libcallnr foldclosedend reverse filter has_key bufname str2float strlen setline getcharmod setbufvar index searchpos shellescape undofile foldclosed setqflist buflisted strchars str2nr virtcol floor remove undotree remote_expr winheight gettabwinvar reltime cursor tabpagenr finddir localtime acos getloclist search tanh matchend rename gettabvar strdisplaywidth type abs py3eval setwinvar tolower wildmenumode log10 spellsuggest bufloaded synconcealed nextnonblank server2client complete settabwinvar executable input wincol setmatches getftype hlID inputsave searchpair or screenrow line settabvar histadd deepcopy strpart remote_peek and eval getftime submatch screenchar winsaveview matchadd mkdir screenattr getfontname libcall reltimestr getfsize winnr invert pow getbufline byte2line soundfold repeat fnameescape tagfiles sin strwidth spellbadword trunc maparg log lispindent hostname setpos globpath remote_foreground getchar synIDattr fnamemodify cscope_connection stridx winbufnr indent min complete_add nr2char searchpairpos inputdialog values matchlist items hlexists strridx browsedir expand fmod pathshorten line2byte argc count getwinvar glob foldtextresult getreg foreground cosh matchdelete has char2nr simplify histget searchdecl iconv winrestcmd pumvisible writefile foldlevel haslocaldir keys cos matchstr foldtext histnr tan tempname getcwd byteidx getbufvar islocked escape eventhandler remote_send serverlist winrestview synstack pyeval prevnonblank readfile cindent filereadable changenr exp"
} , illegal : /;/ , contains : [ e . NUMBER _MODE , { className : "string" , begin : "'" , end : "'" ,
illegal : "\\n" } , { className : "string" , begin : /"(\\"|\n\\|[^"\n])*"/
} , e . COMMENT ( '"' , "$" ) , { className : "variable" , begin : /[bwtglsav]:[\w\d_]+/ } , {
begin : [ /\b(?:function|function!)/ , /\s+/ , e . IDENT _RE ] , className : { 1 : "keyword" ,
3 : "title" } , end : "$" , relevance : 0 , contains : [ { className : "params" , begin : "\\(" ,
end : "\\)" } ] } , { className : "symbol" , begin : /<[\w-]+>/ } ] } ) , grmr _wasm : e => { e . regex
; const t = e . COMMENT ( /\(;/ , /;\)/ ) ; return t . contains . push ( "self" ) , {
name : "WebAssembly" , keywords : { $pattern : /[\w.]+/ ,
keyword : [ "anyfunc" , "block" , "br" , "br_if" , "br_table" , "call" , "call_indirect" , "data" , "drop" , "elem" , "else" , "end" , "export" , "func" , "global.get" , "global.set" , "local.get" , "local.set" , "local.tee" , "get_global" , "get_local" , "global" , "if" , "import" , "local" , "loop" , "memory" , "memory.grow" , "memory.size" , "module" , "mut" , "nop" , "offset" , "param" , "result" , "return" , "select" , "set_global" , "set_local" , "start" , "table" , "tee_local" , "then" , "type" , "unreachable" ]
} , contains : [ e . COMMENT ( /;;/ , /$/ ) , t , { match : [ /(?:offset|align)/ , /\s*/ , /=/ ] ,
className : { 1 : "keyword" , 3 : "operator" } } , { className : "variable" , begin : /\$[\w_]+/ } , {
match : /(\((?!;)|\))+/ , className : "punctuation" , relevance : 0 } , {
begin : [ /(?:func|call|call_indirect)/ , /\s+/ , /\$[^\s)]+/ ] , className : { 1 : "keyword" ,
3 : "title.function" } } , e . QUOTE _STRING _MODE , { match : /(i32|i64|f32|f64)(?!\.)/ ,
className : "type" } , { className : "keyword" ,
match : /\b(f32|f64|i32|i64)(?:\.(?:abs|add|and|ceil|clz|const|convert_[su]\/i(?:32|64)|copysign|ctz|demote\/f64|div(?:_[su])?|eqz?|extend_[su]\/i32|floor|ge(?:_[su])?|gt(?:_[su])?|le(?:_[su])?|load(?:(?:8|16|32)_[su])?|lt(?:_[su])?|max|min|mul|nearest|neg?|or|popcnt|promote\/f32|reinterpret\/[fi](?:32|64)|rem_[su]|rot[lr]|shl|shr_[su]|store(?:8|16|32)?|sqrt|sub|trunc(?:_[su]\/f(?:32|64))?|wrap\/i64|xor))\b/
} , { className : "number" , relevance : 0 ,
match : /[+-]?\b(?:\d(?:_?\d)*(?:\.\d(?:_?\d)*)?(?:[eE][+-]?\d(?:_?\d)*)?|0x[\da-fA-F](?:_?[\da-fA-F])*(?:\.[\da-fA-F](?:_?[\da-fA-D])*)?(?:[pP][+-]?\d(?:_?\d)*)?)\b|\binf\b|\bnan(?::0x[\da-fA-F](?:_?[\da-fA-D])*)?\b/
} ] } } , grmr _wren : e => {
const t = e . regex , a = /[a-zA-Z]\w*/ , n = [ "as" , "break" , "class" , "construct" , "continue" , "else" , "for" , "foreign" , "if" , "import" , "in" , "is" , "return" , "static" , "var" , "while" ] , i = [ "true" , "false" , "null" ] , r = [ "this" , "super" ] , s = [ "-" , "~" , /\*/ , "%" , /\.\.\./ , /\.\./ , /\+/ , "<<" , ">>" , ">=" , "<=" , "<" , ">" , /\^/ , /!=/ , /!/ , /\bis\b/ , "==" , "&&" , "&" , /\|\|/ , /\|/ , /\?:/ , "=" ] , o = {
relevance : 0 , match : t . concat ( /\b(?!(if|while|for|else|super)\b)/ , a , /(?=\s*[({])/ ) ,
className : "title.function" } , l = {
match : t . concat ( t . either ( t . concat ( /\b(?!(if|while|for|else|super)\b)/ , a ) , t . either ( ... s ) ) , /(?=\s*\([^)]+\)\s*\{)/ ) ,
className : "title.function" , starts : { contains : [ { begin : /\(/ , end : /\)/ , contains : [ {
relevance : 0 , scope : "params" , match : a } ] } ] } } , _ = { variants : [ {
match : [ /class\s+/ , a , /\s+is\s+/ , a ] } , { match : [ /class\s+/ , a ] } ] , scope : {
2 : "title.class" , 4 : "title.class.inherited" } , keywords : n } , c = { relevance : 0 ,
match : t . either ( ... s ) , className : "operator" } , d = { className : "property" ,
begin : t . concat ( /\./ , t . lookahead ( a ) ) , end : a , excludeBegin : ! 0 , relevance : 0 } , m = {
relevance : 0 , match : t . concat ( /\b_/ , a ) , scope : "variable" } , p = { relevance : 0 ,
match : /\b[A-Z]+[a-z]+([A-Z]+[a-z]+)*/ , scope : "title.class" , keywords : {
_ : [ "Bool" , "Class" , "Fiber" , "Fn" , "List" , "Map" , "Null" , "Num" , "Object" , "Range" , "Sequence" , "String" , "System" ]
} } , u = e . C _NUMBER _MODE , E = { match : [ a , /\s*/ , /=/ , /\s*/ , /\(/ , a , /\)\s*\{/ ] , scope : {
1 : "title.function" , 3 : "operator" , 6 : "params" } } , S = e . COMMENT ( /\/\*\*/ , /\*\// , {
contains : [ { match : /@[a-z]+/ , scope : "doctag" } , "self" ] } ) , g = { scope : "subst" ,
begin : /%\(/ , end : /\)/ , contains : [ u , p , o , m , c ] } , T = { scope : "string" , begin : /"/ , end : /"/ ,
contains : [ g , { scope : "char.escape" , variants : [ { match : /\\\\|\\["0%abefnrtv]/ } , {
match : /\\x[0-9A-F]{2}/ } , { match : /\\u[0-9A-F]{4}/ } , { match : /\\U[0-9A-F]{8}/ } ] } ] }
; g . contains . push ( T ) ; const b = [ ... n , ... r , ... i ] , C = { relevance : 0 ,
match : t . concat ( "\\b(?!" , b . join ( "|" ) , "\\b)" , /[a-zA-Z_]\w*(?:[?!]|\b)/ ) ,
className : "variable" } ; return { name : "Wren" , keywords : { keyword : n ,
"variable.language" : r , literal : i } , contains : [ { scope : "comment" , variants : [ {
begin : [ /#!?/ , /[A-Za-z_]+(?=\()/ ] , beginScope : { } , keywords : { literal : i } , contains : [ ] ,
end : /\)/ } , { begin : [ /#!?/ , /[A-Za-z_]+/ ] , beginScope : { } , end : /$/ } ] } , u , T , {
className : "string" , begin : /"""/ , end : /"""/
} , S , e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , p , _ , E , l , o , c , m , d , C ] } } ,
grmr _x86asm : e => ( { name : "Intel x86 Assembly" , case _insensitive : ! 0 , keywords : {
$pattern : "[.%]?" + e . IDENT _RE ,
keyword : " lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0 _reset bb1 _reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu _read cpu _write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cv
built _in : "ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7 xmm8 xmm9 xmm10 xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0 ymm1 ymm2 ymm3 ymm4 ymm5 ymm6 ymm7 ymm8 ymm9 ymm10 ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0 zmm1 zmm2 zmm3 zmm4 zmm5 zmm6 zmm7 zmm8 zmm9 zmm10 zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr" ,
meta : "%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %if %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist __FILE__ __LINE__ __SECT__ __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__ __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__"
} , contains : [ e . COMMENT ( ";" , "$" , { relevance : 0 } ) , { className : "number" , variants : [ {
begin : "\\b(?:([0-9][0-9_]*)?\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*(\\.[0-9_]*)?(?:[pP](?:[+-]?[0-9_]+)?)?)\\b" ,
relevance : 0 } , { begin : "\\$[0-9][0-9A-Fa-f]*" , relevance : 0 } , {
begin : "\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\b"
} , {
begin : "\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\b"
} ] } , e . QUOTE _STRING _MODE , { className : "string" , variants : [ { begin : "'" , end : "[^\\\\]'"
} , { begin : "`" , end : "[^\\\\]`" } ] , relevance : 0 } , { className : "symbol" , variants : [ {
begin : "^\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\s+label)" } , {
begin : "^\\s*%%[A-Za-z0-9_$#@~.?]*:" } ] , relevance : 0 } , { className : "subst" ,
begin : "%[0-9]+" , relevance : 0 } , { className : "subst" , begin : "%!S+" , relevance : 0 } , {
className : "meta" , begin : /^\s*\.[\w_-]+/ } ] } ) , grmr _xl : e => { const t = {
$pattern : /[a-zA-Z][a-zA-Z0-9_?]*/ ,
keyword : [ "if" , "then" , "else" , "do" , "while" , "until" , "for" , "loop" , "import" , "with" , "is" , "as" , "where" , "when" , "by" , "data" , "constant" , "integer" , "real" , "text" , "name" , "boolean" , "symbol" , "infix" , "prefix" , "postfix" , "block" , "tree" ] ,
literal : [ "true" , "false" , "nil" ] ,
built _in : [ "in" , "mod" , "rem" , "and" , "or" , "xor" , "not" , "abs" , "sign" , "floor" , "ceil" , "sqrt" , "sin" , "cos" , "tan" , "asin" , "acos" , "atan" , "exp" , "expm1" , "log" , "log2" , "log10" , "log1p" , "pi" , "at" , "text_length" , "text_range" , "text_find" , "text_replace" , "contains" , "page" , "slide" , "basic_slide" , "title_slide" , "title" , "subtitle" , "fade_in" , "fade_out" , "fade_at" , "clear_color" , "color" , "line_color" , "line_width" , "texture_wrap" , "texture_transform" , "texture" , "scale_?x" , "scale_?y" , "scale_?z?" , "translate_?x" , "translate_?y" , "translate_?z?" , "rotate_?x" , "rotate_?y" , "rotate_?z?" , "rectangle" , "circle" , "ellipse" , "sphere" , "path" , "line_to" , "move_to" , "quad_to" , "curve_to" , "theme" , "background" , "contents" , "locally" , "time" , "mouse_?x" , "mouse_?y" , "mouse_buttons" ] . concat ( [ "ObjectLoader" , "Animate" , "MovieCredits" , "Slides" , "Filters" , "Shading" , "Materials" , "LensFlare" , "Mapping" , "VLCAudioVideo" , "StereoDecoder" , "PointCloud" , "NetworkAccess" , "RemoteControl" , "RegExp" , "ChromaKey" , "Snowfall" , "NodeJS" , "Speech" , "Charts" ] )
} , a = { className : "string" , begin : '"' , end : '"' , illegal : "\\n" } , n = {
beginKeywords : "import" , end : "$" , keywords : t , contains : [ a ] } , i = { className : "function" ,
begin : /[a-z][^\n]*->/ , returnBegin : ! 0 , end : /->/ , contains : [ e . inherit ( e . TITLE _MODE , {
starts : { endsWithParent : ! 0 , keywords : t } } ) ] } ; return { name : "XL" , aliases : [ "tao" ] ,
keywords : t , contains : [ e . C _LINE _COMMENT _MODE , e . C _BLOCK _COMMENT _MODE , a , {
className : "string" , begin : "'" , end : "'" , illegal : "\\n" } , { className : "string" ,
begin : "<<" , end : ">>" } , i , n , { className : "number" ,
begin : "[0-9]+#[0-9A-Z_]+(\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?" } , e . NUMBER _MODE ] }
} , grmr _xquery : e => ( { name : "XQuery" , aliases : [ "xpath" , "xq" ] , case _insensitive : ! 1 ,
illegal : /(proc)|(abstract)|(extends)|(until)|(#)/ , keywords : {
$pattern : /[a-zA-Z$][a-zA-Z0-9_:-]*/ ,
keyword : [ "module" , "schema" , "namespace" , "boundary-space" , "preserve" , "no-preserve" , "strip" , "default" , "collation" , "base-uri" , "ordering" , "context" , "decimal-format" , "decimal-separator" , "copy-namespaces" , "empty-sequence" , "except" , "exponent-separator" , "external" , "grouping-separator" , "inherit" , "no-inherit" , "lax" , "minus-sign" , "per-mille" , "percent" , "schema-attribute" , "schema-element" , "strict" , "unordered" , "zero-digit" , "declare" , "import" , "option" , "function" , "validate" , "variable" , "for" , "at" , "in" , "let" , "where" , "order" , "group" , "by" , "return" , "if" , "then" , "else" , "tumbling" , "sliding" , "window" , "start" , "when" , "only" , "end" , "previous" , "next" , "stable" , "ascending" , "descending" , "allowing" , "empty" , "greatest" , "least" , "some" , "every" , "satisfies" , "switch" , "case" , "typeswitch" , "try" , "catch" , "and" , "or" , "to" , "union" , "intersect" , "instance" , "of" , "treat" , "as" , "castable" , "cast" , "map" , "array" , "delete" , "insert" , "into" , "replace" , "value" , "rename" , "copy" , "modify" , "update" ] ,
type : [ "item" , "document-node" , "node" , "attribute" , "document" , "element" , "comment" , "namespace" , "namespace-node" , "processing-instruction" , "text" , "construction" , "xs:anyAtomicType" , "xs:untypedAtomic" , "xs:duration" , "xs:time" , "xs:decimal" , "xs:float" , "xs:double" , "xs:gYearMonth" , "xs:gYear" , "xs:gMonthDay" , "xs:gMonth" , "xs:gDay" , "xs:boolean" , "xs:base64Binary" , "xs:hexBinary" , "xs:anyURI" , "xs:QName" , "xs:NOTATION" , "xs:dateTime" , "xs:dateTimeStamp" , "xs:date" , "xs:string" , "xs:normalizedString" , "xs:token" , "xs:language" , "xs:NMTOKEN" , "xs:Name" , "xs:NCName" , "xs:ID" , "xs:IDREF" , "xs:ENTITY" , "xs:integer" , "xs:nonPositiveInteger" , "xs:negativeInteger" , "xs:long" , "xs:int" , "xs:short" , "xs:byte" , "xs:nonNegativeInteger" , "xs:unisignedLong" , "xs:unsignedInt" , "xs:unsignedShort" , "xs:unsignedByte" , "xs:positiveInteger" , "xs:yearMonthDuration" , "xs:dayTimeDuration" ] ,
literal : [ "eq" , "ne" , "lt" , "le" , "gt" , "ge" , "is" , "self::" , "child::" , "descendant::" , "descendant-or-self::" , "attribute::" , "following::" , "following-sibling::" , "parent::" , "ancestor::" , "ancestor-or-self::" , "preceding::" , "preceding-sibling::" , "NaN" ]
} , contains : [ { className : "variable" , begin : /[$][\w\-:]+/ } , { className : "built_in" ,
variants : [ { begin : /\barray:/ ,
end : /(?:append|filter|flatten|fold-(?:left|right)|for-each(?:-pair)?|get|head|insert-before|join|put|remove|reverse|size|sort|subarray|tail)\b/
} , { begin : /\bmap:/ ,
end : /(?:contains|entry|find|for-each|get|keys|merge|put|remove|size)\b/ } , {
begin : /\bmath:/ ,
end : /(?:a(?:cos|sin|tan[2]?)|cos|exp(?:10)?|log(?:10)?|pi|pow|sin|sqrt|tan)\b/
} , { begin : /\bop:/ , end : /\(/ , excludeEnd : ! 0 } , { begin : /\bfn:/ , end : /\(/ , excludeEnd : ! 0
} , {
begin : /[^</$:'"-]\b(?:abs|accumulator-(?:after|before)|adjust-(?:date(?:Time)?|time)-to-timezone|analyze-string|apply|available-(?:environment-variables|system-properties)|avg|base-uri|boolean|ceiling|codepoints?-(?:equal|to-string)|collation-key|collection|compare|concat|contains(?:-token)?|copy-of|count|current(?:-)?(?:date(?:Time)?|time|group(?:ing-key)?|output-uri|merge-(?:group|key))?data|dateTime|days?-from-(?:date(?:Time)?|duration)|deep-equal|default-(?:collation|language)|distinct-values|document(?:-uri)?|doc(?:-available)?|element-(?:available|with-id)|empty|encode-for-uri|ends-with|environment-variable|error|escape-html-uri|exactly-one|exists|false|filter|floor|fold-(?:left|right)|for-each(?:-pair)?|format-(?:date(?:Time)?|time|integer|number)|function-(?:arity|available|lookup|name)|generate-id|has-children|head|hours-from-(?:dateTime|duration|time)|id(?:ref)?|implicit-timezone|in-scope-prefixes|index-of|innermost|insert-before|iri-to-uri|json-(?:doc|to-xml)|key|lang|last|load-xquery-module|local-name(?:-from-QName)?|(?:lower|upper)-case|matches|max|minutes-from-(?:dateTime|duration|time)|min|months?-from-(?:date(?:Time)?|duration)|name(?:space-uri-?(?:for-prefix|from-QName)?)?|nilled|node-name|normalize-(?:space|unicode)|not|number|one-or-more|outermost|parse-(?:ietf-date|json)|path|position|(?:prefix-from-)?QName|random-number-generator|regex-group|remove|replace|resolve-(?:QName|uri)|reverse|root|round(?:-half-to-even)?|seconds-from-(?:dateTime|duration|time)|snapshot|sort|starts-with|static-base-uri|stream-available|string-?(?:join|length|to-codepoints)?|subsequence|substring-?(?:after|before)?|sum|system-property|tail|timezone-from-(?:date(?:Time)?|time)|tokenize|trace|trans(?:form|late)|true|type-available|unordered|unparsed-(?:entity|text)?-?(?:public-id|uri|available|lines)?|uri-collection|xml-to-json|years?-from-(?:date(?:Time)?|duration)|zero-or-one)\b/
} , { begin : /\blocal:/ , end : /\(/ , excludeEnd : ! 0 } , { begin : /\bzip:/ ,
end : /(?:zip-file|(?:xml|html|text|binary)-entry| (?:update-)?entries)\b/ } , {
begin : /\b(?:util|db|functx|app|xdmp|xmldb):/ , end : /\(/ , excludeEnd : ! 0 } ] } , {
className : "string" , variants : [ { begin : /"/ , end : /"/ , contains : [ { begin : /""/ ,
relevance : 0 } ] } , { begin : /'/ , end : /'/ , contains : [ { begin : /''/ , relevance : 0 } ] } ] } , {
className : "number" ,
begin : /(\b0[0-7_]+)|(\b0x[0-9a-fA-F_]+)|(\b[1-9][0-9_]*(\.[0-9_]+)?)|[0_]\b/ ,
relevance : 0 } , { className : "comment" , begin : /\(:/ , end : /:\)/ , relevance : 10 , contains : [ {
className : "doctag" , begin : /@\w+/ } ] } , { className : "meta" , begin : /%[\w\-:]+/ } , {
className : "title" , begin : /\bxquery version "[13]\.[01]"\s?(?:encoding ".+")?/ ,
end : /;/ } , {
beginKeywords : "element attribute comment document processing-instruction" ,
end : /\{/ , excludeEnd : ! 0 } , { begin : /<([\w._:-]+)(\s+\S*=('|").*('|"))?>/ ,
end : /(\/[\w._:-]+>)/ , subLanguage : "xml" , contains : [ { begin : /\{/ , end : /\}/ ,
subLanguage : "xquery" } , "self" ] } ] } ) , grmr _zephir : e => { const t = { className : "string" ,
contains : [ e . BACKSLASH _ESCAPE ] , variants : [ e . inherit ( e . APOS _STRING _MODE , {
illegal : null } ) , e . inherit ( e . QUOTE _STRING _MODE , { illegal : null } ) ]
} , a = e . UNDERSCORE _TITLE _MODE , n = { variants : [ e . BINARY _NUMBER _MODE , e . C _NUMBER _MODE ]
} , i = "namespace class interface use extends function return abstract final public protected private static deprecated throw try catch Exception echo empty isset instanceof unset let var new const self require if else elseif switch case default do while loop for continue break likely unlikely __LINE__ __FILE__ __DIR__ __FUNCTION__ __CLASS__ __TRAIT__ __METHOD__ __NAMESPACE__ array boolean float double integer object resource string char long unsigned bool int uint ulong uchar true false null undefined"
; return { name : "Zephir" , aliases : [ "zep" ] , keywords : i ,
contains : [ e . C _LINE _COMMENT _MODE , e . COMMENT ( /\/\*/ , /\*\// , { contains : [ {
className : "doctag" , begin : /@[A-Za-z]+/ } ] } ) , { className : "string" ,
begin : /<<<['"]?\w+['"]?$/ , end : /^\w+;/ , contains : [ e . BACKSLASH _ESCAPE ] } , {
begin : /(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/ } , { className : "function" ,
beginKeywords : "function fn" , end : /[;{]/ , excludeEnd : ! 0 , illegal : /\$|\[|%/ ,
contains : [ a , { className : "params" , begin : /\(/ , end : /\)/ , keywords : i ,
contains : [ "self" , e . C _BLOCK _COMMENT _MODE , t , n ] } ] } , { className : "class" ,
beginKeywords : "class interface" , end : /\{/ , excludeEnd : ! 0 , illegal : /[:($"]/ ,
contains : [ { beginKeywords : "extends implements" } , a ] } , { beginKeywords : "namespace" ,
end : /;/ , illegal : /[.']/ , contains : [ a ] } , { beginKeywords : "use" , end : /;/ , contains : [ a ]
} , { begin : /=>/ } , t , n ] } } } ) ; const ze = ae ; for ( const e of Object . keys ( qe ) ) {
const t = e . replace ( "grmr_" , "" ) . replace ( "_" , "-" ) ; ze . registerLanguage ( t , qe [ e ] ) }
return ze } ( )
2021-10-19 23:53:22 -07:00
; "object" == typeof exports && "undefined" != typeof module && ( module . exports = hljs ) ;