@covalent/components 8.15.0-beta.13 → 8.15.0-beta.14
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/code-editor/code-editor.d.ts +0 -14
- package/code-editor/code-editor.d.ts.map +1 -1
- package/{code-editor-3a09cbf1.js → code-editor-857a4673.js} +89 -159
- package/{code-editor-ce557bd5.mjs → code-editor-caabbe50.mjs} +3141 -3338
- package/code-editor.js +1 -1
- package/code-editor.mjs +1 -1
- package/{html-783f1e7c.mjs → html-707a5945.mjs} +1 -1
- package/{html-4fffc46e.js → html-aa904833.js} +1 -1
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/{javascript-4d09cd3c.mjs → javascript-779a52b2.mjs} +2 -2
- package/{javascript-90bb18e6.js → javascript-d8dd6c0d.js} +1 -1
- package/notebook/notebook.d.ts.map +1 -1
- package/notebook-cell.js +1 -1
- package/notebook-cell.mjs +1 -1
- package/notebook.js +32 -17
- package/notebook.mjs +1224 -1191
- package/package.json +1 -1
- package/{python-562f8e9b.mjs → python-02ca0307.mjs} +1 -1
- package/{python-af3aad7d.js → python-b0bc8e7b.js} +1 -1
- package/{typescript-76d039b3.js → typescript-1a78657a.js} +1 -1
- package/{typescript-a2a5d6b2.mjs → typescript-ba11dbe7.mjs} +1 -1
- package/cpp-642b10c4.mjs +0 -387
- package/cpp-7eec3311.js +0 -6
- package/csharp-32862cd2.js +0 -6
- package/csharp-d987ddad.mjs +0 -320
- package/dart-031264ea.js +0 -6
- package/dart-5d209f63.mjs +0 -270
- package/go-46e3b371.mjs +0 -208
- package/go-cdd943fd.js +0 -6
- package/java-32d7b433.js +0 -6
- package/java-cd017f60.mjs +0 -221
- package/kotlin-4b9019e1.js +0 -6
- package/kotlin-c6e52a56.mjs +0 -245
- package/lua-b46719a9.js +0 -6
- package/lua-f159160b.mjs +0 -157
- package/php-987b9d87.mjs +0 -471
- package/php-a6dcde52.js +0 -6
- package/rust-87887495.js +0 -6
- package/rust-97f8f6e1.mjs +0 -337
- package/scala-c68c650c.mjs +0 -353
- package/scala-e8b7bd42.js +0 -6
- package/shell-09452d42.mjs +0 -224
- package/shell-43cfbe7d.js +0 -6
- package/swift-724ff2a3.js +0 -8
- package/swift-abdf1835.mjs +0 -315
- package/xml-89571455.mjs +0 -100
- package/xml-e66929d0.js +0 -6
- package/yaml-11a91e71.js +0 -6
- package/yaml-4eccd122.mjs +0 -189
package/package.json
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./code-editor-
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const a=require("./code-editor-857a4673.js");require("./query-assigned-elements-f623705d.js");require("./property-57f6f6fe.js");require("./async-directive-4a34f75e.js");require("./directive-helpers-0ce1f995.js");require("./directive-1186bc23.js");/*!-----------------------------------------------------------------------------
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
3
|
* Version: 0.34.1(547870b6881302c5b4ff32173c16d06009e3588f)
|
4
4
|
* Released under the MIT license
|
@@ -1,4 +1,4 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("./code-editor-
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const c=require("./code-editor-857a4673.js");require("./query-assigned-elements-f623705d.js");require("./property-57f6f6fe.js");require("./async-directive-4a34f75e.js");require("./directive-helpers-0ce1f995.js");require("./directive-1186bc23.js");/*!-----------------------------------------------------------------------------
|
2
2
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
3
|
* Version: 0.34.1(547870b6881302c5b4ff32173c16d06009e3588f)
|
4
4
|
* Released under the MIT license
|
package/cpp-642b10c4.mjs
DELETED
@@ -1,387 +0,0 @@
|
|
1
|
-
/*!-----------------------------------------------------------------------------
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
-
* Version: 0.34.1(547870b6881302c5b4ff32173c16d06009e3588f)
|
4
|
-
* Released under the MIT license
|
5
|
-
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
6
|
-
*-----------------------------------------------------------------------------*/
|
7
|
-
var e = {
|
8
|
-
comments: {
|
9
|
-
lineComment: "//",
|
10
|
-
blockComment: ["/*", "*/"]
|
11
|
-
},
|
12
|
-
brackets: [
|
13
|
-
["{", "}"],
|
14
|
-
["[", "]"],
|
15
|
-
["(", ")"]
|
16
|
-
],
|
17
|
-
autoClosingPairs: [
|
18
|
-
{ open: "[", close: "]" },
|
19
|
-
{ open: "{", close: "}" },
|
20
|
-
{ open: "(", close: ")" },
|
21
|
-
{ open: "'", close: "'", notIn: ["string", "comment"] },
|
22
|
-
{ open: '"', close: '"', notIn: ["string"] }
|
23
|
-
],
|
24
|
-
surroundingPairs: [
|
25
|
-
{ open: "{", close: "}" },
|
26
|
-
{ open: "[", close: "]" },
|
27
|
-
{ open: "(", close: ")" },
|
28
|
-
{ open: '"', close: '"' },
|
29
|
-
{ open: "'", close: "'" }
|
30
|
-
],
|
31
|
-
folding: {
|
32
|
-
markers: {
|
33
|
-
start: new RegExp("^\\s*#pragma\\s+region\\b"),
|
34
|
-
end: new RegExp("^\\s*#pragma\\s+endregion\\b")
|
35
|
-
}
|
36
|
-
}
|
37
|
-
}, t = {
|
38
|
-
defaultToken: "",
|
39
|
-
tokenPostfix: ".cpp",
|
40
|
-
brackets: [
|
41
|
-
{ token: "delimiter.curly", open: "{", close: "}" },
|
42
|
-
{ token: "delimiter.parenthesis", open: "(", close: ")" },
|
43
|
-
{ token: "delimiter.square", open: "[", close: "]" },
|
44
|
-
{ token: "delimiter.angle", open: "<", close: ">" }
|
45
|
-
],
|
46
|
-
keywords: [
|
47
|
-
"abstract",
|
48
|
-
"amp",
|
49
|
-
"array",
|
50
|
-
"auto",
|
51
|
-
"bool",
|
52
|
-
"break",
|
53
|
-
"case",
|
54
|
-
"catch",
|
55
|
-
"char",
|
56
|
-
"class",
|
57
|
-
"const",
|
58
|
-
"constexpr",
|
59
|
-
"const_cast",
|
60
|
-
"continue",
|
61
|
-
"cpu",
|
62
|
-
"decltype",
|
63
|
-
"default",
|
64
|
-
"delegate",
|
65
|
-
"delete",
|
66
|
-
"do",
|
67
|
-
"double",
|
68
|
-
"dynamic_cast",
|
69
|
-
"each",
|
70
|
-
"else",
|
71
|
-
"enum",
|
72
|
-
"event",
|
73
|
-
"explicit",
|
74
|
-
"export",
|
75
|
-
"extern",
|
76
|
-
"false",
|
77
|
-
"final",
|
78
|
-
"finally",
|
79
|
-
"float",
|
80
|
-
"for",
|
81
|
-
"friend",
|
82
|
-
"gcnew",
|
83
|
-
"generic",
|
84
|
-
"goto",
|
85
|
-
"if",
|
86
|
-
"in",
|
87
|
-
"initonly",
|
88
|
-
"inline",
|
89
|
-
"int",
|
90
|
-
"interface",
|
91
|
-
"interior_ptr",
|
92
|
-
"internal",
|
93
|
-
"literal",
|
94
|
-
"long",
|
95
|
-
"mutable",
|
96
|
-
"namespace",
|
97
|
-
"new",
|
98
|
-
"noexcept",
|
99
|
-
"nullptr",
|
100
|
-
"__nullptr",
|
101
|
-
"operator",
|
102
|
-
"override",
|
103
|
-
"partial",
|
104
|
-
"pascal",
|
105
|
-
"pin_ptr",
|
106
|
-
"private",
|
107
|
-
"property",
|
108
|
-
"protected",
|
109
|
-
"public",
|
110
|
-
"ref",
|
111
|
-
"register",
|
112
|
-
"reinterpret_cast",
|
113
|
-
"restrict",
|
114
|
-
"return",
|
115
|
-
"safe_cast",
|
116
|
-
"sealed",
|
117
|
-
"short",
|
118
|
-
"signed",
|
119
|
-
"sizeof",
|
120
|
-
"static",
|
121
|
-
"static_assert",
|
122
|
-
"static_cast",
|
123
|
-
"struct",
|
124
|
-
"switch",
|
125
|
-
"template",
|
126
|
-
"this",
|
127
|
-
"thread_local",
|
128
|
-
"throw",
|
129
|
-
"tile_static",
|
130
|
-
"true",
|
131
|
-
"try",
|
132
|
-
"typedef",
|
133
|
-
"typeid",
|
134
|
-
"typename",
|
135
|
-
"union",
|
136
|
-
"unsigned",
|
137
|
-
"using",
|
138
|
-
"virtual",
|
139
|
-
"void",
|
140
|
-
"volatile",
|
141
|
-
"wchar_t",
|
142
|
-
"where",
|
143
|
-
"while",
|
144
|
-
"_asm",
|
145
|
-
"_based",
|
146
|
-
"_cdecl",
|
147
|
-
"_declspec",
|
148
|
-
"_fastcall",
|
149
|
-
"_if_exists",
|
150
|
-
"_if_not_exists",
|
151
|
-
"_inline",
|
152
|
-
"_multiple_inheritance",
|
153
|
-
"_pascal",
|
154
|
-
"_single_inheritance",
|
155
|
-
"_stdcall",
|
156
|
-
"_virtual_inheritance",
|
157
|
-
"_w64",
|
158
|
-
"__abstract",
|
159
|
-
"__alignof",
|
160
|
-
"__asm",
|
161
|
-
"__assume",
|
162
|
-
"__based",
|
163
|
-
"__box",
|
164
|
-
"__builtin_alignof",
|
165
|
-
"__cdecl",
|
166
|
-
"__clrcall",
|
167
|
-
"__declspec",
|
168
|
-
"__delegate",
|
169
|
-
"__event",
|
170
|
-
"__except",
|
171
|
-
"__fastcall",
|
172
|
-
"__finally",
|
173
|
-
"__forceinline",
|
174
|
-
"__gc",
|
175
|
-
"__hook",
|
176
|
-
"__identifier",
|
177
|
-
"__if_exists",
|
178
|
-
"__if_not_exists",
|
179
|
-
"__inline",
|
180
|
-
"__int128",
|
181
|
-
"__int16",
|
182
|
-
"__int32",
|
183
|
-
"__int64",
|
184
|
-
"__int8",
|
185
|
-
"__interface",
|
186
|
-
"__leave",
|
187
|
-
"__m128",
|
188
|
-
"__m128d",
|
189
|
-
"__m128i",
|
190
|
-
"__m256",
|
191
|
-
"__m256d",
|
192
|
-
"__m256i",
|
193
|
-
"__m64",
|
194
|
-
"__multiple_inheritance",
|
195
|
-
"__newslot",
|
196
|
-
"__nogc",
|
197
|
-
"__noop",
|
198
|
-
"__nounwind",
|
199
|
-
"__novtordisp",
|
200
|
-
"__pascal",
|
201
|
-
"__pin",
|
202
|
-
"__pragma",
|
203
|
-
"__property",
|
204
|
-
"__ptr32",
|
205
|
-
"__ptr64",
|
206
|
-
"__raise",
|
207
|
-
"__restrict",
|
208
|
-
"__resume",
|
209
|
-
"__sealed",
|
210
|
-
"__single_inheritance",
|
211
|
-
"__stdcall",
|
212
|
-
"__super",
|
213
|
-
"__thiscall",
|
214
|
-
"__try",
|
215
|
-
"__try_cast",
|
216
|
-
"__typeof",
|
217
|
-
"__unaligned",
|
218
|
-
"__unhook",
|
219
|
-
"__uuidof",
|
220
|
-
"__value",
|
221
|
-
"__virtual_inheritance",
|
222
|
-
"__w64",
|
223
|
-
"__wchar_t"
|
224
|
-
],
|
225
|
-
operators: [
|
226
|
-
"=",
|
227
|
-
">",
|
228
|
-
"<",
|
229
|
-
"!",
|
230
|
-
"~",
|
231
|
-
"?",
|
232
|
-
":",
|
233
|
-
"==",
|
234
|
-
"<=",
|
235
|
-
">=",
|
236
|
-
"!=",
|
237
|
-
"&&",
|
238
|
-
"||",
|
239
|
-
"++",
|
240
|
-
"--",
|
241
|
-
"+",
|
242
|
-
"-",
|
243
|
-
"*",
|
244
|
-
"/",
|
245
|
-
"&",
|
246
|
-
"|",
|
247
|
-
"^",
|
248
|
-
"%",
|
249
|
-
"<<",
|
250
|
-
">>",
|
251
|
-
">>>",
|
252
|
-
"+=",
|
253
|
-
"-=",
|
254
|
-
"*=",
|
255
|
-
"/=",
|
256
|
-
"&=",
|
257
|
-
"|=",
|
258
|
-
"^=",
|
259
|
-
"%=",
|
260
|
-
"<<=",
|
261
|
-
">>=",
|
262
|
-
">>>="
|
263
|
-
],
|
264
|
-
symbols: /[=><!~?:&|+\-*\/\^%]+/,
|
265
|
-
escapes: /\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,
|
266
|
-
integersuffix: /([uU](ll|LL|l|L)|(ll|LL|l|L)?[uU]?)/,
|
267
|
-
floatsuffix: /[fFlL]?/,
|
268
|
-
encoding: /u|u8|U|L/,
|
269
|
-
tokenizer: {
|
270
|
-
root: [
|
271
|
-
[/@encoding?R\"(?:([^ ()\\\t]*))\(/, { token: "string.raw.begin", next: "@raw.$1" }],
|
272
|
-
[
|
273
|
-
/[a-zA-Z_]\w*/,
|
274
|
-
{
|
275
|
-
cases: {
|
276
|
-
"@keywords": { token: "keyword.$0" },
|
277
|
-
"@default": "identifier"
|
278
|
-
}
|
279
|
-
}
|
280
|
-
],
|
281
|
-
[/^\s*#\s*include/, { token: "keyword.directive.include", next: "@include" }],
|
282
|
-
[/^\s*#\s*\w+/, "keyword.directive"],
|
283
|
-
{ include: "@whitespace" },
|
284
|
-
[/\[\s*\[/, { token: "annotation", next: "@annotation" }],
|
285
|
-
[/[{}()\[\]]/, "@brackets"],
|
286
|
-
[/[<>](?!@symbols)/, "@brackets"],
|
287
|
-
[
|
288
|
-
/@symbols/,
|
289
|
-
{
|
290
|
-
cases: {
|
291
|
-
"@operators": "delimiter",
|
292
|
-
"@default": ""
|
293
|
-
}
|
294
|
-
}
|
295
|
-
],
|
296
|
-
[/\d*\d+[eE]([\-+]?\d+)?(@floatsuffix)/, "number.float"],
|
297
|
-
[/\d*\.\d+([eE][\-+]?\d+)?(@floatsuffix)/, "number.float"],
|
298
|
-
[/0[xX][0-9a-fA-F']*[0-9a-fA-F](@integersuffix)/, "number.hex"],
|
299
|
-
[/0[0-7']*[0-7](@integersuffix)/, "number.octal"],
|
300
|
-
[/0[bB][0-1']*[0-1](@integersuffix)/, "number.binary"],
|
301
|
-
[/\d[\d']*\d(@integersuffix)/, "number"],
|
302
|
-
[/\d(@integersuffix)/, "number"],
|
303
|
-
[/[;,.]/, "delimiter"],
|
304
|
-
[/"([^"\\]|\\.)*$/, "string.invalid"],
|
305
|
-
[/"/, "string", "@string"],
|
306
|
-
[/'[^\\']'/, "string"],
|
307
|
-
[/(')(@escapes)(')/, ["string", "string.escape", "string"]],
|
308
|
-
[/'/, "string.invalid"]
|
309
|
-
],
|
310
|
-
whitespace: [
|
311
|
-
[/[ \t\r\n]+/, ""],
|
312
|
-
[/\/\*\*(?!\/)/, "comment.doc", "@doccomment"],
|
313
|
-
[/\/\*/, "comment", "@comment"],
|
314
|
-
[/\/\/.*\\$/, "comment", "@linecomment"],
|
315
|
-
[/\/\/.*$/, "comment"]
|
316
|
-
],
|
317
|
-
comment: [
|
318
|
-
[/[^\/*]+/, "comment"],
|
319
|
-
[/\*\//, "comment", "@pop"],
|
320
|
-
[/[\/*]/, "comment"]
|
321
|
-
],
|
322
|
-
linecomment: [
|
323
|
-
[/.*[^\\]$/, "comment", "@pop"],
|
324
|
-
[/[^]+/, "comment"]
|
325
|
-
],
|
326
|
-
doccomment: [
|
327
|
-
[/[^\/*]+/, "comment.doc"],
|
328
|
-
[/\*\//, "comment.doc", "@pop"],
|
329
|
-
[/[\/*]/, "comment.doc"]
|
330
|
-
],
|
331
|
-
string: [
|
332
|
-
[/[^\\"]+/, "string"],
|
333
|
-
[/@escapes/, "string.escape"],
|
334
|
-
[/\\./, "string.escape.invalid"],
|
335
|
-
[/"/, "string", "@pop"]
|
336
|
-
],
|
337
|
-
raw: [
|
338
|
-
[
|
339
|
-
/(.*)(\))(?:([^ ()\\\t"]*))(\")/,
|
340
|
-
{
|
341
|
-
cases: {
|
342
|
-
"$3==$S2": [
|
343
|
-
"string.raw",
|
344
|
-
"string.raw.end",
|
345
|
-
"string.raw.end",
|
346
|
-
{ token: "string.raw.end", next: "@pop" }
|
347
|
-
],
|
348
|
-
"@default": ["string.raw", "string.raw", "string.raw", "string.raw"]
|
349
|
-
}
|
350
|
-
}
|
351
|
-
],
|
352
|
-
[/.*/, "string.raw"]
|
353
|
-
],
|
354
|
-
annotation: [
|
355
|
-
{ include: "@whitespace" },
|
356
|
-
[/using|alignas/, "keyword"],
|
357
|
-
[/[a-zA-Z0-9_]+/, "annotation"],
|
358
|
-
[/[,:]/, "delimiter"],
|
359
|
-
[/[()]/, "@brackets"],
|
360
|
-
[/\]\s*\]/, { token: "annotation", next: "@pop" }]
|
361
|
-
],
|
362
|
-
include: [
|
363
|
-
[
|
364
|
-
/(\s*)(<)([^<>]*)(>)/,
|
365
|
-
[
|
366
|
-
"",
|
367
|
-
"keyword.directive.include.begin",
|
368
|
-
"string.include.identifier",
|
369
|
-
{ token: "keyword.directive.include.end", next: "@pop" }
|
370
|
-
]
|
371
|
-
],
|
372
|
-
[
|
373
|
-
/(\s*)(")([^"]*)(")/,
|
374
|
-
[
|
375
|
-
"",
|
376
|
-
"keyword.directive.include.begin",
|
377
|
-
"string.include.identifier",
|
378
|
-
{ token: "keyword.directive.include.end", next: "@pop" }
|
379
|
-
]
|
380
|
-
]
|
381
|
-
]
|
382
|
-
}
|
383
|
-
};
|
384
|
-
export {
|
385
|
-
e as conf,
|
386
|
-
t as language
|
387
|
-
};
|
package/cpp-7eec3311.js
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});/*!-----------------------------------------------------------------------------
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
-
* Version: 0.34.1(547870b6881302c5b4ff32173c16d06009e3588f)
|
4
|
-
* Released under the MIT license
|
5
|
-
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
6
|
-
*-----------------------------------------------------------------------------*/var e={comments:{lineComment:"//",blockComment:["/*","*/"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"[",close:"]"},{open:"{",close:"}"},{open:"(",close:")"},{open:"'",close:"'",notIn:["string","comment"]},{open:'"',close:'"',notIn:["string"]}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:'"',close:'"'},{open:"'",close:"'"}],folding:{markers:{start:new RegExp("^\\s*#pragma\\s+region\\b"),end:new RegExp("^\\s*#pragma\\s+endregion\\b")}}},t={defaultToken:"",tokenPostfix:".cpp",brackets:[{token:"delimiter.curly",open:"{",close:"}"},{token:"delimiter.parenthesis",open:"(",close:")"},{token:"delimiter.square",open:"[",close:"]"},{token:"delimiter.angle",open:"<",close:">"}],keywords:["abstract","amp","array","auto","bool","break","case","catch","char","class","const","constexpr","const_cast","continue","cpu","decltype","default","delegate","delete","do","double","dynamic_cast","each","else","enum","event","explicit","export","extern","false","final","finally","float","for","friend","gcnew","generic","goto","if","in","initonly","inline","int","interface","interior_ptr","internal","literal","long","mutable","namespace","new","noexcept","nullptr","__nullptr","operator","override","partial","pascal","pin_ptr","private","property","protected","public","ref","register","reinterpret_cast","restrict","return","safe_cast","sealed","short","signed","sizeof","static","static_assert","static_cast","struct","switch","template","this","thread_local","throw","tile_static","true","try","typedef","typeid","typename","union","unsigned","using","virtual","void","volatile","wchar_t","where","while","_asm","_based","_cdecl","_declspec","_fastcall","_if_exists","_if_not_exists","_inline","_multiple_inheritance","_pascal","_single_inheritance","_stdcall","_virtual_inheritance","_w64","__abstract","__alignof","__asm","__assume","__based","__box","__builtin_alignof","__cdecl","__clrcall","__declspec","__delegate","__event","__except","__fastcall","__finally","__forceinline","__gc","__hook","__identifier","__if_exists","__if_not_exists","__inline","__int128","__int16","__int32","__int64","__int8","__interface","__leave","__m128","__m128d","__m128i","__m256","__m256d","__m256i","__m64","__multiple_inheritance","__newslot","__nogc","__noop","__nounwind","__novtordisp","__pascal","__pin","__pragma","__property","__ptr32","__ptr64","__raise","__restrict","__resume","__sealed","__single_inheritance","__stdcall","__super","__thiscall","__try","__try_cast","__typeof","__unaligned","__unhook","__uuidof","__value","__virtual_inheritance","__w64","__wchar_t"],operators:["=",">","<","!","~","?",":","==","<=",">=","!=","&&","||","++","--","+","-","*","/","&","|","^","%","<<",">>",">>>","+=","-=","*=","/=","&=","|=","^=","%=","<<=",">>=",">>>="],symbols:/[=><!~?:&|+\-*\/\^%]+/,escapes:/\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,integersuffix:/([uU](ll|LL|l|L)|(ll|LL|l|L)?[uU]?)/,floatsuffix:/[fFlL]?/,encoding:/u|u8|U|L/,tokenizer:{root:[[/@encoding?R\"(?:([^ ()\\\t]*))\(/,{token:"string.raw.begin",next:"@raw.$1"}],[/[a-zA-Z_]\w*/,{cases:{"@keywords":{token:"keyword.$0"},"@default":"identifier"}}],[/^\s*#\s*include/,{token:"keyword.directive.include",next:"@include"}],[/^\s*#\s*\w+/,"keyword.directive"],{include:"@whitespace"},[/\[\s*\[/,{token:"annotation",next:"@annotation"}],[/[{}()\[\]]/,"@brackets"],[/[<>](?!@symbols)/,"@brackets"],[/@symbols/,{cases:{"@operators":"delimiter","@default":""}}],[/\d*\d+[eE]([\-+]?\d+)?(@floatsuffix)/,"number.float"],[/\d*\.\d+([eE][\-+]?\d+)?(@floatsuffix)/,"number.float"],[/0[xX][0-9a-fA-F']*[0-9a-fA-F](@integersuffix)/,"number.hex"],[/0[0-7']*[0-7](@integersuffix)/,"number.octal"],[/0[bB][0-1']*[0-1](@integersuffix)/,"number.binary"],[/\d[\d']*\d(@integersuffix)/,"number"],[/\d(@integersuffix)/,"number"],[/[;,.]/,"delimiter"],[/"([^"\\]|\\.)*$/,"string.invalid"],[/"/,"string","@string"],[/'[^\\']'/,"string"],[/(')(@escapes)(')/,["string","string.escape","string"]],[/'/,"string.invalid"]],whitespace:[[/[ \t\r\n]+/,""],[/\/\*\*(?!\/)/,"comment.doc","@doccomment"],[/\/\*/,"comment","@comment"],[/\/\/.*\\$/,"comment","@linecomment"],[/\/\/.*$/,"comment"]],comment:[[/[^\/*]+/,"comment"],[/\*\//,"comment","@pop"],[/[\/*]/,"comment"]],linecomment:[[/.*[^\\]$/,"comment","@pop"],[/[^]+/,"comment"]],doccomment:[[/[^\/*]+/,"comment.doc"],[/\*\//,"comment.doc","@pop"],[/[\/*]/,"comment.doc"]],string:[[/[^\\"]+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/"/,"string","@pop"]],raw:[[/(.*)(\))(?:([^ ()\\\t"]*))(\")/,{cases:{"$3==$S2":["string.raw","string.raw.end","string.raw.end",{token:"string.raw.end",next:"@pop"}],"@default":["string.raw","string.raw","string.raw","string.raw"]}}],[/.*/,"string.raw"]],annotation:[{include:"@whitespace"},[/using|alignas/,"keyword"],[/[a-zA-Z0-9_]+/,"annotation"],[/[,:]/,"delimiter"],[/[()]/,"@brackets"],[/\]\s*\]/,{token:"annotation",next:"@pop"}]],include:[[/(\s*)(<)([^<>]*)(>)/,["","keyword.directive.include.begin","string.include.identifier",{token:"keyword.directive.include.end",next:"@pop"}]],[/(\s*)(")([^"]*)(")/,["","keyword.directive.include.begin","string.include.identifier",{token:"keyword.directive.include.end",next:"@pop"}]]]}};exports.conf=e;exports.language=t;
|
package/csharp-32862cd2.js
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});/*!-----------------------------------------------------------------------------
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
-
* Version: 0.34.1(547870b6881302c5b4ff32173c16d06009e3588f)
|
4
|
-
* Released under the MIT license
|
5
|
-
* https://github.com/microsoft/monaco-editor/blob/main/LICENSE.txt
|
6
|
-
*-----------------------------------------------------------------------------*/var e={wordPattern:/(-?\d*\.\d\w*)|([^\`\~\!\#\$\%\^\&\*\(\)\-\=\+\[\{\]\}\\\|\;\:\'\"\,\.\<\>\/\?\s]+)/g,comments:{lineComment:"//",blockComment:["/*","*/"]},brackets:[["{","}"],["[","]"],["(",")"]],autoClosingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"'",close:"'",notIn:["string","comment"]},{open:'"',close:'"',notIn:["string","comment"]}],surroundingPairs:[{open:"{",close:"}"},{open:"[",close:"]"},{open:"(",close:")"},{open:"<",close:">"},{open:"'",close:"'"},{open:'"',close:'"'}],folding:{markers:{start:new RegExp("^\\s*#region\\b"),end:new RegExp("^\\s*#endregion\\b")}}},t={defaultToken:"",tokenPostfix:".cs",brackets:[{open:"{",close:"}",token:"delimiter.curly"},{open:"[",close:"]",token:"delimiter.square"},{open:"(",close:")",token:"delimiter.parenthesis"},{open:"<",close:">",token:"delimiter.angle"}],keywords:["extern","alias","using","bool","decimal","sbyte","byte","short","ushort","int","uint","long","ulong","char","float","double","object","dynamic","string","assembly","is","as","ref","out","this","base","new","typeof","void","checked","unchecked","default","delegate","var","const","if","else","switch","case","while","do","for","foreach","in","break","continue","goto","return","throw","try","catch","finally","lock","yield","from","let","where","join","on","equals","into","orderby","ascending","descending","select","group","by","namespace","partial","class","field","event","method","param","public","protected","internal","private","abstract","sealed","static","struct","readonly","volatile","virtual","override","params","get","set","add","remove","operator","true","false","implicit","explicit","interface","enum","null","async","await","fixed","sizeof","stackalloc","unsafe","nameof","when"],namespaceFollows:["namespace","using"],parenFollows:["if","for","while","switch","foreach","using","catch","when"],operators:["=","??","||","&&","|","^","&","==","!=","<=",">=","<<","+","-","*","/","%","!","~","++","--","+=","-=","*=","/=","%=","&=","|=","^=","<<=",">>=",">>","=>"],symbols:/[=><!~?:&|+\-*\/\^%]+/,escapes:/\\(?:[abfnrtv\\"']|x[0-9A-Fa-f]{1,4}|u[0-9A-Fa-f]{4}|U[0-9A-Fa-f]{8})/,tokenizer:{root:[[/\@?[a-zA-Z_]\w*/,{cases:{"@namespaceFollows":{token:"keyword.$0",next:"@namespace"},"@keywords":{token:"keyword.$0",next:"@qualified"},"@default":{token:"identifier",next:"@qualified"}}}],{include:"@whitespace"},[/}/,{cases:{"$S2==interpolatedstring":{token:"string.quote",next:"@pop"},"$S2==litinterpstring":{token:"string.quote",next:"@pop"},"@default":"@brackets"}}],[/[{}()\[\]]/,"@brackets"],[/[<>](?!@symbols)/,"@brackets"],[/@symbols/,{cases:{"@operators":"delimiter","@default":""}}],[/[0-9_]*\.[0-9_]+([eE][\-+]?\d+)?[fFdD]?/,"number.float"],[/0[xX][0-9a-fA-F_]+/,"number.hex"],[/0[bB][01_]+/,"number.hex"],[/[0-9_]+/,"number"],[/[;,.]/,"delimiter"],[/"([^"\\]|\\.)*$/,"string.invalid"],[/"/,{token:"string.quote",next:"@string"}],[/\$\@"/,{token:"string.quote",next:"@litinterpstring"}],[/\@"/,{token:"string.quote",next:"@litstring"}],[/\$"/,{token:"string.quote",next:"@interpolatedstring"}],[/'[^\\']'/,"string"],[/(')(@escapes)(')/,["string","string.escape","string"]],[/'/,"string.invalid"]],qualified:[[/[a-zA-Z_][\w]*/,{cases:{"@keywords":{token:"keyword.$0"},"@default":"identifier"}}],[/\./,"delimiter"],["","","@pop"]],namespace:[{include:"@whitespace"},[/[A-Z]\w*/,"namespace"],[/[\.=]/,"delimiter"],["","","@pop"]],comment:[[/[^\/*]+/,"comment"],["\\*/","comment","@pop"],[/[\/*]/,"comment"]],string:[[/[^\\"]+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/"/,{token:"string.quote",next:"@pop"}]],litstring:[[/[^"]+/,"string"],[/""/,"string.escape"],[/"/,{token:"string.quote",next:"@pop"}]],litinterpstring:[[/[^"{]+/,"string"],[/""/,"string.escape"],[/{{/,"string.escape"],[/}}/,"string.escape"],[/{/,{token:"string.quote",next:"root.litinterpstring"}],[/"/,{token:"string.quote",next:"@pop"}]],interpolatedstring:[[/[^\\"{]+/,"string"],[/@escapes/,"string.escape"],[/\\./,"string.escape.invalid"],[/{{/,"string.escape"],[/}}/,"string.escape"],[/{/,{token:"string.quote",next:"root.interpolatedstring"}],[/"/,{token:"string.quote",next:"@pop"}]],whitespace:[[/^[ \t\v\f]*#((r)|(load))(?=\s)/,"directive.csx"],[/^[ \t\v\f]*#\w.*$/,"namespace.cpp"],[/[ \t\v\f\r\n]+/,""],[/\/\*/,"comment","@comment"],[/\/\/.*$/,"comment"]]}};exports.conf=e;exports.language=t;
|