@bigbinary/neeto-commons-frontend 2.0.26 → 2.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/initializers.cjs.js +7 -3
- package/initializers.js +7 -3
- package/package.json +1 -1
- package/react-utils.cjs.js +263 -263
- package/react-utils.js +263 -263
package/react-utils.js
CHANGED
|
@@ -15593,11 +15593,11 @@ Website: https://en.wikipedia.org/wiki/Tandy_1000
|
|
|
15593
15593
|
*/
|
|
15594
15594
|
|
|
15595
15595
|
var basic_1$1;
|
|
15596
|
-
var hasRequiredBasic
|
|
15596
|
+
var hasRequiredBasic;
|
|
15597
15597
|
|
|
15598
|
-
function requireBasic
|
|
15599
|
-
if (hasRequiredBasic
|
|
15600
|
-
hasRequiredBasic
|
|
15598
|
+
function requireBasic () {
|
|
15599
|
+
if (hasRequiredBasic) return basic_1$1;
|
|
15600
|
+
hasRequiredBasic = 1;
|
|
15601
15601
|
/** @type LanguageFn */
|
|
15602
15602
|
function basic(hljs) {
|
|
15603
15603
|
return {
|
|
@@ -15666,11 +15666,11 @@ Author: Oleg Efimov <efimovov@gmail.com>
|
|
|
15666
15666
|
*/
|
|
15667
15667
|
|
|
15668
15668
|
var bnf_1$1;
|
|
15669
|
-
var hasRequiredBnf;
|
|
15669
|
+
var hasRequiredBnf$1;
|
|
15670
15670
|
|
|
15671
|
-
function requireBnf () {
|
|
15672
|
-
if (hasRequiredBnf) return bnf_1$1;
|
|
15673
|
-
hasRequiredBnf = 1;
|
|
15671
|
+
function requireBnf$1 () {
|
|
15672
|
+
if (hasRequiredBnf$1) return bnf_1$1;
|
|
15673
|
+
hasRequiredBnf$1 = 1;
|
|
15674
15674
|
/** @type LanguageFn */
|
|
15675
15675
|
function bnf(hljs) {
|
|
15676
15676
|
return {
|
|
@@ -17192,11 +17192,11 @@ function requireCmake () {
|
|
|
17192
17192
|
}
|
|
17193
17193
|
|
|
17194
17194
|
var coffeescript_1$1;
|
|
17195
|
-
var hasRequiredCoffeescript;
|
|
17195
|
+
var hasRequiredCoffeescript$1;
|
|
17196
17196
|
|
|
17197
|
-
function requireCoffeescript () {
|
|
17198
|
-
if (hasRequiredCoffeescript) return coffeescript_1$1;
|
|
17199
|
-
hasRequiredCoffeescript = 1;
|
|
17197
|
+
function requireCoffeescript$1 () {
|
|
17198
|
+
if (hasRequiredCoffeescript$1) return coffeescript_1$1;
|
|
17199
|
+
hasRequiredCoffeescript$1 = 1;
|
|
17200
17200
|
const KEYWORDS = [
|
|
17201
17201
|
"as", // for exports
|
|
17202
17202
|
"in",
|
|
@@ -56154,8 +56154,8 @@ low.registerLanguage('avrasm', requireAvrasm());
|
|
|
56154
56154
|
low.registerLanguage('awk', requireAwk());
|
|
56155
56155
|
low.registerLanguage('axapta', requireAxapta());
|
|
56156
56156
|
low.registerLanguage('bash', requireBash());
|
|
56157
|
-
low.registerLanguage('basic', requireBasic
|
|
56158
|
-
low.registerLanguage('bnf', requireBnf());
|
|
56157
|
+
low.registerLanguage('basic', requireBasic());
|
|
56158
|
+
low.registerLanguage('bnf', requireBnf$1());
|
|
56159
56159
|
low.registerLanguage(
|
|
56160
56160
|
'brainfuck',
|
|
56161
56161
|
requireBrainfuck()
|
|
@@ -56177,7 +56177,7 @@ low.registerLanguage(
|
|
|
56177
56177
|
low.registerLanguage('cmake', requireCmake());
|
|
56178
56178
|
low.registerLanguage(
|
|
56179
56179
|
'coffeescript',
|
|
56180
|
-
requireCoffeescript()
|
|
56180
|
+
requireCoffeescript$1()
|
|
56181
56181
|
);
|
|
56182
56182
|
low.registerLanguage('coq', requireCoq$1());
|
|
56183
56183
|
low.registerLanguage('cos', requireCos());
|
|
@@ -57138,10 +57138,10 @@ var languageLoaders$1 = {
|
|
|
57138
57138
|
return Promise.resolve().then(function () { return bash; });
|
|
57139
57139
|
}),
|
|
57140
57140
|
basic: createLanguageAsyncLoader("basic", function () {
|
|
57141
|
-
return Promise.resolve().then(function () { return basic
|
|
57141
|
+
return Promise.resolve().then(function () { return basic; });
|
|
57142
57142
|
}),
|
|
57143
57143
|
bnf: createLanguageAsyncLoader("bnf", function () {
|
|
57144
|
-
return Promise.resolve().then(function () { return bnf; });
|
|
57144
|
+
return Promise.resolve().then(function () { return bnf$1; });
|
|
57145
57145
|
}),
|
|
57146
57146
|
brainfuck: createLanguageAsyncLoader("brainfuck", function () {
|
|
57147
57147
|
return Promise.resolve().then(function () { return brainfuck; });
|
|
@@ -57174,7 +57174,7 @@ var languageLoaders$1 = {
|
|
|
57174
57174
|
return Promise.resolve().then(function () { return cmake; });
|
|
57175
57175
|
}),
|
|
57176
57176
|
coffeescript: createLanguageAsyncLoader("coffeescript", function () {
|
|
57177
|
-
return Promise.resolve().then(function () { return coffeescript; });
|
|
57177
|
+
return Promise.resolve().then(function () { return coffeescript$1; });
|
|
57178
57178
|
}),
|
|
57179
57179
|
coq: createLanguageAsyncLoader("coq", function () {
|
|
57180
57180
|
return Promise.resolve().then(function () { return coq$1; });
|
|
@@ -57745,7 +57745,7 @@ var languageLoaders = {
|
|
|
57745
57745
|
return Promise.resolve().then(function () { return bash$2; });
|
|
57746
57746
|
}),
|
|
57747
57747
|
basic: createLanguageAsyncLoader("basic", function () {
|
|
57748
|
-
return Promise.resolve().then(function () { return basic; });
|
|
57748
|
+
return Promise.resolve().then(function () { return basic$2; });
|
|
57749
57749
|
}),
|
|
57750
57750
|
batch: createLanguageAsyncLoader("batch", function () {
|
|
57751
57751
|
return Promise.resolve().then(function () { return batch$1; });
|
|
@@ -57763,7 +57763,7 @@ var languageLoaders = {
|
|
|
57763
57763
|
return Promise.resolve().then(function () { return bison$1; });
|
|
57764
57764
|
}),
|
|
57765
57765
|
bnf: createLanguageAsyncLoader("bnf", function () {
|
|
57766
|
-
return Promise.resolve().then(function () { return bnf
|
|
57766
|
+
return Promise.resolve().then(function () { return bnf; });
|
|
57767
57767
|
}),
|
|
57768
57768
|
brainfuck: createLanguageAsyncLoader("brainfuck", function () {
|
|
57769
57769
|
return Promise.resolve().then(function () { return brainfuck$2; });
|
|
@@ -57799,10 +57799,10 @@ var languageLoaders = {
|
|
|
57799
57799
|
return Promise.resolve().then(function () { return cmake$2; });
|
|
57800
57800
|
}),
|
|
57801
57801
|
cobol: createLanguageAsyncLoader("cobol", function () {
|
|
57802
|
-
return Promise.resolve().then(function () { return cobol; });
|
|
57802
|
+
return Promise.resolve().then(function () { return cobol$1; });
|
|
57803
57803
|
}),
|
|
57804
57804
|
coffeescript: createLanguageAsyncLoader("coffeescript", function () {
|
|
57805
|
-
return Promise.resolve().then(function () { return coffeescript
|
|
57805
|
+
return Promise.resolve().then(function () { return coffeescript; });
|
|
57806
57806
|
}),
|
|
57807
57807
|
concurnas: createLanguageAsyncLoader("concurnas", function () {
|
|
57808
57808
|
return Promise.resolve().then(function () { return concurnas; });
|
|
@@ -69348,40 +69348,36 @@ var bash$2 = /*#__PURE__*/_mergeNamespaces({
|
|
|
69348
69348
|
'default': bash_1
|
|
69349
69349
|
}, [bash_1]);
|
|
69350
69350
|
|
|
69351
|
-
var basic_1;
|
|
69352
|
-
|
|
69353
|
-
|
|
69354
|
-
function
|
|
69355
|
-
|
|
69356
|
-
|
|
69357
|
-
|
|
69358
|
-
|
|
69359
|
-
|
|
69360
|
-
|
|
69361
|
-
|
|
69362
|
-
|
|
69363
|
-
|
|
69364
|
-
|
|
69365
|
-
|
|
69366
|
-
|
|
69367
|
-
|
|
69368
|
-
|
|
69369
|
-
|
|
69370
|
-
|
|
69371
|
-
|
|
69372
|
-
|
|
69373
|
-
|
|
69374
|
-
keyword:
|
|
69375
|
-
/\b(?:AS|BEEP|BLOAD|BSAVE|CALL(?: ABSOLUTE)?|CASE|CHAIN|CHDIR|CLEAR|CLOSE|CLS|COM|COMMON|CONST|DATA|DECLARE|DEF(?: FN| SEG|DBL|INT|LNG|SNG|STR)|DIM|DO|DOUBLE|ELSE|ELSEIF|END|ENVIRON|ERASE|ERROR|EXIT|FIELD|FILES|FOR|FUNCTION|GET|GOSUB|GOTO|IF|INPUT|INTEGER|IOCTL|KEY|KILL|LINE INPUT|LOCATE|LOCK|LONG|LOOP|LSET|MKDIR|NAME|NEXT|OFF|ON(?: COM| ERROR| KEY| TIMER)?|OPEN|OPTION BASE|OUT|POKE|PUT|READ|REDIM|REM|RESTORE|RESUME|RETURN|RMDIR|RSET|RUN|SELECT CASE|SHARED|SHELL|SINGLE|SLEEP|STATIC|STEP|STOP|STRING|SUB|SWAP|SYSTEM|THEN|TIMER|TO|TROFF|TRON|TYPE|UNLOCK|UNTIL|USING|VIEW PRINT|WAIT|WEND|WHILE|WRITE)(?:\$|\b)/i,
|
|
69376
|
-
function:
|
|
69377
|
-
/\b(?:ABS|ACCESS|ACOS|ANGLE|AREA|ARITHMETIC|ARRAY|ASIN|ASK|AT|ATN|BASE|BEGIN|BREAK|CAUSE|CEIL|CHR|CLIP|COLLATE|COLOR|CON|COS|COSH|COT|CSC|DATE|DATUM|DEBUG|DECIMAL|DEF|DEG|DEGREES|DELETE|DET|DEVICE|DISPLAY|DOT|ELAPSED|EPS|ERASABLE|EXLINE|EXP|EXTERNAL|EXTYPE|FILETYPE|FIXED|FP|GO|GRAPH|HANDLER|IDN|IMAGE|IN|INT|INTERNAL|IP|IS|KEYED|LBOUND|LCASE|LEFT|LEN|LENGTH|LET|LINE|LINES|LOG|LOG10|LOG2|LTRIM|MARGIN|MAT|MAX|MAXNUM|MID|MIN|MISSING|MOD|NATIVE|NUL|NUMERIC|OF|OPTION|ORD|ORGANIZATION|OUTIN|OUTPUT|PI|POINT|POINTER|POINTS|POS|PRINT|PROGRAM|PROMPT|RAD|RADIANS|RANDOMIZE|RECORD|RECSIZE|RECTYPE|RELATIVE|REMAINDER|REPEAT|REST|RETRY|REWRITE|RIGHT|RND|ROUND|RTRIM|SAME|SEC|SELECT|SEQUENTIAL|SET|SETTER|SGN|SIN|SINH|SIZE|SKIP|SQR|STANDARD|STATUS|STR|STREAM|STYLE|TAB|TAN|TANH|TEMPLATE|TEXT|THERE|TIME|TIMEOUT|TRACE|TRANSFORM|TRUNCATE|UBOUND|UCASE|USE|VAL|VARIABLE|VIEWPORT|WHEN|WINDOW|WITH|ZER|ZONEWIDTH)(?:\$|\b)/i,
|
|
69378
|
-
operator: /<[=>]?|>=?|[+\-*\/^=&]|\b(?:AND|EQV|IMP|NOT|OR|XOR)\b/i,
|
|
69379
|
-
punctuation: /[,;:()]/
|
|
69380
|
-
};
|
|
69381
|
-
}
|
|
69382
|
-
return basic_1;
|
|
69351
|
+
var basic_1 = basic$1;
|
|
69352
|
+
basic$1.displayName = 'basic';
|
|
69353
|
+
basic$1.aliases = [];
|
|
69354
|
+
function basic$1(Prism) {
|
|
69355
|
+
Prism.languages.basic = {
|
|
69356
|
+
comment: {
|
|
69357
|
+
pattern: /(?:!|REM\b).+/i,
|
|
69358
|
+
inside: {
|
|
69359
|
+
keyword: /^REM/i
|
|
69360
|
+
}
|
|
69361
|
+
},
|
|
69362
|
+
string: {
|
|
69363
|
+
pattern: /"(?:""|[!#$%&'()*,\/:;<=>?^\w +\-.])*"/,
|
|
69364
|
+
greedy: true
|
|
69365
|
+
},
|
|
69366
|
+
number: /(?:\b\d+(?:\.\d*)?|\B\.\d+)(?:E[+-]?\d+)?/i,
|
|
69367
|
+
keyword:
|
|
69368
|
+
/\b(?:AS|BEEP|BLOAD|BSAVE|CALL(?: ABSOLUTE)?|CASE|CHAIN|CHDIR|CLEAR|CLOSE|CLS|COM|COMMON|CONST|DATA|DECLARE|DEF(?: FN| SEG|DBL|INT|LNG|SNG|STR)|DIM|DO|DOUBLE|ELSE|ELSEIF|END|ENVIRON|ERASE|ERROR|EXIT|FIELD|FILES|FOR|FUNCTION|GET|GOSUB|GOTO|IF|INPUT|INTEGER|IOCTL|KEY|KILL|LINE INPUT|LOCATE|LOCK|LONG|LOOP|LSET|MKDIR|NAME|NEXT|OFF|ON(?: COM| ERROR| KEY| TIMER)?|OPEN|OPTION BASE|OUT|POKE|PUT|READ|REDIM|REM|RESTORE|RESUME|RETURN|RMDIR|RSET|RUN|SELECT CASE|SHARED|SHELL|SINGLE|SLEEP|STATIC|STEP|STOP|STRING|SUB|SWAP|SYSTEM|THEN|TIMER|TO|TROFF|TRON|TYPE|UNLOCK|UNTIL|USING|VIEW PRINT|WAIT|WEND|WHILE|WRITE)(?:\$|\b)/i,
|
|
69369
|
+
function:
|
|
69370
|
+
/\b(?:ABS|ACCESS|ACOS|ANGLE|AREA|ARITHMETIC|ARRAY|ASIN|ASK|AT|ATN|BASE|BEGIN|BREAK|CAUSE|CEIL|CHR|CLIP|COLLATE|COLOR|CON|COS|COSH|COT|CSC|DATE|DATUM|DEBUG|DECIMAL|DEF|DEG|DEGREES|DELETE|DET|DEVICE|DISPLAY|DOT|ELAPSED|EPS|ERASABLE|EXLINE|EXP|EXTERNAL|EXTYPE|FILETYPE|FIXED|FP|GO|GRAPH|HANDLER|IDN|IMAGE|IN|INT|INTERNAL|IP|IS|KEYED|LBOUND|LCASE|LEFT|LEN|LENGTH|LET|LINE|LINES|LOG|LOG10|LOG2|LTRIM|MARGIN|MAT|MAX|MAXNUM|MID|MIN|MISSING|MOD|NATIVE|NUL|NUMERIC|OF|OPTION|ORD|ORGANIZATION|OUTIN|OUTPUT|PI|POINT|POINTER|POINTS|POS|PRINT|PROGRAM|PROMPT|RAD|RADIANS|RANDOMIZE|RECORD|RECSIZE|RECTYPE|RELATIVE|REMAINDER|REPEAT|REST|RETRY|REWRITE|RIGHT|RND|ROUND|RTRIM|SAME|SEC|SELECT|SEQUENTIAL|SET|SETTER|SGN|SIN|SINH|SIZE|SKIP|SQR|STANDARD|STATUS|STR|STREAM|STYLE|TAB|TAN|TANH|TEMPLATE|TEXT|THERE|TIME|TIMEOUT|TRACE|TRANSFORM|TRUNCATE|UBOUND|UCASE|USE|VAL|VARIABLE|VIEWPORT|WHEN|WINDOW|WITH|ZER|ZONEWIDTH)(?:\$|\b)/i,
|
|
69371
|
+
operator: /<[=>]?|>=?|[+\-*\/^=&]|\b(?:AND|EQV|IMP|NOT|OR|XOR)\b/i,
|
|
69372
|
+
punctuation: /[,;:()]/
|
|
69373
|
+
};
|
|
69383
69374
|
}
|
|
69384
69375
|
|
|
69376
|
+
var basic$2 = /*#__PURE__*/_mergeNamespaces({
|
|
69377
|
+
__proto__: null,
|
|
69378
|
+
'default': basic_1
|
|
69379
|
+
}, [basic_1]);
|
|
69380
|
+
|
|
69385
69381
|
var batch_1 = batch;
|
|
69386
69382
|
batch.displayName = 'batch';
|
|
69387
69383
|
batch.aliases = [];
|
|
@@ -69702,36 +69698,40 @@ var bison$1 = /*#__PURE__*/_mergeNamespaces({
|
|
|
69702
69698
|
'default': bison_1
|
|
69703
69699
|
}, [bison_1]);
|
|
69704
69700
|
|
|
69705
|
-
var bnf_1
|
|
69706
|
-
|
|
69707
|
-
bnf$1.aliases = ['rbnf'];
|
|
69708
|
-
function bnf$1(Prism) {
|
|
69709
|
-
Prism.languages.bnf = {
|
|
69710
|
-
string: {
|
|
69711
|
-
pattern: /"[^\r\n"]*"|'[^\r\n']*'/
|
|
69712
|
-
},
|
|
69713
|
-
definition: {
|
|
69714
|
-
pattern: /<[^<>\r\n\t]+>(?=\s*::=)/,
|
|
69715
|
-
alias: ['rule', 'keyword'],
|
|
69716
|
-
inside: {
|
|
69717
|
-
punctuation: /^<|>$/
|
|
69718
|
-
}
|
|
69719
|
-
},
|
|
69720
|
-
rule: {
|
|
69721
|
-
pattern: /<[^<>\r\n\t]+>/,
|
|
69722
|
-
inside: {
|
|
69723
|
-
punctuation: /^<|>$/
|
|
69724
|
-
}
|
|
69725
|
-
},
|
|
69726
|
-
operator: /::=|[|()[\]{}*+?]|\.{3}/
|
|
69727
|
-
};
|
|
69728
|
-
Prism.languages.rbnf = Prism.languages.bnf;
|
|
69729
|
-
}
|
|
69701
|
+
var bnf_1;
|
|
69702
|
+
var hasRequiredBnf;
|
|
69730
69703
|
|
|
69731
|
-
|
|
69732
|
-
|
|
69733
|
-
|
|
69734
|
-
|
|
69704
|
+
function requireBnf () {
|
|
69705
|
+
if (hasRequiredBnf) return bnf_1;
|
|
69706
|
+
hasRequiredBnf = 1;
|
|
69707
|
+
|
|
69708
|
+
bnf_1 = bnf;
|
|
69709
|
+
bnf.displayName = 'bnf';
|
|
69710
|
+
bnf.aliases = ['rbnf'];
|
|
69711
|
+
function bnf(Prism) {
|
|
69712
|
+
Prism.languages.bnf = {
|
|
69713
|
+
string: {
|
|
69714
|
+
pattern: /"[^\r\n"]*"|'[^\r\n']*'/
|
|
69715
|
+
},
|
|
69716
|
+
definition: {
|
|
69717
|
+
pattern: /<[^<>\r\n\t]+>(?=\s*::=)/,
|
|
69718
|
+
alias: ['rule', 'keyword'],
|
|
69719
|
+
inside: {
|
|
69720
|
+
punctuation: /^<|>$/
|
|
69721
|
+
}
|
|
69722
|
+
},
|
|
69723
|
+
rule: {
|
|
69724
|
+
pattern: /<[^<>\r\n\t]+>/,
|
|
69725
|
+
inside: {
|
|
69726
|
+
punctuation: /^<|>$/
|
|
69727
|
+
}
|
|
69728
|
+
},
|
|
69729
|
+
operator: /::=|[|()[\]{}*+?]|\.{3}/
|
|
69730
|
+
};
|
|
69731
|
+
Prism.languages.rbnf = Prism.languages.bnf;
|
|
69732
|
+
}
|
|
69733
|
+
return bnf_1;
|
|
69734
|
+
}
|
|
69735
69735
|
|
|
69736
69736
|
var brainfuck_1 = brainfuck$1;
|
|
69737
69737
|
brainfuck$1.displayName = 'brainfuck';
|
|
@@ -70196,169 +70196,169 @@ var cmake$2 = /*#__PURE__*/_mergeNamespaces({
|
|
|
70196
70196
|
'default': cmake_1
|
|
70197
70197
|
}, [cmake_1]);
|
|
70198
70198
|
|
|
70199
|
-
var cobol_1;
|
|
70200
|
-
|
|
70199
|
+
var cobol_1 = cobol;
|
|
70200
|
+
cobol.displayName = 'cobol';
|
|
70201
|
+
cobol.aliases = [];
|
|
70202
|
+
function cobol(Prism) {
|
|
70203
|
+
Prism.languages.cobol = {
|
|
70204
|
+
comment: {
|
|
70205
|
+
pattern: /\*>.*|(^[ \t]*)\*.*/m,
|
|
70206
|
+
lookbehind: true,
|
|
70207
|
+
greedy: true
|
|
70208
|
+
},
|
|
70209
|
+
string: {
|
|
70210
|
+
pattern: /[xzgn]?(?:"(?:[^\r\n"]|"")*"(?!")|'(?:[^\r\n']|'')*'(?!'))/i,
|
|
70211
|
+
greedy: true
|
|
70212
|
+
},
|
|
70213
|
+
level: {
|
|
70214
|
+
pattern: /(^[ \t]*)\d+\b/m,
|
|
70215
|
+
lookbehind: true,
|
|
70216
|
+
greedy: true,
|
|
70217
|
+
alias: 'number'
|
|
70218
|
+
},
|
|
70219
|
+
'class-name': {
|
|
70220
|
+
// https://github.com/antlr/grammars-v4/blob/42edd5b687d183b5fa679e858a82297bd27141e7/cobol85/Cobol85.g4#L1015
|
|
70221
|
+
pattern:
|
|
70222
|
+
/(\bpic(?:ture)?\s+)(?:(?:[-\w$/,:*+<>]|\.(?!\s|$))(?:\(\d+\))?)+/i,
|
|
70223
|
+
lookbehind: true,
|
|
70224
|
+
inside: {
|
|
70225
|
+
number: {
|
|
70226
|
+
pattern: /(\()\d+/,
|
|
70227
|
+
lookbehind: true
|
|
70228
|
+
},
|
|
70229
|
+
punctuation: /[()]/
|
|
70230
|
+
}
|
|
70231
|
+
},
|
|
70232
|
+
keyword: {
|
|
70233
|
+
pattern:
|
|
70234
|
+
/(^|[^\w-])(?:ABORT|ACCEPT|ACCESS|ADD|ADDRESS|ADVANCING|AFTER|ALIGNED|ALL|ALPHABET|ALPHABETIC|ALPHABETIC-LOWER|ALPHABETIC-UPPER|ALPHANUMERIC|ALPHANUMERIC-EDITED|ALSO|ALTER|ALTERNATE|ANY|ARE|AREA|AREAS|AS|ASCENDING|ASCII|ASSIGN|ASSOCIATED-DATA|ASSOCIATED-DATA-LENGTH|AT|ATTRIBUTE|AUTHOR|AUTO|AUTO-SKIP|BACKGROUND-COLOR|BACKGROUND-COLOUR|BASIS|BEEP|BEFORE|BEGINNING|BELL|BINARY|BIT|BLANK|BLINK|BLOCK|BOTTOM|BOUNDS|BY|BYFUNCTION|BYTITLE|CALL|CANCEL|CAPABLE|CCSVERSION|CD|CF|CH|CHAINING|CHANGED|CHANNEL|CHARACTER|CHARACTERS|CLASS|CLASS-ID|CLOCK-UNITS|CLOSE|CLOSE-DISPOSITION|COBOL|CODE|CODE-SET|COL|COLLATING|COLUMN|COM-REG|COMMA|COMMITMENT|COMMON|COMMUNICATION|COMP|COMP-1|COMP-2|COMP-3|COMP-4|COMP-5|COMPUTATIONAL|COMPUTATIONAL-1|COMPUTATIONAL-2|COMPUTATIONAL-3|COMPUTATIONAL-4|COMPUTATIONAL-5|COMPUTE|CONFIGURATION|CONTAINS|CONTENT|CONTINUE|CONTROL|CONTROL-POINT|CONTROLS|CONVENTION|CONVERTING|COPY|CORR|CORRESPONDING|COUNT|CRUNCH|CURRENCY|CURSOR|DATA|DATA-BASE|DATE|DATE-COMPILED|DATE-WRITTEN|DAY|DAY-OF-WEEK|DBCS|DE|DEBUG-CONTENTS|DEBUG-ITEM|DEBUG-LINE|DEBUG-NAME|DEBUG-SUB-1|DEBUG-SUB-2|DEBUG-SUB-3|DEBUGGING|DECIMAL-POINT|DECLARATIVES|DEFAULT|DEFAULT-DISPLAY|DEFINITION|DELETE|DELIMITED|DELIMITER|DEPENDING|DESCENDING|DESTINATION|DETAIL|DFHRESP|DFHVALUE|DISABLE|DISK|DISPLAY|DISPLAY-1|DIVIDE|DIVISION|DONTCARE|DOUBLE|DOWN|DUPLICATES|DYNAMIC|EBCDIC|EGCS|EGI|ELSE|EMI|EMPTY-CHECK|ENABLE|END|END-ACCEPT|END-ADD|END-CALL|END-COMPUTE|END-DELETE|END-DIVIDE|END-EVALUATE|END-IF|END-MULTIPLY|END-OF-PAGE|END-PERFORM|END-READ|END-RECEIVE|END-RETURN|END-REWRITE|END-SEARCH|END-START|END-STRING|END-SUBTRACT|END-UNSTRING|END-WRITE|ENDING|ENTER|ENTRY|ENTRY-PROCEDURE|ENVIRONMENT|EOL|EOP|EOS|ERASE|ERROR|ESCAPE|ESI|EVALUATE|EVENT|EVERY|EXCEPTION|EXCLUSIVE|EXHIBIT|EXIT|EXPORT|EXTEND|EXTENDED|EXTERNAL|FD|FILE|FILE-CONTROL|FILLER|FINAL|FIRST|FOOTING|FOR|FOREGROUND-COLOR|FOREGROUND-COLOUR|FROM|FULL|FUNCTION|FUNCTION-POINTER|FUNCTIONNAME|GENERATE|GIVING|GLOBAL|GO|GOBACK|GRID|GROUP|HEADING|HIGH-VALUE|HIGH-VALUES|HIGHLIGHT|I-O|I-O-CONTROL|ID|IDENTIFICATION|IF|IMPLICIT|IMPORT|IN|INDEX|INDEXED|INDICATE|INITIAL|INITIALIZE|INITIATE|INPUT|INPUT-OUTPUT|INSPECT|INSTALLATION|INTEGER|INTO|INVALID|INVOKE|IS|JUST|JUSTIFIED|KANJI|KEPT|KEY|KEYBOARD|LABEL|LANGUAGE|LAST|LB|LD|LEADING|LEFT|LEFTLINE|LENGTH|LENGTH-CHECK|LIBACCESS|LIBPARAMETER|LIBRARY|LIMIT|LIMITS|LINAGE|LINAGE-COUNTER|LINE|LINE-COUNTER|LINES|LINKAGE|LIST|LOCAL|LOCAL-STORAGE|LOCK|LONG-DATE|LONG-TIME|LOW-VALUE|LOW-VALUES|LOWER|LOWLIGHT|MEMORY|MERGE|MESSAGE|MMDDYYYY|MODE|MODULES|MORE-LABELS|MOVE|MULTIPLE|MULTIPLY|NAMED|NATIONAL|NATIONAL-EDITED|NATIVE|NEGATIVE|NETWORK|NEXT|NO|NO-ECHO|NULL|NULLS|NUMBER|NUMERIC|NUMERIC-DATE|NUMERIC-EDITED|NUMERIC-TIME|OBJECT-COMPUTER|OCCURS|ODT|OF|OFF|OMITTED|ON|OPEN|OPTIONAL|ORDER|ORDERLY|ORGANIZATION|OTHER|OUTPUT|OVERFLOW|OVERLINE|OWN|PACKED-DECIMAL|PADDING|PAGE|PAGE-COUNTER|PASSWORD|PERFORM|PF|PH|PIC|PICTURE|PLUS|POINTER|PORT|POSITION|POSITIVE|PRINTER|PRINTING|PRIVATE|PROCEDURE|PROCEDURE-POINTER|PROCEDURES|PROCEED|PROCESS|PROGRAM|PROGRAM-ID|PROGRAM-LIBRARY|PROMPT|PURGE|QUEUE|QUOTE|QUOTES|RANDOM|RD|READ|READER|REAL|RECEIVE|RECEIVED|RECORD|RECORDING|RECORDS|RECURSIVE|REDEFINES|REEL|REF|REFERENCE|REFERENCES|RELATIVE|RELEASE|REMAINDER|REMARKS|REMOTE|REMOVAL|REMOVE|RENAMES|REPLACE|REPLACING|REPORT|REPORTING|REPORTS|REQUIRED|RERUN|RESERVE|RESET|RETURN|RETURN-CODE|RETURNING|REVERSE-VIDEO|REVERSED|REWIND|REWRITE|RF|RH|RIGHT|ROUNDED|RUN|SAME|SAVE|SCREEN|SD|SEARCH|SECTION|SECURE|SECURITY|SEGMENT|SEGMENT-LIMIT|SELECT|SEND|SENTENCE|SEPARATE|SEQUENCE|SEQUENTIAL|SET|SHARED|SHAREDBYALL|SHAREDBYRUNUNIT|SHARING|SHIFT-IN|SHIFT-OUT|SHORT-DATE|SIGN|SIZE|SORT|SORT-CONTROL|SORT-CORE-SIZE|SORT-FILE-SIZE|SORT-MERGE|SORT-MESSAGE|SORT-MODE-SIZE|SORT-RETURN|SOURCE|SOURCE-COMPUTER|SPACE|SPACES|SPECIAL-NAMES|STANDARD|STANDARD-1|STANDARD-2|START|STATUS|STOP|STRING|SUB-QUEUE-1|SUB-QUEUE-2|SUB-QUEUE-3|SUBTRACT|SUM|SUPPRESS|SYMBOL|SYMBOLIC|SYNC|SYNCHRONIZED|TABLE|TALLY|TALLYING|TAPE|TASK|TERMINAL|TERMINATE|TEST|TEXT|THEN|THREAD|THREAD-LOCAL|THROUGH|THRU|TIME|TIMER|TIMES|TITLE|TO|TODAYS-DATE|TODAYS-NAME|TOP|TRAILING|TRUNCATED|TYPE|TYPEDEF|UNDERLINE|UNIT|UNSTRING|UNTIL|UP|UPON|USAGE|USE|USING|VALUE|VALUES|VARYING|VIRTUAL|WAIT|WHEN|WHEN-COMPILED|WITH|WORDS|WORKING-STORAGE|WRITE|YEAR|YYYYDDD|YYYYMMDD|ZERO-FILL|ZEROES|ZEROS)(?![\w-])/i,
|
|
70235
|
+
lookbehind: true
|
|
70236
|
+
},
|
|
70237
|
+
boolean: {
|
|
70238
|
+
pattern: /(^|[^\w-])(?:false|true)(?![\w-])/i,
|
|
70239
|
+
lookbehind: true
|
|
70240
|
+
},
|
|
70241
|
+
number: {
|
|
70242
|
+
pattern:
|
|
70243
|
+
/(^|[^\w-])(?:[+-]?(?:(?:\d+(?:[.,]\d+)?|[.,]\d+)(?:e[+-]?\d+)?|zero))(?![\w-])/i,
|
|
70244
|
+
lookbehind: true
|
|
70245
|
+
},
|
|
70246
|
+
operator: [
|
|
70247
|
+
/<>|[<>]=?|[=+*/&]/,
|
|
70248
|
+
{
|
|
70249
|
+
pattern: /(^|[^\w-])(?:-|and|equal|greater|less|not|or|than)(?![\w-])/i,
|
|
70250
|
+
lookbehind: true
|
|
70251
|
+
}
|
|
70252
|
+
],
|
|
70253
|
+
punctuation: /[.:,()]/
|
|
70254
|
+
};
|
|
70255
|
+
}
|
|
70201
70256
|
|
|
70202
|
-
|
|
70203
|
-
|
|
70204
|
-
|
|
70257
|
+
var cobol$1 = /*#__PURE__*/_mergeNamespaces({
|
|
70258
|
+
__proto__: null,
|
|
70259
|
+
'default': cobol_1
|
|
70260
|
+
}, [cobol_1]);
|
|
70205
70261
|
|
|
70206
|
-
|
|
70207
|
-
|
|
70208
|
-
|
|
70209
|
-
|
|
70210
|
-
|
|
70211
|
-
|
|
70212
|
-
|
|
70213
|
-
|
|
70214
|
-
|
|
70215
|
-
|
|
70216
|
-
|
|
70217
|
-
|
|
70218
|
-
|
|
70219
|
-
|
|
70220
|
-
|
|
70221
|
-
pattern:
|
|
70222
|
-
|
|
70223
|
-
|
|
70224
|
-
|
|
70225
|
-
|
|
70226
|
-
|
|
70227
|
-
|
|
70228
|
-
|
|
70229
|
-
|
|
70230
|
-
|
|
70231
|
-
inside: {
|
|
70232
|
-
number: {
|
|
70233
|
-
pattern: /(\()\d+/,
|
|
70234
|
-
lookbehind: true
|
|
70262
|
+
var coffeescript_1;
|
|
70263
|
+
var hasRequiredCoffeescript;
|
|
70264
|
+
|
|
70265
|
+
function requireCoffeescript () {
|
|
70266
|
+
if (hasRequiredCoffeescript) return coffeescript_1;
|
|
70267
|
+
hasRequiredCoffeescript = 1;
|
|
70268
|
+
|
|
70269
|
+
coffeescript_1 = coffeescript;
|
|
70270
|
+
coffeescript.displayName = 'coffeescript';
|
|
70271
|
+
coffeescript.aliases = ['coffee'];
|
|
70272
|
+
function coffeescript(Prism) {
|
|
70273
|
+
(function (Prism) {
|
|
70274
|
+
// Ignore comments starting with { to privilege string interpolation highlighting
|
|
70275
|
+
var comment = /#(?!\{).+/;
|
|
70276
|
+
var interpolation = {
|
|
70277
|
+
pattern: /#\{[^}]+\}/,
|
|
70278
|
+
alias: 'variable'
|
|
70279
|
+
};
|
|
70280
|
+
Prism.languages.coffeescript = Prism.languages.extend('javascript', {
|
|
70281
|
+
comment: comment,
|
|
70282
|
+
string: [
|
|
70283
|
+
// Strings are multiline
|
|
70284
|
+
{
|
|
70285
|
+
pattern: /'(?:\\[\s\S]|[^\\'])*'/,
|
|
70286
|
+
greedy: true
|
|
70235
70287
|
},
|
|
70236
|
-
|
|
70288
|
+
{
|
|
70289
|
+
// Strings are multiline
|
|
70290
|
+
pattern: /"(?:\\[\s\S]|[^\\"])*"/,
|
|
70291
|
+
greedy: true,
|
|
70292
|
+
inside: {
|
|
70293
|
+
interpolation: interpolation
|
|
70294
|
+
}
|
|
70295
|
+
}
|
|
70296
|
+
],
|
|
70297
|
+
keyword:
|
|
70298
|
+
/\b(?:and|break|by|catch|class|continue|debugger|delete|do|each|else|extend|extends|false|finally|for|if|in|instanceof|is|isnt|let|loop|namespace|new|no|not|null|of|off|on|or|own|return|super|switch|then|this|throw|true|try|typeof|undefined|unless|until|when|while|window|with|yes|yield)\b/,
|
|
70299
|
+
'class-member': {
|
|
70300
|
+
pattern: /@(?!\d)\w+/,
|
|
70301
|
+
alias: 'variable'
|
|
70237
70302
|
}
|
|
70238
|
-
}
|
|
70239
|
-
|
|
70240
|
-
|
|
70241
|
-
|
|
70242
|
-
|
|
70243
|
-
|
|
70244
|
-
|
|
70245
|
-
|
|
70246
|
-
|
|
70247
|
-
|
|
70248
|
-
|
|
70249
|
-
|
|
70250
|
-
|
|
70251
|
-
|
|
70252
|
-
},
|
|
70253
|
-
operator: [
|
|
70254
|
-
/<>|[<>]=?|[=+*/&]/,
|
|
70255
|
-
{
|
|
70256
|
-
pattern: /(^|[^\w-])(?:-|and|equal|greater|less|not|or|than)(?![\w-])/i,
|
|
70257
|
-
lookbehind: true
|
|
70303
|
+
});
|
|
70304
|
+
Prism.languages.insertBefore('coffeescript', 'comment', {
|
|
70305
|
+
'multiline-comment': {
|
|
70306
|
+
pattern: /###[\s\S]+?###/,
|
|
70307
|
+
alias: 'comment'
|
|
70308
|
+
},
|
|
70309
|
+
// Block regexp can contain comments and interpolation
|
|
70310
|
+
'block-regex': {
|
|
70311
|
+
pattern: /\/{3}[\s\S]*?\/{3}/,
|
|
70312
|
+
alias: 'regex',
|
|
70313
|
+
inside: {
|
|
70314
|
+
comment: comment,
|
|
70315
|
+
interpolation: interpolation
|
|
70316
|
+
}
|
|
70258
70317
|
}
|
|
70259
|
-
|
|
70260
|
-
|
|
70261
|
-
|
|
70318
|
+
});
|
|
70319
|
+
Prism.languages.insertBefore('coffeescript', 'string', {
|
|
70320
|
+
'inline-javascript': {
|
|
70321
|
+
pattern: /`(?:\\[\s\S]|[^\\`])*`/,
|
|
70322
|
+
inside: {
|
|
70323
|
+
delimiter: {
|
|
70324
|
+
pattern: /^`|`$/,
|
|
70325
|
+
alias: 'punctuation'
|
|
70326
|
+
},
|
|
70327
|
+
script: {
|
|
70328
|
+
pattern: /[\s\S]+/,
|
|
70329
|
+
alias: 'language-javascript',
|
|
70330
|
+
inside: Prism.languages.javascript
|
|
70331
|
+
}
|
|
70332
|
+
}
|
|
70333
|
+
},
|
|
70334
|
+
// Block strings
|
|
70335
|
+
'multiline-string': [
|
|
70336
|
+
{
|
|
70337
|
+
pattern: /'''[\s\S]*?'''/,
|
|
70338
|
+
greedy: true,
|
|
70339
|
+
alias: 'string'
|
|
70340
|
+
},
|
|
70341
|
+
{
|
|
70342
|
+
pattern: /"""[\s\S]*?"""/,
|
|
70343
|
+
greedy: true,
|
|
70344
|
+
alias: 'string',
|
|
70345
|
+
inside: {
|
|
70346
|
+
interpolation: interpolation
|
|
70347
|
+
}
|
|
70348
|
+
}
|
|
70349
|
+
]
|
|
70350
|
+
});
|
|
70351
|
+
Prism.languages.insertBefore('coffeescript', 'keyword', {
|
|
70352
|
+
// Object property
|
|
70353
|
+
property: /(?!\d)\w+(?=\s*:(?!:))/
|
|
70354
|
+
});
|
|
70355
|
+
delete Prism.languages.coffeescript['template-string'];
|
|
70356
|
+
Prism.languages.coffee = Prism.languages.coffeescript;
|
|
70357
|
+
})(Prism);
|
|
70262
70358
|
}
|
|
70263
|
-
return
|
|
70264
|
-
}
|
|
70265
|
-
|
|
70266
|
-
var coffeescript_1 = coffeescript$1;
|
|
70267
|
-
coffeescript$1.displayName = 'coffeescript';
|
|
70268
|
-
coffeescript$1.aliases = ['coffee'];
|
|
70269
|
-
function coffeescript$1(Prism) {
|
|
70270
|
-
(function (Prism) {
|
|
70271
|
-
// Ignore comments starting with { to privilege string interpolation highlighting
|
|
70272
|
-
var comment = /#(?!\{).+/;
|
|
70273
|
-
var interpolation = {
|
|
70274
|
-
pattern: /#\{[^}]+\}/,
|
|
70275
|
-
alias: 'variable'
|
|
70276
|
-
};
|
|
70277
|
-
Prism.languages.coffeescript = Prism.languages.extend('javascript', {
|
|
70278
|
-
comment: comment,
|
|
70279
|
-
string: [
|
|
70280
|
-
// Strings are multiline
|
|
70281
|
-
{
|
|
70282
|
-
pattern: /'(?:\\[\s\S]|[^\\'])*'/,
|
|
70283
|
-
greedy: true
|
|
70284
|
-
},
|
|
70285
|
-
{
|
|
70286
|
-
// Strings are multiline
|
|
70287
|
-
pattern: /"(?:\\[\s\S]|[^\\"])*"/,
|
|
70288
|
-
greedy: true,
|
|
70289
|
-
inside: {
|
|
70290
|
-
interpolation: interpolation
|
|
70291
|
-
}
|
|
70292
|
-
}
|
|
70293
|
-
],
|
|
70294
|
-
keyword:
|
|
70295
|
-
/\b(?:and|break|by|catch|class|continue|debugger|delete|do|each|else|extend|extends|false|finally|for|if|in|instanceof|is|isnt|let|loop|namespace|new|no|not|null|of|off|on|or|own|return|super|switch|then|this|throw|true|try|typeof|undefined|unless|until|when|while|window|with|yes|yield)\b/,
|
|
70296
|
-
'class-member': {
|
|
70297
|
-
pattern: /@(?!\d)\w+/,
|
|
70298
|
-
alias: 'variable'
|
|
70299
|
-
}
|
|
70300
|
-
});
|
|
70301
|
-
Prism.languages.insertBefore('coffeescript', 'comment', {
|
|
70302
|
-
'multiline-comment': {
|
|
70303
|
-
pattern: /###[\s\S]+?###/,
|
|
70304
|
-
alias: 'comment'
|
|
70305
|
-
},
|
|
70306
|
-
// Block regexp can contain comments and interpolation
|
|
70307
|
-
'block-regex': {
|
|
70308
|
-
pattern: /\/{3}[\s\S]*?\/{3}/,
|
|
70309
|
-
alias: 'regex',
|
|
70310
|
-
inside: {
|
|
70311
|
-
comment: comment,
|
|
70312
|
-
interpolation: interpolation
|
|
70313
|
-
}
|
|
70314
|
-
}
|
|
70315
|
-
});
|
|
70316
|
-
Prism.languages.insertBefore('coffeescript', 'string', {
|
|
70317
|
-
'inline-javascript': {
|
|
70318
|
-
pattern: /`(?:\\[\s\S]|[^\\`])*`/,
|
|
70319
|
-
inside: {
|
|
70320
|
-
delimiter: {
|
|
70321
|
-
pattern: /^`|`$/,
|
|
70322
|
-
alias: 'punctuation'
|
|
70323
|
-
},
|
|
70324
|
-
script: {
|
|
70325
|
-
pattern: /[\s\S]+/,
|
|
70326
|
-
alias: 'language-javascript',
|
|
70327
|
-
inside: Prism.languages.javascript
|
|
70328
|
-
}
|
|
70329
|
-
}
|
|
70330
|
-
},
|
|
70331
|
-
// Block strings
|
|
70332
|
-
'multiline-string': [
|
|
70333
|
-
{
|
|
70334
|
-
pattern: /'''[\s\S]*?'''/,
|
|
70335
|
-
greedy: true,
|
|
70336
|
-
alias: 'string'
|
|
70337
|
-
},
|
|
70338
|
-
{
|
|
70339
|
-
pattern: /"""[\s\S]*?"""/,
|
|
70340
|
-
greedy: true,
|
|
70341
|
-
alias: 'string',
|
|
70342
|
-
inside: {
|
|
70343
|
-
interpolation: interpolation
|
|
70344
|
-
}
|
|
70345
|
-
}
|
|
70346
|
-
]
|
|
70347
|
-
});
|
|
70348
|
-
Prism.languages.insertBefore('coffeescript', 'keyword', {
|
|
70349
|
-
// Object property
|
|
70350
|
-
property: /(?!\d)\w+(?=\s*:(?!:))/
|
|
70351
|
-
});
|
|
70352
|
-
delete Prism.languages.coffeescript['template-string'];
|
|
70353
|
-
Prism.languages.coffee = Prism.languages.coffeescript;
|
|
70354
|
-
})(Prism);
|
|
70359
|
+
return coffeescript_1;
|
|
70355
70360
|
}
|
|
70356
70361
|
|
|
70357
|
-
var coffeescript$2 = /*#__PURE__*/_mergeNamespaces({
|
|
70358
|
-
__proto__: null,
|
|
70359
|
-
'default': coffeescript_1
|
|
70360
|
-
}, [coffeescript_1]);
|
|
70361
|
-
|
|
70362
70362
|
var concurnas_1;
|
|
70363
70363
|
var hasRequiredConcurnas;
|
|
70364
70364
|
|
|
@@ -87489,7 +87489,7 @@ var hasRequiredVbnet;
|
|
|
87489
87489
|
function requireVbnet () {
|
|
87490
87490
|
if (hasRequiredVbnet) return vbnet_1;
|
|
87491
87491
|
hasRequiredVbnet = 1;
|
|
87492
|
-
var refractorBasic =
|
|
87492
|
+
var refractorBasic = basic_1;
|
|
87493
87493
|
vbnet_1 = vbnet;
|
|
87494
87494
|
vbnet.displayName = 'vbnet';
|
|
87495
87495
|
vbnet.aliases = [];
|
|
@@ -90230,13 +90230,13 @@ refractor.register(autoit_1);
|
|
|
90230
90230
|
refractor.register(avisynth_1);
|
|
90231
90231
|
refractor.register(avroIdl_1);
|
|
90232
90232
|
refractor.register(bash_1);
|
|
90233
|
-
refractor.register(
|
|
90233
|
+
refractor.register(basic_1);
|
|
90234
90234
|
refractor.register(batch_1);
|
|
90235
90235
|
refractor.register(bbcode_1);
|
|
90236
90236
|
refractor.register(bicep_1);
|
|
90237
90237
|
refractor.register(birb_1);
|
|
90238
90238
|
refractor.register(bison_1);
|
|
90239
|
-
refractor.register(
|
|
90239
|
+
refractor.register(requireBnf());
|
|
90240
90240
|
refractor.register(brainfuck_1);
|
|
90241
90241
|
refractor.register(brightscript_1);
|
|
90242
90242
|
refractor.register(bro_1);
|
|
@@ -90247,8 +90247,8 @@ refractor.register(chaiscript_1);
|
|
|
90247
90247
|
refractor.register(cil_1);
|
|
90248
90248
|
refractor.register(clojure_1);
|
|
90249
90249
|
refractor.register(cmake_1);
|
|
90250
|
-
refractor.register(
|
|
90251
|
-
refractor.register(
|
|
90250
|
+
refractor.register(cobol_1);
|
|
90251
|
+
refractor.register(requireCoffeescript());
|
|
90252
90252
|
refractor.register(requireConcurnas());
|
|
90253
90253
|
refractor.register(requireCoq());
|
|
90254
90254
|
refractor.register(requireCpp());
|
|
@@ -92942,19 +92942,19 @@ var bash = /*#__PURE__*/_mergeNamespaces({
|
|
|
92942
92942
|
'default': bashExports
|
|
92943
92943
|
}, [bashExports]);
|
|
92944
92944
|
|
|
92945
|
-
var basicExports
|
|
92945
|
+
var basicExports = requireBasic();
|
|
92946
92946
|
|
|
92947
|
-
var basic
|
|
92947
|
+
var basic = /*#__PURE__*/_mergeNamespaces({
|
|
92948
92948
|
__proto__: null,
|
|
92949
|
-
'default': basicExports
|
|
92950
|
-
}, [basicExports
|
|
92949
|
+
'default': basicExports
|
|
92950
|
+
}, [basicExports]);
|
|
92951
92951
|
|
|
92952
|
-
var bnfExports = requireBnf();
|
|
92952
|
+
var bnfExports$1 = requireBnf$1();
|
|
92953
92953
|
|
|
92954
|
-
var bnf = /*#__PURE__*/_mergeNamespaces({
|
|
92954
|
+
var bnf$1 = /*#__PURE__*/_mergeNamespaces({
|
|
92955
92955
|
__proto__: null,
|
|
92956
|
-
'default': bnfExports
|
|
92957
|
-
}, [bnfExports]);
|
|
92956
|
+
'default': bnfExports$1
|
|
92957
|
+
}, [bnfExports$1]);
|
|
92958
92958
|
|
|
92959
92959
|
var brainfuckExports = requireBrainfuck();
|
|
92960
92960
|
|
|
@@ -93026,12 +93026,12 @@ var cmake = /*#__PURE__*/_mergeNamespaces({
|
|
|
93026
93026
|
'default': cmakeExports
|
|
93027
93027
|
}, [cmakeExports]);
|
|
93028
93028
|
|
|
93029
|
-
var coffeescriptExports = requireCoffeescript();
|
|
93029
|
+
var coffeescriptExports$1 = requireCoffeescript$1();
|
|
93030
93030
|
|
|
93031
|
-
var coffeescript = /*#__PURE__*/_mergeNamespaces({
|
|
93031
|
+
var coffeescript$1 = /*#__PURE__*/_mergeNamespaces({
|
|
93032
93032
|
__proto__: null,
|
|
93033
|
-
'default': coffeescriptExports
|
|
93034
|
-
}, [coffeescriptExports]);
|
|
93033
|
+
'default': coffeescriptExports$1
|
|
93034
|
+
}, [coffeescriptExports$1]);
|
|
93035
93035
|
|
|
93036
93036
|
var coqExports$1 = requireCoq$1();
|
|
93037
93037
|
|
|
@@ -94146,19 +94146,19 @@ var zephir = /*#__PURE__*/_mergeNamespaces({
|
|
|
94146
94146
|
'default': zephirExports
|
|
94147
94147
|
}, [zephirExports]);
|
|
94148
94148
|
|
|
94149
|
-
var
|
|
94149
|
+
var bnfExports = requireBnf();
|
|
94150
94150
|
|
|
94151
|
-
var
|
|
94151
|
+
var bnf = /*#__PURE__*/_mergeNamespaces({
|
|
94152
94152
|
__proto__: null,
|
|
94153
|
-
'default':
|
|
94154
|
-
}, [
|
|
94153
|
+
'default': bnfExports
|
|
94154
|
+
}, [bnfExports]);
|
|
94155
94155
|
|
|
94156
|
-
var
|
|
94156
|
+
var coffeescriptExports = requireCoffeescript();
|
|
94157
94157
|
|
|
94158
|
-
var
|
|
94158
|
+
var coffeescript = /*#__PURE__*/_mergeNamespaces({
|
|
94159
94159
|
__proto__: null,
|
|
94160
|
-
'default':
|
|
94161
|
-
}, [
|
|
94160
|
+
'default': coffeescriptExports
|
|
94161
|
+
}, [coffeescriptExports]);
|
|
94162
94162
|
|
|
94163
94163
|
var concurnasExports = requireConcurnas();
|
|
94164
94164
|
|