@typespec/prettier-plugin-typespec 1.9.0-dev.0 → 1.9.0-dev.1

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/dist/index.js CHANGED
@@ -13,1813 +13,74 @@ __export(formatter_exports, {
13
13
  printers: () => printers
14
14
  });
15
15
 
16
- // ../compiler/dist/src/core/source-file.js
17
- function createSourceFile(text, path) {
18
- let lineStarts = void 0;
19
- return {
20
- text,
21
- path,
22
- getLineStarts,
23
- getLineAndCharacterOfPosition
24
- };
25
- function getLineStarts() {
26
- return lineStarts = lineStarts ?? scanLineStarts(text);
27
- }
28
- function getLineAndCharacterOfPosition(position) {
29
- const starts = getLineStarts();
30
- let line2 = binarySearch(starts, position);
31
- if (line2 < 0) {
32
- line2 = ~line2 - 1;
33
- }
34
- return {
35
- line: line2,
36
- character: position - starts[line2]
37
- };
38
- }
39
- }
40
- function scanLineStarts(text) {
41
- const starts = [];
42
- let start = 0;
43
- let pos = 0;
44
- while (pos < text.length) {
45
- const ch = text.charCodeAt(pos);
46
- pos++;
47
- switch (ch) {
48
- case 13:
49
- if (text.charCodeAt(pos) === 10) {
50
- pos++;
51
- }
52
- // fallthrough
53
- case 10:
54
- starts.push(start);
55
- start = pos;
56
- break;
57
- }
58
- }
59
- starts.push(start);
60
- return starts;
16
+ // ../compiler/dist/src/utils/misc.js
17
+ function isArray(arg) {
18
+ return Array.isArray(arg);
61
19
  }
62
- function binarySearch(array, value) {
63
- let low = 0;
64
- let high = array.length - 1;
65
- while (low <= high) {
66
- const middle = low + (high - low >> 1);
67
- const v = array[middle];
68
- if (v < value) {
69
- low = middle + 1;
70
- } else if (v > value) {
71
- high = middle - 1;
72
- } else {
73
- return middle;
74
- }
75
- }
76
- return ~low;
20
+ function mutate(value) {
21
+ return value;
77
22
  }
78
23
 
79
- // ../compiler/dist/src/core/types.js
80
- var ResolutionResultFlags;
81
- (function(ResolutionResultFlags2) {
82
- ResolutionResultFlags2[ResolutionResultFlags2["None"] = 0] = "None";
83
- ResolutionResultFlags2[ResolutionResultFlags2["Resolved"] = 2] = "Resolved";
84
- ResolutionResultFlags2[ResolutionResultFlags2["Unknown"] = 4] = "Unknown";
85
- ResolutionResultFlags2[ResolutionResultFlags2["Ambiguous"] = 8] = "Ambiguous";
86
- ResolutionResultFlags2[ResolutionResultFlags2["NotFound"] = 16] = "NotFound";
87
- ResolutionResultFlags2[ResolutionResultFlags2["ResolutionFailed"] = 28] = "ResolutionFailed";
88
- })(ResolutionResultFlags || (ResolutionResultFlags = {}));
89
- var SyntaxKind;
90
- (function(SyntaxKind2) {
91
- SyntaxKind2[SyntaxKind2["TypeSpecScript"] = 0] = "TypeSpecScript";
92
- SyntaxKind2[SyntaxKind2["JsSourceFile"] = 1] = "JsSourceFile";
93
- SyntaxKind2[SyntaxKind2["ImportStatement"] = 2] = "ImportStatement";
94
- SyntaxKind2[SyntaxKind2["Identifier"] = 3] = "Identifier";
95
- SyntaxKind2[SyntaxKind2["AugmentDecoratorStatement"] = 4] = "AugmentDecoratorStatement";
96
- SyntaxKind2[SyntaxKind2["DecoratorExpression"] = 5] = "DecoratorExpression";
97
- SyntaxKind2[SyntaxKind2["DirectiveExpression"] = 6] = "DirectiveExpression";
98
- SyntaxKind2[SyntaxKind2["MemberExpression"] = 7] = "MemberExpression";
99
- SyntaxKind2[SyntaxKind2["NamespaceStatement"] = 8] = "NamespaceStatement";
100
- SyntaxKind2[SyntaxKind2["UsingStatement"] = 9] = "UsingStatement";
101
- SyntaxKind2[SyntaxKind2["OperationStatement"] = 10] = "OperationStatement";
102
- SyntaxKind2[SyntaxKind2["OperationSignatureDeclaration"] = 11] = "OperationSignatureDeclaration";
103
- SyntaxKind2[SyntaxKind2["OperationSignatureReference"] = 12] = "OperationSignatureReference";
104
- SyntaxKind2[SyntaxKind2["ModelStatement"] = 13] = "ModelStatement";
105
- SyntaxKind2[SyntaxKind2["ModelExpression"] = 14] = "ModelExpression";
106
- SyntaxKind2[SyntaxKind2["ModelProperty"] = 15] = "ModelProperty";
107
- SyntaxKind2[SyntaxKind2["ModelSpreadProperty"] = 16] = "ModelSpreadProperty";
108
- SyntaxKind2[SyntaxKind2["ScalarStatement"] = 17] = "ScalarStatement";
109
- SyntaxKind2[SyntaxKind2["InterfaceStatement"] = 18] = "InterfaceStatement";
110
- SyntaxKind2[SyntaxKind2["UnionStatement"] = 19] = "UnionStatement";
111
- SyntaxKind2[SyntaxKind2["UnionVariant"] = 20] = "UnionVariant";
112
- SyntaxKind2[SyntaxKind2["EnumStatement"] = 21] = "EnumStatement";
113
- SyntaxKind2[SyntaxKind2["EnumMember"] = 22] = "EnumMember";
114
- SyntaxKind2[SyntaxKind2["EnumSpreadMember"] = 23] = "EnumSpreadMember";
115
- SyntaxKind2[SyntaxKind2["AliasStatement"] = 24] = "AliasStatement";
116
- SyntaxKind2[SyntaxKind2["DecoratorDeclarationStatement"] = 25] = "DecoratorDeclarationStatement";
117
- SyntaxKind2[SyntaxKind2["FunctionDeclarationStatement"] = 26] = "FunctionDeclarationStatement";
118
- SyntaxKind2[SyntaxKind2["FunctionParameter"] = 27] = "FunctionParameter";
119
- SyntaxKind2[SyntaxKind2["UnionExpression"] = 28] = "UnionExpression";
120
- SyntaxKind2[SyntaxKind2["IntersectionExpression"] = 29] = "IntersectionExpression";
121
- SyntaxKind2[SyntaxKind2["TupleExpression"] = 30] = "TupleExpression";
122
- SyntaxKind2[SyntaxKind2["ArrayExpression"] = 31] = "ArrayExpression";
123
- SyntaxKind2[SyntaxKind2["StringLiteral"] = 32] = "StringLiteral";
124
- SyntaxKind2[SyntaxKind2["NumericLiteral"] = 33] = "NumericLiteral";
125
- SyntaxKind2[SyntaxKind2["BooleanLiteral"] = 34] = "BooleanLiteral";
126
- SyntaxKind2[SyntaxKind2["StringTemplateExpression"] = 35] = "StringTemplateExpression";
127
- SyntaxKind2[SyntaxKind2["StringTemplateHead"] = 36] = "StringTemplateHead";
128
- SyntaxKind2[SyntaxKind2["StringTemplateMiddle"] = 37] = "StringTemplateMiddle";
129
- SyntaxKind2[SyntaxKind2["StringTemplateTail"] = 38] = "StringTemplateTail";
130
- SyntaxKind2[SyntaxKind2["StringTemplateSpan"] = 39] = "StringTemplateSpan";
131
- SyntaxKind2[SyntaxKind2["ExternKeyword"] = 40] = "ExternKeyword";
132
- SyntaxKind2[SyntaxKind2["VoidKeyword"] = 41] = "VoidKeyword";
133
- SyntaxKind2[SyntaxKind2["NeverKeyword"] = 42] = "NeverKeyword";
134
- SyntaxKind2[SyntaxKind2["UnknownKeyword"] = 43] = "UnknownKeyword";
135
- SyntaxKind2[SyntaxKind2["ValueOfExpression"] = 44] = "ValueOfExpression";
136
- SyntaxKind2[SyntaxKind2["TypeReference"] = 45] = "TypeReference";
137
- SyntaxKind2[SyntaxKind2["TemplateParameterDeclaration"] = 46] = "TemplateParameterDeclaration";
138
- SyntaxKind2[SyntaxKind2["EmptyStatement"] = 47] = "EmptyStatement";
139
- SyntaxKind2[SyntaxKind2["InvalidStatement"] = 48] = "InvalidStatement";
140
- SyntaxKind2[SyntaxKind2["LineComment"] = 49] = "LineComment";
141
- SyntaxKind2[SyntaxKind2["BlockComment"] = 50] = "BlockComment";
142
- SyntaxKind2[SyntaxKind2["Doc"] = 51] = "Doc";
143
- SyntaxKind2[SyntaxKind2["DocText"] = 52] = "DocText";
144
- SyntaxKind2[SyntaxKind2["DocParamTag"] = 53] = "DocParamTag";
145
- SyntaxKind2[SyntaxKind2["DocPropTag"] = 54] = "DocPropTag";
146
- SyntaxKind2[SyntaxKind2["DocReturnsTag"] = 55] = "DocReturnsTag";
147
- SyntaxKind2[SyntaxKind2["DocErrorsTag"] = 56] = "DocErrorsTag";
148
- SyntaxKind2[SyntaxKind2["DocTemplateTag"] = 57] = "DocTemplateTag";
149
- SyntaxKind2[SyntaxKind2["DocUnknownTag"] = 58] = "DocUnknownTag";
150
- SyntaxKind2[SyntaxKind2["Return"] = 59] = "Return";
151
- SyntaxKind2[SyntaxKind2["JsNamespaceDeclaration"] = 60] = "JsNamespaceDeclaration";
152
- SyntaxKind2[SyntaxKind2["TemplateArgument"] = 61] = "TemplateArgument";
153
- SyntaxKind2[SyntaxKind2["TypeOfExpression"] = 62] = "TypeOfExpression";
154
- SyntaxKind2[SyntaxKind2["ObjectLiteral"] = 63] = "ObjectLiteral";
155
- SyntaxKind2[SyntaxKind2["ObjectLiteralProperty"] = 64] = "ObjectLiteralProperty";
156
- SyntaxKind2[SyntaxKind2["ObjectLiteralSpreadProperty"] = 65] = "ObjectLiteralSpreadProperty";
157
- SyntaxKind2[SyntaxKind2["ArrayLiteral"] = 66] = "ArrayLiteral";
158
- SyntaxKind2[SyntaxKind2["ConstStatement"] = 67] = "ConstStatement";
159
- SyntaxKind2[SyntaxKind2["CallExpression"] = 68] = "CallExpression";
160
- SyntaxKind2[SyntaxKind2["ScalarConstructor"] = 69] = "ScalarConstructor";
161
- })(SyntaxKind || (SyntaxKind = {}));
162
- var IdentifierKind;
163
- (function(IdentifierKind2) {
164
- IdentifierKind2[IdentifierKind2["TypeReference"] = 0] = "TypeReference";
165
- IdentifierKind2[IdentifierKind2["TemplateArgument"] = 1] = "TemplateArgument";
166
- IdentifierKind2[IdentifierKind2["Decorator"] = 2] = "Decorator";
167
- IdentifierKind2[IdentifierKind2["Function"] = 3] = "Function";
168
- IdentifierKind2[IdentifierKind2["Using"] = 4] = "Using";
169
- IdentifierKind2[IdentifierKind2["Declaration"] = 5] = "Declaration";
170
- IdentifierKind2[IdentifierKind2["ModelExpressionProperty"] = 6] = "ModelExpressionProperty";
171
- IdentifierKind2[IdentifierKind2["ModelStatementProperty"] = 7] = "ModelStatementProperty";
172
- IdentifierKind2[IdentifierKind2["ObjectLiteralProperty"] = 8] = "ObjectLiteralProperty";
173
- IdentifierKind2[IdentifierKind2["Other"] = 9] = "Other";
174
- })(IdentifierKind || (IdentifierKind = {}));
175
- var NoTarget = /* @__PURE__ */ Symbol.for("NoTarget");
176
- var ListenerFlow;
177
- (function(ListenerFlow2) {
178
- ListenerFlow2[ListenerFlow2["NoRecursion"] = 1] = "NoRecursion";
179
- })(ListenerFlow || (ListenerFlow = {}));
180
-
181
- // ../compiler/dist/src/core/diagnostics.js
182
- function getNodeForTarget(target) {
183
- if (!("kind" in target) && !("entityKind" in target)) {
184
- if (!("declarations" in target)) {
185
- return target.node;
24
+ // ../compiler/dist/src/core/diagnostic-creator.js
25
+ function createDiagnosticCreator(diagnostics2, libraryName) {
26
+ const errorMessage = libraryName ? `It must match one of the code defined in the library '${libraryName}'` : "It must match one of the code defined in the compiler.";
27
+ function createDiagnostic2(diagnostic) {
28
+ const diagnosticDef = diagnostics2[diagnostic.code];
29
+ if (!diagnosticDef) {
30
+ const codeStr = Object.keys(diagnostics2).map((x) => ` - ${x}`).join("\n");
31
+ const code = String(diagnostic.code);
32
+ throw new Error(`Unexpected diagnostic code '${code}'. ${errorMessage}. Defined codes:
33
+ ${codeStr}`);
186
34
  }
187
- if (target.flags & 8192) {
188
- target = target.symbolSource;
35
+ const message = diagnosticDef.messages[diagnostic.messageId ?? "default"];
36
+ if (!message) {
37
+ const codeStr = Object.keys(diagnosticDef.messages).map((x) => ` - ${x}`).join("\n");
38
+ const messageId = String(diagnostic.messageId);
39
+ const code = String(diagnostic.code);
40
+ throw new Error(`Unexpected message id '${messageId}'. ${errorMessage} for code '${code}'. Defined codes:
41
+ ${codeStr}`);
189
42
  }
190
- return target.declarations[0];
191
- } else if ("kind" in target && typeof target.kind === "number") {
192
- return target;
193
- } else {
194
- return target.node;
195
- }
196
- }
197
- function getSourceLocation(target, options = {}) {
198
- if (target === NoTarget || target === void 0) {
199
- return void 0;
200
- }
201
- if ("file" in target) {
202
- return target;
203
- }
204
- const node = getNodeForTarget(target);
205
- return node ? getSourceLocationOfNode(node, options) : createSyntheticSourceLocation();
206
- }
207
- function createSyntheticSourceLocation(loc = "<unknown location>") {
208
- return {
209
- file: createSourceFile("", loc),
210
- pos: 0,
211
- end: 0,
212
- isSynthetic: true
213
- };
214
- }
215
- function getSourceLocationOfNode(node, options) {
216
- let root = node;
217
- while (root.parent !== void 0) {
218
- root = root.parent;
219
- }
220
- if (root.kind !== SyntaxKind.TypeSpecScript && root.kind !== SyntaxKind.JsSourceFile) {
221
- return createSyntheticSourceLocation(node.flags & 8 ? void 0 : "<unknown location - cannot obtain source location of unbound node - file bug at https://github.com/microsoft/typespec>");
43
+ const messageStr = typeof message === "string" ? message : message(diagnostic.format);
44
+ const result = {
45
+ code: libraryName ? `${libraryName}/${String(diagnostic.code)}` : diagnostic.code.toString(),
46
+ severity: diagnosticDef.severity,
47
+ message: messageStr,
48
+ target: diagnostic.target
49
+ };
50
+ if (diagnosticDef.url) {
51
+ mutate(result).url = diagnosticDef.url;
52
+ }
53
+ if (diagnostic.codefixes) {
54
+ mutate(result).codefixes = diagnostic.codefixes;
55
+ }
56
+ return result;
222
57
  }
223
- if (options.locateId && "id" in node && node.id !== void 0) {
224
- node = node.id;
58
+ function reportDiagnostic2(program, diagnostic) {
59
+ const diag = createDiagnostic2(diagnostic);
60
+ program.reportDiagnostic(diag);
225
61
  }
226
62
  return {
227
- file: root.file,
228
- pos: node.pos,
229
- end: node.end
63
+ diagnostics: diagnostics2,
64
+ createDiagnostic: createDiagnostic2,
65
+ reportDiagnostic: reportDiagnostic2
230
66
  };
231
67
  }
232
- function compilerAssert(condition, message, target) {
233
- if (condition) {
234
- return;
235
- }
236
- if (target) {
237
- let location;
238
- try {
239
- location = getSourceLocation(target);
240
- } catch (err) {
241
- }
242
- if (location) {
243
- const pos = location.file.getLineAndCharacterOfPosition(location.pos);
244
- const file = location.file.path;
245
- const line2 = pos.line + 1;
246
- const col = pos.character + 1;
247
- message += `
248
- Occurred while compiling code in ${file} near line ${line2}, column ${col}`;
249
- }
250
- }
251
- throw new Error(message);
252
- }
253
- function defineCodeFix(fix) {
254
- return fix;
255
- }
256
68
 
257
- // ../compiler/dist/src/utils/misc.js
258
- function isArray(arg) {
259
- return Array.isArray(arg);
260
- }
261
- function mutate(value) {
262
- return value;
263
- }
264
-
265
- // ../compiler/dist/src/core/nonascii.js
266
- var nonAsciiIdentifierMap = [
267
- 160,
268
- 887,
269
- 890,
270
- 895,
271
- 900,
272
- 906,
273
- 908,
274
- 908,
275
- 910,
276
- 929,
277
- 931,
278
- 1327,
279
- 1329,
280
- 1366,
281
- 1369,
282
- 1418,
283
- 1421,
284
- 1423,
285
- 1425,
286
- 1479,
287
- 1488,
288
- 1514,
289
- 1519,
290
- 1524,
291
- 1536,
292
- 1805,
293
- 1807,
294
- 1866,
295
- 1869,
296
- 1969,
297
- 1984,
298
- 2042,
299
- 2045,
300
- 2093,
301
- 2096,
302
- 2110,
303
- 2112,
304
- 2139,
305
- 2142,
306
- 2142,
307
- 2144,
308
- 2154,
309
- 2160,
310
- 2190,
311
- 2192,
312
- 2193,
313
- 2200,
314
- 2435,
315
- 2437,
316
- 2444,
317
- 2447,
318
- 2448,
319
- 2451,
320
- 2472,
321
- 2474,
322
- 2480,
323
- 2482,
324
- 2482,
325
- 2486,
326
- 2489,
327
- 2492,
328
- 2500,
329
- 2503,
330
- 2504,
331
- 2507,
332
- 2510,
333
- 2519,
334
- 2519,
335
- 2524,
336
- 2525,
337
- 2527,
338
- 2531,
339
- 2534,
340
- 2558,
341
- 2561,
342
- 2563,
343
- 2565,
344
- 2570,
345
- 2575,
346
- 2576,
347
- 2579,
348
- 2600,
349
- 2602,
350
- 2608,
351
- 2610,
352
- 2611,
353
- 2613,
354
- 2614,
355
- 2616,
356
- 2617,
357
- 2620,
358
- 2620,
359
- 2622,
360
- 2626,
361
- 2631,
362
- 2632,
363
- 2635,
364
- 2637,
365
- 2641,
366
- 2641,
367
- 2649,
368
- 2652,
369
- 2654,
370
- 2654,
371
- 2662,
372
- 2678,
373
- 2689,
374
- 2691,
375
- 2693,
376
- 2701,
377
- 2703,
378
- 2705,
379
- 2707,
380
- 2728,
381
- 2730,
382
- 2736,
383
- 2738,
384
- 2739,
385
- 2741,
386
- 2745,
387
- 2748,
388
- 2757,
389
- 2759,
390
- 2761,
391
- 2763,
392
- 2765,
393
- 2768,
394
- 2768,
395
- 2784,
396
- 2787,
397
- 2790,
398
- 2801,
399
- 2809,
400
- 2815,
401
- 2817,
402
- 2819,
403
- 2821,
404
- 2828,
405
- 2831,
406
- 2832,
407
- 2835,
408
- 2856,
409
- 2858,
410
- 2864,
411
- 2866,
412
- 2867,
413
- 2869,
414
- 2873,
415
- 2876,
416
- 2884,
417
- 2887,
418
- 2888,
419
- 2891,
420
- 2893,
421
- 2901,
422
- 2903,
423
- 2908,
424
- 2909,
425
- 2911,
426
- 2915,
427
- 2918,
428
- 2935,
429
- 2946,
430
- 2947,
431
- 2949,
432
- 2954,
433
- 2958,
434
- 2960,
435
- 2962,
436
- 2965,
437
- 2969,
438
- 2970,
439
- 2972,
440
- 2972,
441
- 2974,
442
- 2975,
443
- 2979,
444
- 2980,
445
- 2984,
446
- 2986,
447
- 2990,
448
- 3001,
449
- 3006,
450
- 3010,
451
- 3014,
452
- 3016,
453
- 3018,
454
- 3021,
455
- 3024,
456
- 3024,
457
- 3031,
458
- 3031,
459
- 3046,
460
- 3066,
461
- 3072,
462
- 3084,
463
- 3086,
464
- 3088,
465
- 3090,
466
- 3112,
467
- 3114,
468
- 3129,
469
- 3132,
470
- 3140,
471
- 3142,
472
- 3144,
473
- 3146,
474
- 3149,
475
- 3157,
476
- 3158,
477
- 3160,
478
- 3162,
479
- 3165,
480
- 3165,
481
- 3168,
482
- 3171,
483
- 3174,
484
- 3183,
485
- 3191,
486
- 3212,
487
- 3214,
488
- 3216,
489
- 3218,
490
- 3240,
491
- 3242,
492
- 3251,
493
- 3253,
494
- 3257,
495
- 3260,
496
- 3268,
497
- 3270,
498
- 3272,
499
- 3274,
500
- 3277,
501
- 3285,
502
- 3286,
503
- 3293,
504
- 3294,
505
- 3296,
506
- 3299,
507
- 3302,
508
- 3311,
509
- 3313,
510
- 3315,
511
- 3328,
512
- 3340,
513
- 3342,
514
- 3344,
515
- 3346,
516
- 3396,
517
- 3398,
518
- 3400,
519
- 3402,
520
- 3407,
521
- 3412,
522
- 3427,
523
- 3430,
524
- 3455,
525
- 3457,
526
- 3459,
527
- 3461,
528
- 3478,
529
- 3482,
530
- 3505,
531
- 3507,
532
- 3515,
533
- 3517,
534
- 3517,
535
- 3520,
536
- 3526,
537
- 3530,
538
- 3530,
539
- 3535,
540
- 3540,
541
- 3542,
542
- 3542,
543
- 3544,
544
- 3551,
545
- 3558,
546
- 3567,
547
- 3570,
548
- 3572,
549
- 3585,
550
- 3642,
551
- 3647,
552
- 3675,
553
- 3713,
554
- 3714,
555
- 3716,
556
- 3716,
557
- 3718,
558
- 3722,
559
- 3724,
560
- 3747,
561
- 3749,
562
- 3749,
563
- 3751,
564
- 3773,
565
- 3776,
566
- 3780,
567
- 3782,
568
- 3782,
569
- 3784,
570
- 3790,
571
- 3792,
572
- 3801,
573
- 3804,
574
- 3807,
575
- 3840,
576
- 3911,
577
- 3913,
578
- 3948,
579
- 3953,
580
- 3991,
581
- 3993,
582
- 4028,
583
- 4030,
584
- 4044,
585
- 4046,
586
- 4058,
587
- 4096,
588
- 4293,
589
- 4295,
590
- 4295,
591
- 4301,
592
- 4301,
593
- 4304,
594
- 4680,
595
- 4682,
596
- 4685,
597
- 4688,
598
- 4694,
599
- 4696,
600
- 4696,
601
- 4698,
602
- 4701,
603
- 4704,
604
- 4744,
605
- 4746,
606
- 4749,
607
- 4752,
608
- 4784,
609
- 4786,
610
- 4789,
611
- 4792,
612
- 4798,
613
- 4800,
614
- 4800,
615
- 4802,
616
- 4805,
617
- 4808,
618
- 4822,
619
- 4824,
620
- 4880,
621
- 4882,
622
- 4885,
623
- 4888,
624
- 4954,
625
- 4957,
626
- 4988,
627
- 4992,
628
- 5017,
629
- 5024,
630
- 5109,
631
- 5112,
632
- 5117,
633
- 5120,
634
- 5788,
635
- 5792,
636
- 5880,
637
- 5888,
638
- 5909,
639
- 5919,
640
- 5942,
641
- 5952,
642
- 5971,
643
- 5984,
644
- 5996,
645
- 5998,
646
- 6e3,
647
- 6002,
648
- 6003,
649
- 6016,
650
- 6109,
651
- 6112,
652
- 6121,
653
- 6128,
654
- 6137,
655
- 6144,
656
- 6169,
657
- 6176,
658
- 6264,
659
- 6272,
660
- 6314,
661
- 6320,
662
- 6389,
663
- 6400,
664
- 6430,
665
- 6432,
666
- 6443,
667
- 6448,
668
- 6459,
669
- 6464,
670
- 6464,
671
- 6468,
672
- 6509,
673
- 6512,
674
- 6516,
675
- 6528,
676
- 6571,
677
- 6576,
678
- 6601,
679
- 6608,
680
- 6618,
681
- 6622,
682
- 6683,
683
- 6686,
684
- 6750,
685
- 6752,
686
- 6780,
687
- 6783,
688
- 6793,
689
- 6800,
690
- 6809,
691
- 6816,
692
- 6829,
693
- 6832,
694
- 6862,
695
- 6912,
696
- 6988,
697
- 6992,
698
- 7038,
699
- 7040,
700
- 7155,
701
- 7164,
702
- 7223,
703
- 7227,
704
- 7241,
705
- 7245,
706
- 7304,
707
- 7312,
708
- 7354,
709
- 7357,
710
- 7367,
711
- 7376,
712
- 7418,
713
- 7424,
714
- 7957,
715
- 7960,
716
- 7965,
717
- 7968,
718
- 8005,
719
- 8008,
720
- 8013,
721
- 8016,
722
- 8023,
723
- 8025,
724
- 8025,
725
- 8027,
726
- 8027,
727
- 8029,
728
- 8029,
729
- 8031,
730
- 8061,
731
- 8064,
732
- 8116,
733
- 8118,
734
- 8132,
735
- 8134,
736
- 8147,
737
- 8150,
738
- 8155,
739
- 8157,
740
- 8175,
741
- 8178,
742
- 8180,
743
- 8182,
744
- 8190,
745
- 8192,
746
- 8205,
747
- 8208,
748
- 8231,
749
- 8234,
750
- 8292,
751
- 8294,
752
- 8305,
753
- 8308,
754
- 8334,
755
- 8336,
756
- 8348,
757
- 8352,
758
- 8384,
759
- 8400,
760
- 8432,
761
- 8448,
762
- 8587,
763
- 8592,
764
- 9254,
765
- 9280,
766
- 9290,
767
- 9312,
768
- 11123,
769
- 11126,
770
- 11157,
771
- 11159,
772
- 11507,
773
- 11513,
774
- 11557,
775
- 11559,
776
- 11559,
777
- 11565,
778
- 11565,
779
- 11568,
780
- 11623,
781
- 11631,
782
- 11632,
783
- 11647,
784
- 11670,
785
- 11680,
786
- 11686,
787
- 11688,
788
- 11694,
789
- 11696,
790
- 11702,
791
- 11704,
792
- 11710,
793
- 11712,
794
- 11718,
795
- 11720,
796
- 11726,
797
- 11728,
798
- 11734,
799
- 11736,
800
- 11742,
801
- 11744,
802
- 11869,
803
- 11904,
804
- 11929,
805
- 11931,
806
- 12019,
807
- 12032,
808
- 12245,
809
- 12272,
810
- 12283,
811
- 12288,
812
- 12351,
813
- 12353,
814
- 12438,
815
- 12441,
816
- 12543,
817
- 12549,
818
- 12591,
819
- 12593,
820
- 12686,
821
- 12688,
822
- 12771,
823
- 12784,
824
- 12830,
825
- 12832,
826
- 42124,
827
- 42128,
828
- 42182,
829
- 42192,
830
- 42539,
831
- 42560,
832
- 42743,
833
- 42752,
834
- 42954,
835
- 42960,
836
- 42961,
837
- 42963,
838
- 42963,
839
- 42965,
840
- 42969,
841
- 42994,
842
- 43052,
843
- 43056,
844
- 43065,
845
- 43072,
846
- 43127,
847
- 43136,
848
- 43205,
849
- 43214,
850
- 43225,
851
- 43232,
852
- 43347,
853
- 43359,
854
- 43388,
855
- 43392,
856
- 43469,
857
- 43471,
858
- 43481,
859
- 43486,
860
- 43518,
861
- 43520,
862
- 43574,
863
- 43584,
864
- 43597,
865
- 43600,
866
- 43609,
867
- 43612,
868
- 43714,
869
- 43739,
870
- 43766,
871
- 43777,
872
- 43782,
873
- 43785,
874
- 43790,
875
- 43793,
876
- 43798,
877
- 43808,
878
- 43814,
879
- 43816,
880
- 43822,
881
- 43824,
882
- 43883,
883
- 43888,
884
- 44013,
885
- 44016,
886
- 44025,
887
- 44032,
888
- 55203,
889
- 55216,
890
- 55238,
891
- 55243,
892
- 55291,
893
- 63744,
894
- 64109,
895
- 64112,
896
- 64217,
897
- 64256,
898
- 64262,
899
- 64275,
900
- 64279,
901
- 64285,
902
- 64310,
903
- 64312,
904
- 64316,
905
- 64318,
906
- 64318,
907
- 64320,
908
- 64321,
909
- 64323,
910
- 64324,
911
- 64326,
912
- 64450,
913
- 64467,
914
- 64911,
915
- 64914,
916
- 64967,
917
- 64975,
918
- 64975,
919
- 65008,
920
- 65049,
921
- 65056,
922
- 65106,
923
- 65108,
924
- 65126,
925
- 65128,
926
- 65131,
927
- 65136,
928
- 65140,
929
- 65142,
930
- 65276,
931
- 65279,
932
- 65279,
933
- 65281,
934
- 65470,
935
- 65474,
936
- 65479,
937
- 65482,
938
- 65487,
939
- 65490,
940
- 65495,
941
- 65498,
942
- 65500,
943
- 65504,
944
- 65510,
945
- 65512,
946
- 65518,
947
- 65529,
948
- 65532,
949
- 65536,
950
- 65547,
951
- 65549,
952
- 65574,
953
- 65576,
954
- 65594,
955
- 65596,
956
- 65597,
957
- 65599,
958
- 65613,
959
- 65616,
960
- 65629,
961
- 65664,
962
- 65786,
963
- 65792,
964
- 65794,
965
- 65799,
966
- 65843,
967
- 65847,
968
- 65934,
969
- 65936,
970
- 65948,
971
- 65952,
972
- 65952,
973
- 66e3,
974
- 66045,
975
- 66176,
976
- 66204,
977
- 66208,
978
- 66256,
979
- 66272,
980
- 66299,
981
- 66304,
982
- 66339,
983
- 66349,
984
- 66378,
985
- 66384,
986
- 66426,
987
- 66432,
988
- 66461,
989
- 66463,
990
- 66499,
991
- 66504,
992
- 66517,
993
- 66560,
994
- 66717,
995
- 66720,
996
- 66729,
997
- 66736,
998
- 66771,
999
- 66776,
1000
- 66811,
1001
- 66816,
1002
- 66855,
1003
- 66864,
1004
- 66915,
1005
- 66927,
1006
- 66938,
1007
- 66940,
1008
- 66954,
1009
- 66956,
1010
- 66962,
1011
- 66964,
1012
- 66965,
1013
- 66967,
1014
- 66977,
1015
- 66979,
1016
- 66993,
1017
- 66995,
1018
- 67001,
1019
- 67003,
1020
- 67004,
1021
- 67072,
1022
- 67382,
1023
- 67392,
1024
- 67413,
1025
- 67424,
1026
- 67431,
1027
- 67456,
1028
- 67461,
1029
- 67463,
1030
- 67504,
1031
- 67506,
1032
- 67514,
1033
- 67584,
1034
- 67589,
1035
- 67592,
1036
- 67592,
1037
- 67594,
1038
- 67637,
1039
- 67639,
1040
- 67640,
1041
- 67644,
1042
- 67644,
1043
- 67647,
1044
- 67669,
1045
- 67671,
1046
- 67742,
1047
- 67751,
1048
- 67759,
1049
- 67808,
1050
- 67826,
1051
- 67828,
1052
- 67829,
1053
- 67835,
1054
- 67867,
1055
- 67871,
1056
- 67897,
1057
- 67903,
1058
- 67903,
1059
- 67968,
1060
- 68023,
1061
- 68028,
1062
- 68047,
1063
- 68050,
1064
- 68099,
1065
- 68101,
1066
- 68102,
1067
- 68108,
1068
- 68115,
1069
- 68117,
1070
- 68119,
1071
- 68121,
1072
- 68149,
1073
- 68152,
1074
- 68154,
1075
- 68159,
1076
- 68168,
1077
- 68176,
1078
- 68184,
1079
- 68192,
1080
- 68255,
1081
- 68288,
1082
- 68326,
1083
- 68331,
1084
- 68342,
1085
- 68352,
1086
- 68405,
1087
- 68409,
1088
- 68437,
1089
- 68440,
1090
- 68466,
1091
- 68472,
1092
- 68497,
1093
- 68505,
1094
- 68508,
1095
- 68521,
1096
- 68527,
1097
- 68608,
1098
- 68680,
1099
- 68736,
1100
- 68786,
1101
- 68800,
1102
- 68850,
1103
- 68858,
1104
- 68903,
1105
- 68912,
1106
- 68921,
1107
- 69216,
1108
- 69246,
1109
- 69248,
1110
- 69289,
1111
- 69291,
1112
- 69293,
1113
- 69296,
1114
- 69297,
1115
- 69373,
1116
- 69415,
1117
- 69424,
1118
- 69465,
1119
- 69488,
1120
- 69513,
1121
- 69552,
1122
- 69579,
1123
- 69600,
1124
- 69622,
1125
- 69632,
1126
- 69709,
1127
- 69714,
1128
- 69749,
1129
- 69759,
1130
- 69826,
1131
- 69837,
1132
- 69837,
1133
- 69840,
1134
- 69864,
1135
- 69872,
1136
- 69881,
1137
- 69888,
1138
- 69940,
1139
- 69942,
1140
- 69959,
1141
- 69968,
1142
- 70006,
1143
- 70016,
1144
- 70111,
1145
- 70113,
1146
- 70132,
1147
- 70144,
1148
- 70161,
1149
- 70163,
1150
- 70209,
1151
- 70272,
1152
- 70278,
1153
- 70280,
1154
- 70280,
1155
- 70282,
1156
- 70285,
1157
- 70287,
1158
- 70301,
1159
- 70303,
1160
- 70313,
1161
- 70320,
1162
- 70378,
1163
- 70384,
1164
- 70393,
1165
- 70400,
1166
- 70403,
1167
- 70405,
1168
- 70412,
1169
- 70415,
1170
- 70416,
1171
- 70419,
1172
- 70440,
1173
- 70442,
1174
- 70448,
1175
- 70450,
1176
- 70451,
1177
- 70453,
1178
- 70457,
1179
- 70459,
1180
- 70468,
1181
- 70471,
1182
- 70472,
1183
- 70475,
1184
- 70477,
1185
- 70480,
1186
- 70480,
1187
- 70487,
1188
- 70487,
1189
- 70493,
1190
- 70499,
1191
- 70502,
1192
- 70508,
1193
- 70512,
1194
- 70516,
1195
- 70656,
1196
- 70747,
1197
- 70749,
1198
- 70753,
1199
- 70784,
1200
- 70855,
1201
- 70864,
1202
- 70873,
1203
- 71040,
1204
- 71093,
1205
- 71096,
1206
- 71133,
1207
- 71168,
1208
- 71236,
1209
- 71248,
1210
- 71257,
1211
- 71264,
1212
- 71276,
1213
- 71296,
1214
- 71353,
1215
- 71360,
1216
- 71369,
1217
- 71424,
1218
- 71450,
1219
- 71453,
1220
- 71467,
1221
- 71472,
1222
- 71494,
1223
- 71680,
1224
- 71739,
1225
- 71840,
1226
- 71922,
1227
- 71935,
1228
- 71942,
1229
- 71945,
1230
- 71945,
1231
- 71948,
1232
- 71955,
1233
- 71957,
1234
- 71958,
1235
- 71960,
1236
- 71989,
1237
- 71991,
1238
- 71992,
1239
- 71995,
1240
- 72006,
1241
- 72016,
1242
- 72025,
1243
- 72096,
1244
- 72103,
1245
- 72106,
1246
- 72151,
1247
- 72154,
1248
- 72164,
1249
- 72192,
1250
- 72263,
1251
- 72272,
1252
- 72354,
1253
- 72368,
1254
- 72440,
1255
- 72448,
1256
- 72457,
1257
- 72704,
1258
- 72712,
1259
- 72714,
1260
- 72758,
1261
- 72760,
1262
- 72773,
1263
- 72784,
1264
- 72812,
1265
- 72816,
1266
- 72847,
1267
- 72850,
1268
- 72871,
1269
- 72873,
1270
- 72886,
1271
- 72960,
1272
- 72966,
1273
- 72968,
1274
- 72969,
1275
- 72971,
1276
- 73014,
1277
- 73018,
1278
- 73018,
1279
- 73020,
1280
- 73021,
1281
- 73023,
1282
- 73031,
1283
- 73040,
1284
- 73049,
1285
- 73056,
1286
- 73061,
1287
- 73063,
1288
- 73064,
1289
- 73066,
1290
- 73102,
1291
- 73104,
1292
- 73105,
1293
- 73107,
1294
- 73112,
1295
- 73120,
1296
- 73129,
1297
- 73440,
1298
- 73464,
1299
- 73472,
1300
- 73488,
1301
- 73490,
1302
- 73530,
1303
- 73534,
1304
- 73561,
1305
- 73648,
1306
- 73648,
1307
- 73664,
1308
- 73713,
1309
- 73727,
1310
- 74649,
1311
- 74752,
1312
- 74862,
1313
- 74864,
1314
- 74868,
1315
- 74880,
1316
- 75075,
1317
- 77712,
1318
- 77810,
1319
- 77824,
1320
- 78933,
1321
- 82944,
1322
- 83526,
1323
- 92160,
1324
- 92728,
1325
- 92736,
1326
- 92766,
1327
- 92768,
1328
- 92777,
1329
- 92782,
1330
- 92862,
1331
- 92864,
1332
- 92873,
1333
- 92880,
1334
- 92909,
1335
- 92912,
1336
- 92917,
1337
- 92928,
1338
- 92997,
1339
- 93008,
1340
- 93017,
1341
- 93019,
1342
- 93025,
1343
- 93027,
1344
- 93047,
1345
- 93053,
1346
- 93071,
1347
- 93760,
1348
- 93850,
1349
- 93952,
1350
- 94026,
1351
- 94031,
1352
- 94087,
1353
- 94095,
1354
- 94111,
1355
- 94176,
1356
- 94180,
1357
- 94192,
1358
- 94193,
1359
- 94208,
1360
- 100343,
1361
- 100352,
1362
- 101589,
1363
- 101632,
1364
- 101640,
1365
- 110576,
1366
- 110579,
1367
- 110581,
1368
- 110587,
1369
- 110589,
1370
- 110590,
1371
- 110592,
1372
- 110882,
1373
- 110898,
1374
- 110898,
1375
- 110928,
1376
- 110930,
1377
- 110933,
1378
- 110933,
1379
- 110948,
1380
- 110951,
1381
- 110960,
1382
- 111355,
1383
- 113664,
1384
- 113770,
1385
- 113776,
1386
- 113788,
1387
- 113792,
1388
- 113800,
1389
- 113808,
1390
- 113817,
1391
- 113820,
1392
- 113827,
1393
- 118528,
1394
- 118573,
1395
- 118576,
1396
- 118598,
1397
- 118608,
1398
- 118723,
1399
- 118784,
1400
- 119029,
1401
- 119040,
1402
- 119078,
1403
- 119081,
1404
- 119274,
1405
- 119296,
1406
- 119365,
1407
- 119488,
1408
- 119507,
1409
- 119520,
1410
- 119539,
1411
- 119552,
1412
- 119638,
1413
- 119648,
1414
- 119672,
1415
- 119808,
1416
- 119892,
1417
- 119894,
1418
- 119964,
1419
- 119966,
1420
- 119967,
1421
- 119970,
1422
- 119970,
1423
- 119973,
1424
- 119974,
1425
- 119977,
1426
- 119980,
1427
- 119982,
1428
- 119993,
1429
- 119995,
1430
- 119995,
1431
- 119997,
1432
- 120003,
1433
- 120005,
1434
- 120069,
1435
- 120071,
1436
- 120074,
1437
- 120077,
1438
- 120084,
1439
- 120086,
1440
- 120092,
1441
- 120094,
1442
- 120121,
1443
- 120123,
1444
- 120126,
1445
- 120128,
1446
- 120132,
1447
- 120134,
1448
- 120134,
1449
- 120138,
1450
- 120144,
1451
- 120146,
1452
- 120485,
1453
- 120488,
1454
- 120779,
1455
- 120782,
1456
- 121483,
1457
- 121499,
1458
- 121503,
1459
- 121505,
1460
- 121519,
1461
- 122624,
1462
- 122654,
1463
- 122661,
1464
- 122666,
1465
- 122880,
1466
- 122886,
1467
- 122888,
1468
- 122904,
1469
- 122907,
1470
- 122913,
1471
- 122915,
1472
- 122916,
1473
- 122918,
1474
- 122922,
1475
- 122928,
1476
- 122989,
1477
- 123023,
1478
- 123023,
1479
- 123136,
1480
- 123180,
1481
- 123184,
1482
- 123197,
1483
- 123200,
1484
- 123209,
1485
- 123214,
1486
- 123215,
1487
- 123536,
1488
- 123566,
1489
- 123584,
1490
- 123641,
1491
- 123647,
1492
- 123647,
1493
- 124112,
1494
- 124153,
1495
- 124896,
1496
- 124902,
1497
- 124904,
1498
- 124907,
1499
- 124909,
1500
- 124910,
1501
- 124912,
1502
- 124926,
1503
- 124928,
1504
- 125124,
1505
- 125127,
1506
- 125142,
1507
- 125184,
1508
- 125259,
1509
- 125264,
1510
- 125273,
1511
- 125278,
1512
- 125279,
1513
- 126065,
1514
- 126132,
1515
- 126209,
1516
- 126269,
1517
- 126464,
1518
- 126467,
1519
- 126469,
1520
- 126495,
1521
- 126497,
1522
- 126498,
1523
- 126500,
1524
- 126500,
1525
- 126503,
1526
- 126503,
1527
- 126505,
1528
- 126514,
1529
- 126516,
1530
- 126519,
1531
- 126521,
1532
- 126521,
1533
- 126523,
1534
- 126523,
1535
- 126530,
1536
- 126530,
1537
- 126535,
1538
- 126535,
1539
- 126537,
1540
- 126537,
1541
- 126539,
1542
- 126539,
1543
- 126541,
1544
- 126543,
1545
- 126545,
1546
- 126546,
1547
- 126548,
1548
- 126548,
1549
- 126551,
1550
- 126551,
1551
- 126553,
1552
- 126553,
1553
- 126555,
1554
- 126555,
1555
- 126557,
1556
- 126557,
1557
- 126559,
1558
- 126559,
1559
- 126561,
1560
- 126562,
1561
- 126564,
1562
- 126564,
1563
- 126567,
1564
- 126570,
1565
- 126572,
1566
- 126578,
1567
- 126580,
1568
- 126583,
1569
- 126585,
1570
- 126588,
1571
- 126590,
1572
- 126590,
1573
- 126592,
1574
- 126601,
1575
- 126603,
1576
- 126619,
1577
- 126625,
1578
- 126627,
1579
- 126629,
1580
- 126633,
1581
- 126635,
1582
- 126651,
1583
- 126704,
1584
- 126705,
1585
- 126976,
1586
- 127019,
1587
- 127024,
1588
- 127123,
1589
- 127136,
1590
- 127150,
1591
- 127153,
1592
- 127167,
1593
- 127169,
1594
- 127183,
1595
- 127185,
1596
- 127221,
1597
- 127232,
1598
- 127405,
1599
- 127462,
1600
- 127490,
1601
- 127504,
1602
- 127547,
1603
- 127552,
1604
- 127560,
1605
- 127568,
1606
- 127569,
1607
- 127584,
1608
- 127589,
1609
- 127744,
1610
- 128727,
1611
- 128732,
1612
- 128748,
1613
- 128752,
1614
- 128764,
1615
- 128768,
1616
- 128886,
1617
- 128891,
1618
- 128985,
1619
- 128992,
1620
- 129003,
1621
- 129008,
1622
- 129008,
1623
- 129024,
1624
- 129035,
1625
- 129040,
1626
- 129095,
1627
- 129104,
1628
- 129113,
1629
- 129120,
1630
- 129159,
1631
- 129168,
1632
- 129197,
1633
- 129200,
1634
- 129201,
1635
- 129280,
1636
- 129619,
1637
- 129632,
1638
- 129645,
1639
- 129648,
1640
- 129660,
1641
- 129664,
1642
- 129672,
1643
- 129680,
1644
- 129725,
1645
- 129727,
1646
- 129733,
1647
- 129742,
1648
- 129755,
1649
- 129760,
1650
- 129768,
1651
- 129776,
1652
- 129784,
1653
- 129792,
1654
- 129938,
1655
- 129940,
1656
- 129994,
1657
- 130032,
1658
- 130041,
1659
- 131072,
1660
- 173791,
1661
- 173824,
1662
- 177977,
1663
- 177984,
1664
- 178205,
1665
- 178208,
1666
- 183969,
1667
- 183984,
1668
- 191456,
1669
- 194560,
1670
- 195101,
1671
- 196608,
1672
- 201546,
1673
- 201552,
1674
- 205743,
1675
- 917505,
1676
- 917505,
1677
- 917536,
1678
- 917631,
1679
- 917760,
1680
- 917999
1681
- ];
1682
-
1683
- // ../compiler/dist/src/core/charcode.js
1684
- function utf16CodeUnits(codePoint) {
1685
- return codePoint >= 65536 ? 2 : 1;
1686
- }
1687
- function isLineBreak(ch) {
1688
- return ch === 10 || ch === 13;
1689
- }
1690
- function isAsciiWhiteSpaceSingleLine(ch) {
1691
- return ch === 32 || ch === 9 || ch === 11 || ch === 12;
1692
- }
1693
- function isNonAsciiWhiteSpaceSingleLine(ch) {
1694
- return ch === 133 || // not considered a line break
1695
- ch === 8206 || ch === 8207 || ch === 8232 || ch === 8233;
1696
- }
1697
- function isWhiteSpace(ch) {
1698
- return isWhiteSpaceSingleLine(ch) || isLineBreak(ch);
1699
- }
1700
- function isWhiteSpaceSingleLine(ch) {
1701
- return isAsciiWhiteSpaceSingleLine(ch) || ch > 127 && isNonAsciiWhiteSpaceSingleLine(ch);
1702
- }
1703
- function trim(str) {
1704
- let start = 0;
1705
- let end = str.length - 1;
1706
- if (!isWhiteSpace(str.charCodeAt(start)) && !isWhiteSpace(str.charCodeAt(end))) {
1707
- return str;
1708
- }
1709
- while (isWhiteSpace(str.charCodeAt(start))) {
1710
- start++;
1711
- }
1712
- while (isWhiteSpace(str.charCodeAt(end))) {
1713
- end--;
1714
- }
1715
- return str.substring(start, end + 1);
1716
- }
1717
- function isDigit(ch) {
1718
- return ch >= 48 && ch <= 57;
1719
- }
1720
- function isHexDigit(ch) {
1721
- return isDigit(ch) || ch >= 65 && ch <= 70 || ch >= 97 && ch <= 102;
1722
- }
1723
- function isBinaryDigit(ch) {
1724
- return ch === 48 || ch === 49;
1725
- }
1726
- function isLowercaseAsciiLetter(ch) {
1727
- return ch >= 97 && ch <= 122;
1728
- }
1729
- function isAsciiIdentifierStart(ch) {
1730
- return ch >= 65 && ch <= 90 || ch >= 97 && ch <= 122 || ch === 36 || ch === 95;
1731
- }
1732
- function isAsciiIdentifierContinue(ch) {
1733
- return ch >= 65 && ch <= 90 || ch >= 97 && ch <= 122 || ch >= 48 && ch <= 57 || ch === 36 || ch === 95;
1734
- }
1735
- function isIdentifierStart(codePoint) {
1736
- return isAsciiIdentifierStart(codePoint) || codePoint > 127 && isNonAsciiIdentifierCharacter(codePoint);
1737
- }
1738
- function isIdentifierContinue(codePoint) {
1739
- return isAsciiIdentifierContinue(codePoint) || codePoint > 127 && isNonAsciiIdentifierCharacter(codePoint);
1740
- }
1741
- function isNonAsciiIdentifierCharacter(codePoint) {
1742
- return lookupInNonAsciiMap(codePoint, nonAsciiIdentifierMap);
1743
- }
1744
- function lookupInNonAsciiMap(codePoint, map) {
1745
- let lo = 0;
1746
- let hi = map.length;
1747
- let mid;
1748
- while (lo + 1 < hi) {
1749
- mid = lo + (hi - lo) / 2;
1750
- mid -= mid % 2;
1751
- if (map[mid] <= codePoint && codePoint <= map[mid + 1]) {
1752
- return true;
1753
- }
1754
- if (codePoint < map[mid]) {
1755
- hi = mid;
1756
- } else {
1757
- lo = mid + 2;
1758
- }
1759
- }
1760
- return false;
1761
- }
1762
-
1763
- // ../compiler/dist/src/core/diagnostic-creator.js
1764
- function createDiagnosticCreator(diagnostics2, libraryName) {
1765
- const errorMessage = libraryName ? `It must match one of the code defined in the library '${libraryName}'` : "It must match one of the code defined in the compiler.";
1766
- function createDiagnostic2(diagnostic) {
1767
- const diagnosticDef = diagnostics2[diagnostic.code];
1768
- if (!diagnosticDef) {
1769
- const codeStr = Object.keys(diagnostics2).map((x) => ` - ${x}`).join("\n");
1770
- const code = String(diagnostic.code);
1771
- throw new Error(`Unexpected diagnostic code '${code}'. ${errorMessage}. Defined codes:
1772
- ${codeStr}`);
1773
- }
1774
- const message = diagnosticDef.messages[diagnostic.messageId ?? "default"];
1775
- if (!message) {
1776
- const codeStr = Object.keys(diagnosticDef.messages).map((x) => ` - ${x}`).join("\n");
1777
- const messageId = String(diagnostic.messageId);
1778
- const code = String(diagnostic.code);
1779
- throw new Error(`Unexpected message id '${messageId}'. ${errorMessage} for code '${code}'. Defined codes:
1780
- ${codeStr}`);
1781
- }
1782
- const messageStr = typeof message === "string" ? message : message(diagnostic.format);
1783
- const result = {
1784
- code: libraryName ? `${libraryName}/${String(diagnostic.code)}` : diagnostic.code.toString(),
1785
- severity: diagnosticDef.severity,
1786
- message: messageStr,
1787
- target: diagnostic.target
1788
- };
1789
- if (diagnosticDef.url) {
1790
- mutate(result).url = diagnosticDef.url;
1791
- }
1792
- if (diagnostic.codefixes) {
1793
- mutate(result).codefixes = diagnostic.codefixes;
1794
- }
1795
- return result;
1796
- }
1797
- function reportDiagnostic2(program, diagnostic) {
1798
- const diag = createDiagnostic2(diagnostic);
1799
- program.reportDiagnostic(diag);
1800
- }
1801
- return {
1802
- diagnostics: diagnostics2,
1803
- createDiagnostic: createDiagnostic2,
1804
- reportDiagnostic: reportDiagnostic2
1805
- };
1806
- }
1807
-
1808
- // ../compiler/dist/src/core/param-message.js
1809
- function paramMessage(strings, ...keys) {
1810
- const template = (dict) => {
1811
- const result = [strings[0]];
1812
- keys.forEach((key, i) => {
1813
- const value = dict[key];
1814
- if (value !== void 0) {
1815
- result.push(value);
1816
- }
1817
- result.push(strings[i + 1]);
1818
- });
1819
- return result.join("");
1820
- };
1821
- template.keys = keys;
1822
- return template;
69
+ // ../compiler/dist/src/core/param-message.js
70
+ function paramMessage(strings, ...keys) {
71
+ const template = (dict) => {
72
+ const result = [strings[0]];
73
+ keys.forEach((key, i) => {
74
+ const value = dict[key];
75
+ if (value !== void 0) {
76
+ result.push(value);
77
+ }
78
+ result.push(strings[i + 1]);
79
+ });
80
+ return result.join("");
81
+ };
82
+ template.keys = keys;
83
+ return template;
1823
84
  }
1824
85
 
1825
86
  // ../compiler/dist/src/core/messages.js
@@ -2831,29 +1092,1768 @@ var diagnostics = {
2831
1092
  messages: {
2832
1093
  default: "No compatible version of Visual Studio found."
2833
1094
  }
2834
- },
2835
- "vs-extension-windows-only": {
2836
- severity: "error",
2837
- messages: {
2838
- default: "Visual Studio extension is not supported on non-Windows."
1095
+ },
1096
+ "vs-extension-windows-only": {
1097
+ severity: "error",
1098
+ messages: {
1099
+ default: "Visual Studio extension is not supported on non-Windows."
1100
+ }
1101
+ },
1102
+ "vscode-in-path": {
1103
+ severity: "error",
1104
+ messages: {
1105
+ default: "Couldn't find VS Code 'code' command in PATH. Make sure you have the VS Code executable added to the system PATH.",
1106
+ osx: "Couldn't find VS Code 'code' command in PATH. Make sure you have the VS Code executable added to the system PATH.\nSee instruction for Mac OS here https://code.visualstudio.com/docs/setup/mac"
1107
+ }
1108
+ },
1109
+ "invalid-option-flag": {
1110
+ severity: "error",
1111
+ messages: {
1112
+ default: paramMessage`The --option parameter value "${"value"}" must be in the format: <emitterName>.some-options=value`
1113
+ }
1114
+ }
1115
+ // #endregion CLI
1116
+ };
1117
+ var { createDiagnostic, reportDiagnostic } = createDiagnosticCreator(diagnostics);
1118
+
1119
+ // ../compiler/dist/src/core/source-file.js
1120
+ function createSourceFile(text, path) {
1121
+ let lineStarts = void 0;
1122
+ return {
1123
+ text,
1124
+ path,
1125
+ getLineStarts,
1126
+ getLineAndCharacterOfPosition
1127
+ };
1128
+ function getLineStarts() {
1129
+ return lineStarts = lineStarts ?? scanLineStarts(text);
1130
+ }
1131
+ function getLineAndCharacterOfPosition(position) {
1132
+ const starts = getLineStarts();
1133
+ let line2 = binarySearch(starts, position);
1134
+ if (line2 < 0) {
1135
+ line2 = ~line2 - 1;
1136
+ }
1137
+ return {
1138
+ line: line2,
1139
+ character: position - starts[line2]
1140
+ };
1141
+ }
1142
+ }
1143
+ function scanLineStarts(text) {
1144
+ const starts = [];
1145
+ let start = 0;
1146
+ let pos = 0;
1147
+ while (pos < text.length) {
1148
+ const ch = text.charCodeAt(pos);
1149
+ pos++;
1150
+ switch (ch) {
1151
+ case 13:
1152
+ if (text.charCodeAt(pos) === 10) {
1153
+ pos++;
1154
+ }
1155
+ // fallthrough
1156
+ case 10:
1157
+ starts.push(start);
1158
+ start = pos;
1159
+ break;
1160
+ }
1161
+ }
1162
+ starts.push(start);
1163
+ return starts;
1164
+ }
1165
+ function binarySearch(array, value) {
1166
+ let low = 0;
1167
+ let high = array.length - 1;
1168
+ while (low <= high) {
1169
+ const middle = low + (high - low >> 1);
1170
+ const v = array[middle];
1171
+ if (v < value) {
1172
+ low = middle + 1;
1173
+ } else if (v > value) {
1174
+ high = middle - 1;
1175
+ } else {
1176
+ return middle;
1177
+ }
1178
+ }
1179
+ return ~low;
1180
+ }
1181
+
1182
+ // ../compiler/dist/src/core/types.js
1183
+ var ResolutionResultFlags;
1184
+ (function(ResolutionResultFlags2) {
1185
+ ResolutionResultFlags2[ResolutionResultFlags2["None"] = 0] = "None";
1186
+ ResolutionResultFlags2[ResolutionResultFlags2["Resolved"] = 2] = "Resolved";
1187
+ ResolutionResultFlags2[ResolutionResultFlags2["Unknown"] = 4] = "Unknown";
1188
+ ResolutionResultFlags2[ResolutionResultFlags2["Ambiguous"] = 8] = "Ambiguous";
1189
+ ResolutionResultFlags2[ResolutionResultFlags2["NotFound"] = 16] = "NotFound";
1190
+ ResolutionResultFlags2[ResolutionResultFlags2["ResolutionFailed"] = 28] = "ResolutionFailed";
1191
+ })(ResolutionResultFlags || (ResolutionResultFlags = {}));
1192
+ var SyntaxKind;
1193
+ (function(SyntaxKind2) {
1194
+ SyntaxKind2[SyntaxKind2["TypeSpecScript"] = 0] = "TypeSpecScript";
1195
+ SyntaxKind2[SyntaxKind2["JsSourceFile"] = 1] = "JsSourceFile";
1196
+ SyntaxKind2[SyntaxKind2["ImportStatement"] = 2] = "ImportStatement";
1197
+ SyntaxKind2[SyntaxKind2["Identifier"] = 3] = "Identifier";
1198
+ SyntaxKind2[SyntaxKind2["AugmentDecoratorStatement"] = 4] = "AugmentDecoratorStatement";
1199
+ SyntaxKind2[SyntaxKind2["DecoratorExpression"] = 5] = "DecoratorExpression";
1200
+ SyntaxKind2[SyntaxKind2["DirectiveExpression"] = 6] = "DirectiveExpression";
1201
+ SyntaxKind2[SyntaxKind2["MemberExpression"] = 7] = "MemberExpression";
1202
+ SyntaxKind2[SyntaxKind2["NamespaceStatement"] = 8] = "NamespaceStatement";
1203
+ SyntaxKind2[SyntaxKind2["UsingStatement"] = 9] = "UsingStatement";
1204
+ SyntaxKind2[SyntaxKind2["OperationStatement"] = 10] = "OperationStatement";
1205
+ SyntaxKind2[SyntaxKind2["OperationSignatureDeclaration"] = 11] = "OperationSignatureDeclaration";
1206
+ SyntaxKind2[SyntaxKind2["OperationSignatureReference"] = 12] = "OperationSignatureReference";
1207
+ SyntaxKind2[SyntaxKind2["ModelStatement"] = 13] = "ModelStatement";
1208
+ SyntaxKind2[SyntaxKind2["ModelExpression"] = 14] = "ModelExpression";
1209
+ SyntaxKind2[SyntaxKind2["ModelProperty"] = 15] = "ModelProperty";
1210
+ SyntaxKind2[SyntaxKind2["ModelSpreadProperty"] = 16] = "ModelSpreadProperty";
1211
+ SyntaxKind2[SyntaxKind2["ScalarStatement"] = 17] = "ScalarStatement";
1212
+ SyntaxKind2[SyntaxKind2["InterfaceStatement"] = 18] = "InterfaceStatement";
1213
+ SyntaxKind2[SyntaxKind2["UnionStatement"] = 19] = "UnionStatement";
1214
+ SyntaxKind2[SyntaxKind2["UnionVariant"] = 20] = "UnionVariant";
1215
+ SyntaxKind2[SyntaxKind2["EnumStatement"] = 21] = "EnumStatement";
1216
+ SyntaxKind2[SyntaxKind2["EnumMember"] = 22] = "EnumMember";
1217
+ SyntaxKind2[SyntaxKind2["EnumSpreadMember"] = 23] = "EnumSpreadMember";
1218
+ SyntaxKind2[SyntaxKind2["AliasStatement"] = 24] = "AliasStatement";
1219
+ SyntaxKind2[SyntaxKind2["DecoratorDeclarationStatement"] = 25] = "DecoratorDeclarationStatement";
1220
+ SyntaxKind2[SyntaxKind2["FunctionDeclarationStatement"] = 26] = "FunctionDeclarationStatement";
1221
+ SyntaxKind2[SyntaxKind2["FunctionParameter"] = 27] = "FunctionParameter";
1222
+ SyntaxKind2[SyntaxKind2["UnionExpression"] = 28] = "UnionExpression";
1223
+ SyntaxKind2[SyntaxKind2["IntersectionExpression"] = 29] = "IntersectionExpression";
1224
+ SyntaxKind2[SyntaxKind2["TupleExpression"] = 30] = "TupleExpression";
1225
+ SyntaxKind2[SyntaxKind2["ArrayExpression"] = 31] = "ArrayExpression";
1226
+ SyntaxKind2[SyntaxKind2["StringLiteral"] = 32] = "StringLiteral";
1227
+ SyntaxKind2[SyntaxKind2["NumericLiteral"] = 33] = "NumericLiteral";
1228
+ SyntaxKind2[SyntaxKind2["BooleanLiteral"] = 34] = "BooleanLiteral";
1229
+ SyntaxKind2[SyntaxKind2["StringTemplateExpression"] = 35] = "StringTemplateExpression";
1230
+ SyntaxKind2[SyntaxKind2["StringTemplateHead"] = 36] = "StringTemplateHead";
1231
+ SyntaxKind2[SyntaxKind2["StringTemplateMiddle"] = 37] = "StringTemplateMiddle";
1232
+ SyntaxKind2[SyntaxKind2["StringTemplateTail"] = 38] = "StringTemplateTail";
1233
+ SyntaxKind2[SyntaxKind2["StringTemplateSpan"] = 39] = "StringTemplateSpan";
1234
+ SyntaxKind2[SyntaxKind2["ExternKeyword"] = 40] = "ExternKeyword";
1235
+ SyntaxKind2[SyntaxKind2["VoidKeyword"] = 41] = "VoidKeyword";
1236
+ SyntaxKind2[SyntaxKind2["NeverKeyword"] = 42] = "NeverKeyword";
1237
+ SyntaxKind2[SyntaxKind2["UnknownKeyword"] = 43] = "UnknownKeyword";
1238
+ SyntaxKind2[SyntaxKind2["ValueOfExpression"] = 44] = "ValueOfExpression";
1239
+ SyntaxKind2[SyntaxKind2["TypeReference"] = 45] = "TypeReference";
1240
+ SyntaxKind2[SyntaxKind2["TemplateParameterDeclaration"] = 46] = "TemplateParameterDeclaration";
1241
+ SyntaxKind2[SyntaxKind2["EmptyStatement"] = 47] = "EmptyStatement";
1242
+ SyntaxKind2[SyntaxKind2["InvalidStatement"] = 48] = "InvalidStatement";
1243
+ SyntaxKind2[SyntaxKind2["LineComment"] = 49] = "LineComment";
1244
+ SyntaxKind2[SyntaxKind2["BlockComment"] = 50] = "BlockComment";
1245
+ SyntaxKind2[SyntaxKind2["Doc"] = 51] = "Doc";
1246
+ SyntaxKind2[SyntaxKind2["DocText"] = 52] = "DocText";
1247
+ SyntaxKind2[SyntaxKind2["DocParamTag"] = 53] = "DocParamTag";
1248
+ SyntaxKind2[SyntaxKind2["DocPropTag"] = 54] = "DocPropTag";
1249
+ SyntaxKind2[SyntaxKind2["DocReturnsTag"] = 55] = "DocReturnsTag";
1250
+ SyntaxKind2[SyntaxKind2["DocErrorsTag"] = 56] = "DocErrorsTag";
1251
+ SyntaxKind2[SyntaxKind2["DocTemplateTag"] = 57] = "DocTemplateTag";
1252
+ SyntaxKind2[SyntaxKind2["DocUnknownTag"] = 58] = "DocUnknownTag";
1253
+ SyntaxKind2[SyntaxKind2["Return"] = 59] = "Return";
1254
+ SyntaxKind2[SyntaxKind2["JsNamespaceDeclaration"] = 60] = "JsNamespaceDeclaration";
1255
+ SyntaxKind2[SyntaxKind2["TemplateArgument"] = 61] = "TemplateArgument";
1256
+ SyntaxKind2[SyntaxKind2["TypeOfExpression"] = 62] = "TypeOfExpression";
1257
+ SyntaxKind2[SyntaxKind2["ObjectLiteral"] = 63] = "ObjectLiteral";
1258
+ SyntaxKind2[SyntaxKind2["ObjectLiteralProperty"] = 64] = "ObjectLiteralProperty";
1259
+ SyntaxKind2[SyntaxKind2["ObjectLiteralSpreadProperty"] = 65] = "ObjectLiteralSpreadProperty";
1260
+ SyntaxKind2[SyntaxKind2["ArrayLiteral"] = 66] = "ArrayLiteral";
1261
+ SyntaxKind2[SyntaxKind2["ConstStatement"] = 67] = "ConstStatement";
1262
+ SyntaxKind2[SyntaxKind2["CallExpression"] = 68] = "CallExpression";
1263
+ SyntaxKind2[SyntaxKind2["ScalarConstructor"] = 69] = "ScalarConstructor";
1264
+ })(SyntaxKind || (SyntaxKind = {}));
1265
+ var IdentifierKind;
1266
+ (function(IdentifierKind2) {
1267
+ IdentifierKind2[IdentifierKind2["TypeReference"] = 0] = "TypeReference";
1268
+ IdentifierKind2[IdentifierKind2["TemplateArgument"] = 1] = "TemplateArgument";
1269
+ IdentifierKind2[IdentifierKind2["Decorator"] = 2] = "Decorator";
1270
+ IdentifierKind2[IdentifierKind2["Function"] = 3] = "Function";
1271
+ IdentifierKind2[IdentifierKind2["Using"] = 4] = "Using";
1272
+ IdentifierKind2[IdentifierKind2["Declaration"] = 5] = "Declaration";
1273
+ IdentifierKind2[IdentifierKind2["ModelExpressionProperty"] = 6] = "ModelExpressionProperty";
1274
+ IdentifierKind2[IdentifierKind2["ModelStatementProperty"] = 7] = "ModelStatementProperty";
1275
+ IdentifierKind2[IdentifierKind2["ObjectLiteralProperty"] = 8] = "ObjectLiteralProperty";
1276
+ IdentifierKind2[IdentifierKind2["Other"] = 9] = "Other";
1277
+ })(IdentifierKind || (IdentifierKind = {}));
1278
+ var NoTarget = /* @__PURE__ */ Symbol.for("NoTarget");
1279
+ var ListenerFlow;
1280
+ (function(ListenerFlow2) {
1281
+ ListenerFlow2[ListenerFlow2["NoRecursion"] = 1] = "NoRecursion";
1282
+ })(ListenerFlow || (ListenerFlow = {}));
1283
+
1284
+ // ../compiler/dist/src/core/diagnostics.js
1285
+ function getNodeForTarget(target) {
1286
+ if (!("kind" in target) && !("entityKind" in target)) {
1287
+ if (!("declarations" in target)) {
1288
+ return target.node;
1289
+ }
1290
+ if (target.flags & 8192) {
1291
+ target = target.symbolSource;
1292
+ }
1293
+ return target.declarations[0];
1294
+ } else if ("kind" in target && typeof target.kind === "number") {
1295
+ return target;
1296
+ } else {
1297
+ return target.node;
1298
+ }
1299
+ }
1300
+ function getSourceLocation(target, options = {}) {
1301
+ if (target === NoTarget || target === void 0) {
1302
+ return void 0;
1303
+ }
1304
+ if ("file" in target) {
1305
+ return target;
1306
+ }
1307
+ const node = getNodeForTarget(target);
1308
+ return node ? getSourceLocationOfNode(node, options) : createSyntheticSourceLocation();
1309
+ }
1310
+ function createSyntheticSourceLocation(loc = "<unknown location>") {
1311
+ return {
1312
+ file: createSourceFile("", loc),
1313
+ pos: 0,
1314
+ end: 0,
1315
+ isSynthetic: true
1316
+ };
1317
+ }
1318
+ function getSourceLocationOfNode(node, options) {
1319
+ let root = node;
1320
+ while (root.parent !== void 0) {
1321
+ root = root.parent;
1322
+ }
1323
+ if (root.kind !== SyntaxKind.TypeSpecScript && root.kind !== SyntaxKind.JsSourceFile) {
1324
+ return createSyntheticSourceLocation(node.flags & 8 ? void 0 : "<unknown location - cannot obtain source location of unbound node - file bug at https://github.com/microsoft/typespec>");
1325
+ }
1326
+ if (options.locateId && "id" in node && node.id !== void 0) {
1327
+ node = node.id;
1328
+ }
1329
+ return {
1330
+ file: root.file,
1331
+ pos: node.pos,
1332
+ end: node.end
1333
+ };
1334
+ }
1335
+ function compilerAssert(condition, message, target) {
1336
+ if (condition) {
1337
+ return;
1338
+ }
1339
+ if (target) {
1340
+ let location;
1341
+ try {
1342
+ location = getSourceLocation(target);
1343
+ } catch (err) {
1344
+ }
1345
+ if (location) {
1346
+ const pos = location.file.getLineAndCharacterOfPosition(location.pos);
1347
+ const file = location.file.path;
1348
+ const line2 = pos.line + 1;
1349
+ const col = pos.character + 1;
1350
+ message += `
1351
+ Occurred while compiling code in ${file} near line ${line2}, column ${col}`;
2839
1352
  }
2840
- },
2841
- "vscode-in-path": {
2842
- severity: "error",
2843
- messages: {
2844
- default: "Couldn't find VS Code 'code' command in PATH. Make sure you have the VS Code executable added to the system PATH.",
2845
- osx: "Couldn't find VS Code 'code' command in PATH. Make sure you have the VS Code executable added to the system PATH.\nSee instruction for Mac OS here https://code.visualstudio.com/docs/setup/mac"
1353
+ }
1354
+ throw new Error(message);
1355
+ }
1356
+ function defineCodeFix(fix) {
1357
+ return fix;
1358
+ }
1359
+
1360
+ // ../compiler/dist/src/core/nonascii.js
1361
+ var nonAsciiIdentifierMap = [
1362
+ 160,
1363
+ 887,
1364
+ 890,
1365
+ 895,
1366
+ 900,
1367
+ 906,
1368
+ 908,
1369
+ 908,
1370
+ 910,
1371
+ 929,
1372
+ 931,
1373
+ 1327,
1374
+ 1329,
1375
+ 1366,
1376
+ 1369,
1377
+ 1418,
1378
+ 1421,
1379
+ 1423,
1380
+ 1425,
1381
+ 1479,
1382
+ 1488,
1383
+ 1514,
1384
+ 1519,
1385
+ 1524,
1386
+ 1536,
1387
+ 1805,
1388
+ 1807,
1389
+ 1866,
1390
+ 1869,
1391
+ 1969,
1392
+ 1984,
1393
+ 2042,
1394
+ 2045,
1395
+ 2093,
1396
+ 2096,
1397
+ 2110,
1398
+ 2112,
1399
+ 2139,
1400
+ 2142,
1401
+ 2142,
1402
+ 2144,
1403
+ 2154,
1404
+ 2160,
1405
+ 2190,
1406
+ 2192,
1407
+ 2193,
1408
+ 2200,
1409
+ 2435,
1410
+ 2437,
1411
+ 2444,
1412
+ 2447,
1413
+ 2448,
1414
+ 2451,
1415
+ 2472,
1416
+ 2474,
1417
+ 2480,
1418
+ 2482,
1419
+ 2482,
1420
+ 2486,
1421
+ 2489,
1422
+ 2492,
1423
+ 2500,
1424
+ 2503,
1425
+ 2504,
1426
+ 2507,
1427
+ 2510,
1428
+ 2519,
1429
+ 2519,
1430
+ 2524,
1431
+ 2525,
1432
+ 2527,
1433
+ 2531,
1434
+ 2534,
1435
+ 2558,
1436
+ 2561,
1437
+ 2563,
1438
+ 2565,
1439
+ 2570,
1440
+ 2575,
1441
+ 2576,
1442
+ 2579,
1443
+ 2600,
1444
+ 2602,
1445
+ 2608,
1446
+ 2610,
1447
+ 2611,
1448
+ 2613,
1449
+ 2614,
1450
+ 2616,
1451
+ 2617,
1452
+ 2620,
1453
+ 2620,
1454
+ 2622,
1455
+ 2626,
1456
+ 2631,
1457
+ 2632,
1458
+ 2635,
1459
+ 2637,
1460
+ 2641,
1461
+ 2641,
1462
+ 2649,
1463
+ 2652,
1464
+ 2654,
1465
+ 2654,
1466
+ 2662,
1467
+ 2678,
1468
+ 2689,
1469
+ 2691,
1470
+ 2693,
1471
+ 2701,
1472
+ 2703,
1473
+ 2705,
1474
+ 2707,
1475
+ 2728,
1476
+ 2730,
1477
+ 2736,
1478
+ 2738,
1479
+ 2739,
1480
+ 2741,
1481
+ 2745,
1482
+ 2748,
1483
+ 2757,
1484
+ 2759,
1485
+ 2761,
1486
+ 2763,
1487
+ 2765,
1488
+ 2768,
1489
+ 2768,
1490
+ 2784,
1491
+ 2787,
1492
+ 2790,
1493
+ 2801,
1494
+ 2809,
1495
+ 2815,
1496
+ 2817,
1497
+ 2819,
1498
+ 2821,
1499
+ 2828,
1500
+ 2831,
1501
+ 2832,
1502
+ 2835,
1503
+ 2856,
1504
+ 2858,
1505
+ 2864,
1506
+ 2866,
1507
+ 2867,
1508
+ 2869,
1509
+ 2873,
1510
+ 2876,
1511
+ 2884,
1512
+ 2887,
1513
+ 2888,
1514
+ 2891,
1515
+ 2893,
1516
+ 2901,
1517
+ 2903,
1518
+ 2908,
1519
+ 2909,
1520
+ 2911,
1521
+ 2915,
1522
+ 2918,
1523
+ 2935,
1524
+ 2946,
1525
+ 2947,
1526
+ 2949,
1527
+ 2954,
1528
+ 2958,
1529
+ 2960,
1530
+ 2962,
1531
+ 2965,
1532
+ 2969,
1533
+ 2970,
1534
+ 2972,
1535
+ 2972,
1536
+ 2974,
1537
+ 2975,
1538
+ 2979,
1539
+ 2980,
1540
+ 2984,
1541
+ 2986,
1542
+ 2990,
1543
+ 3001,
1544
+ 3006,
1545
+ 3010,
1546
+ 3014,
1547
+ 3016,
1548
+ 3018,
1549
+ 3021,
1550
+ 3024,
1551
+ 3024,
1552
+ 3031,
1553
+ 3031,
1554
+ 3046,
1555
+ 3066,
1556
+ 3072,
1557
+ 3084,
1558
+ 3086,
1559
+ 3088,
1560
+ 3090,
1561
+ 3112,
1562
+ 3114,
1563
+ 3129,
1564
+ 3132,
1565
+ 3140,
1566
+ 3142,
1567
+ 3144,
1568
+ 3146,
1569
+ 3149,
1570
+ 3157,
1571
+ 3158,
1572
+ 3160,
1573
+ 3162,
1574
+ 3165,
1575
+ 3165,
1576
+ 3168,
1577
+ 3171,
1578
+ 3174,
1579
+ 3183,
1580
+ 3191,
1581
+ 3212,
1582
+ 3214,
1583
+ 3216,
1584
+ 3218,
1585
+ 3240,
1586
+ 3242,
1587
+ 3251,
1588
+ 3253,
1589
+ 3257,
1590
+ 3260,
1591
+ 3268,
1592
+ 3270,
1593
+ 3272,
1594
+ 3274,
1595
+ 3277,
1596
+ 3285,
1597
+ 3286,
1598
+ 3293,
1599
+ 3294,
1600
+ 3296,
1601
+ 3299,
1602
+ 3302,
1603
+ 3311,
1604
+ 3313,
1605
+ 3315,
1606
+ 3328,
1607
+ 3340,
1608
+ 3342,
1609
+ 3344,
1610
+ 3346,
1611
+ 3396,
1612
+ 3398,
1613
+ 3400,
1614
+ 3402,
1615
+ 3407,
1616
+ 3412,
1617
+ 3427,
1618
+ 3430,
1619
+ 3455,
1620
+ 3457,
1621
+ 3459,
1622
+ 3461,
1623
+ 3478,
1624
+ 3482,
1625
+ 3505,
1626
+ 3507,
1627
+ 3515,
1628
+ 3517,
1629
+ 3517,
1630
+ 3520,
1631
+ 3526,
1632
+ 3530,
1633
+ 3530,
1634
+ 3535,
1635
+ 3540,
1636
+ 3542,
1637
+ 3542,
1638
+ 3544,
1639
+ 3551,
1640
+ 3558,
1641
+ 3567,
1642
+ 3570,
1643
+ 3572,
1644
+ 3585,
1645
+ 3642,
1646
+ 3647,
1647
+ 3675,
1648
+ 3713,
1649
+ 3714,
1650
+ 3716,
1651
+ 3716,
1652
+ 3718,
1653
+ 3722,
1654
+ 3724,
1655
+ 3747,
1656
+ 3749,
1657
+ 3749,
1658
+ 3751,
1659
+ 3773,
1660
+ 3776,
1661
+ 3780,
1662
+ 3782,
1663
+ 3782,
1664
+ 3784,
1665
+ 3790,
1666
+ 3792,
1667
+ 3801,
1668
+ 3804,
1669
+ 3807,
1670
+ 3840,
1671
+ 3911,
1672
+ 3913,
1673
+ 3948,
1674
+ 3953,
1675
+ 3991,
1676
+ 3993,
1677
+ 4028,
1678
+ 4030,
1679
+ 4044,
1680
+ 4046,
1681
+ 4058,
1682
+ 4096,
1683
+ 4293,
1684
+ 4295,
1685
+ 4295,
1686
+ 4301,
1687
+ 4301,
1688
+ 4304,
1689
+ 4680,
1690
+ 4682,
1691
+ 4685,
1692
+ 4688,
1693
+ 4694,
1694
+ 4696,
1695
+ 4696,
1696
+ 4698,
1697
+ 4701,
1698
+ 4704,
1699
+ 4744,
1700
+ 4746,
1701
+ 4749,
1702
+ 4752,
1703
+ 4784,
1704
+ 4786,
1705
+ 4789,
1706
+ 4792,
1707
+ 4798,
1708
+ 4800,
1709
+ 4800,
1710
+ 4802,
1711
+ 4805,
1712
+ 4808,
1713
+ 4822,
1714
+ 4824,
1715
+ 4880,
1716
+ 4882,
1717
+ 4885,
1718
+ 4888,
1719
+ 4954,
1720
+ 4957,
1721
+ 4988,
1722
+ 4992,
1723
+ 5017,
1724
+ 5024,
1725
+ 5109,
1726
+ 5112,
1727
+ 5117,
1728
+ 5120,
1729
+ 5788,
1730
+ 5792,
1731
+ 5880,
1732
+ 5888,
1733
+ 5909,
1734
+ 5919,
1735
+ 5942,
1736
+ 5952,
1737
+ 5971,
1738
+ 5984,
1739
+ 5996,
1740
+ 5998,
1741
+ 6e3,
1742
+ 6002,
1743
+ 6003,
1744
+ 6016,
1745
+ 6109,
1746
+ 6112,
1747
+ 6121,
1748
+ 6128,
1749
+ 6137,
1750
+ 6144,
1751
+ 6169,
1752
+ 6176,
1753
+ 6264,
1754
+ 6272,
1755
+ 6314,
1756
+ 6320,
1757
+ 6389,
1758
+ 6400,
1759
+ 6430,
1760
+ 6432,
1761
+ 6443,
1762
+ 6448,
1763
+ 6459,
1764
+ 6464,
1765
+ 6464,
1766
+ 6468,
1767
+ 6509,
1768
+ 6512,
1769
+ 6516,
1770
+ 6528,
1771
+ 6571,
1772
+ 6576,
1773
+ 6601,
1774
+ 6608,
1775
+ 6618,
1776
+ 6622,
1777
+ 6683,
1778
+ 6686,
1779
+ 6750,
1780
+ 6752,
1781
+ 6780,
1782
+ 6783,
1783
+ 6793,
1784
+ 6800,
1785
+ 6809,
1786
+ 6816,
1787
+ 6829,
1788
+ 6832,
1789
+ 6862,
1790
+ 6912,
1791
+ 6988,
1792
+ 6992,
1793
+ 7038,
1794
+ 7040,
1795
+ 7155,
1796
+ 7164,
1797
+ 7223,
1798
+ 7227,
1799
+ 7241,
1800
+ 7245,
1801
+ 7304,
1802
+ 7312,
1803
+ 7354,
1804
+ 7357,
1805
+ 7367,
1806
+ 7376,
1807
+ 7418,
1808
+ 7424,
1809
+ 7957,
1810
+ 7960,
1811
+ 7965,
1812
+ 7968,
1813
+ 8005,
1814
+ 8008,
1815
+ 8013,
1816
+ 8016,
1817
+ 8023,
1818
+ 8025,
1819
+ 8025,
1820
+ 8027,
1821
+ 8027,
1822
+ 8029,
1823
+ 8029,
1824
+ 8031,
1825
+ 8061,
1826
+ 8064,
1827
+ 8116,
1828
+ 8118,
1829
+ 8132,
1830
+ 8134,
1831
+ 8147,
1832
+ 8150,
1833
+ 8155,
1834
+ 8157,
1835
+ 8175,
1836
+ 8178,
1837
+ 8180,
1838
+ 8182,
1839
+ 8190,
1840
+ 8192,
1841
+ 8205,
1842
+ 8208,
1843
+ 8231,
1844
+ 8234,
1845
+ 8292,
1846
+ 8294,
1847
+ 8305,
1848
+ 8308,
1849
+ 8334,
1850
+ 8336,
1851
+ 8348,
1852
+ 8352,
1853
+ 8384,
1854
+ 8400,
1855
+ 8432,
1856
+ 8448,
1857
+ 8587,
1858
+ 8592,
1859
+ 9254,
1860
+ 9280,
1861
+ 9290,
1862
+ 9312,
1863
+ 11123,
1864
+ 11126,
1865
+ 11157,
1866
+ 11159,
1867
+ 11507,
1868
+ 11513,
1869
+ 11557,
1870
+ 11559,
1871
+ 11559,
1872
+ 11565,
1873
+ 11565,
1874
+ 11568,
1875
+ 11623,
1876
+ 11631,
1877
+ 11632,
1878
+ 11647,
1879
+ 11670,
1880
+ 11680,
1881
+ 11686,
1882
+ 11688,
1883
+ 11694,
1884
+ 11696,
1885
+ 11702,
1886
+ 11704,
1887
+ 11710,
1888
+ 11712,
1889
+ 11718,
1890
+ 11720,
1891
+ 11726,
1892
+ 11728,
1893
+ 11734,
1894
+ 11736,
1895
+ 11742,
1896
+ 11744,
1897
+ 11869,
1898
+ 11904,
1899
+ 11929,
1900
+ 11931,
1901
+ 12019,
1902
+ 12032,
1903
+ 12245,
1904
+ 12272,
1905
+ 12283,
1906
+ 12288,
1907
+ 12351,
1908
+ 12353,
1909
+ 12438,
1910
+ 12441,
1911
+ 12543,
1912
+ 12549,
1913
+ 12591,
1914
+ 12593,
1915
+ 12686,
1916
+ 12688,
1917
+ 12771,
1918
+ 12784,
1919
+ 12830,
1920
+ 12832,
1921
+ 42124,
1922
+ 42128,
1923
+ 42182,
1924
+ 42192,
1925
+ 42539,
1926
+ 42560,
1927
+ 42743,
1928
+ 42752,
1929
+ 42954,
1930
+ 42960,
1931
+ 42961,
1932
+ 42963,
1933
+ 42963,
1934
+ 42965,
1935
+ 42969,
1936
+ 42994,
1937
+ 43052,
1938
+ 43056,
1939
+ 43065,
1940
+ 43072,
1941
+ 43127,
1942
+ 43136,
1943
+ 43205,
1944
+ 43214,
1945
+ 43225,
1946
+ 43232,
1947
+ 43347,
1948
+ 43359,
1949
+ 43388,
1950
+ 43392,
1951
+ 43469,
1952
+ 43471,
1953
+ 43481,
1954
+ 43486,
1955
+ 43518,
1956
+ 43520,
1957
+ 43574,
1958
+ 43584,
1959
+ 43597,
1960
+ 43600,
1961
+ 43609,
1962
+ 43612,
1963
+ 43714,
1964
+ 43739,
1965
+ 43766,
1966
+ 43777,
1967
+ 43782,
1968
+ 43785,
1969
+ 43790,
1970
+ 43793,
1971
+ 43798,
1972
+ 43808,
1973
+ 43814,
1974
+ 43816,
1975
+ 43822,
1976
+ 43824,
1977
+ 43883,
1978
+ 43888,
1979
+ 44013,
1980
+ 44016,
1981
+ 44025,
1982
+ 44032,
1983
+ 55203,
1984
+ 55216,
1985
+ 55238,
1986
+ 55243,
1987
+ 55291,
1988
+ 63744,
1989
+ 64109,
1990
+ 64112,
1991
+ 64217,
1992
+ 64256,
1993
+ 64262,
1994
+ 64275,
1995
+ 64279,
1996
+ 64285,
1997
+ 64310,
1998
+ 64312,
1999
+ 64316,
2000
+ 64318,
2001
+ 64318,
2002
+ 64320,
2003
+ 64321,
2004
+ 64323,
2005
+ 64324,
2006
+ 64326,
2007
+ 64450,
2008
+ 64467,
2009
+ 64911,
2010
+ 64914,
2011
+ 64967,
2012
+ 64975,
2013
+ 64975,
2014
+ 65008,
2015
+ 65049,
2016
+ 65056,
2017
+ 65106,
2018
+ 65108,
2019
+ 65126,
2020
+ 65128,
2021
+ 65131,
2022
+ 65136,
2023
+ 65140,
2024
+ 65142,
2025
+ 65276,
2026
+ 65279,
2027
+ 65279,
2028
+ 65281,
2029
+ 65470,
2030
+ 65474,
2031
+ 65479,
2032
+ 65482,
2033
+ 65487,
2034
+ 65490,
2035
+ 65495,
2036
+ 65498,
2037
+ 65500,
2038
+ 65504,
2039
+ 65510,
2040
+ 65512,
2041
+ 65518,
2042
+ 65529,
2043
+ 65532,
2044
+ 65536,
2045
+ 65547,
2046
+ 65549,
2047
+ 65574,
2048
+ 65576,
2049
+ 65594,
2050
+ 65596,
2051
+ 65597,
2052
+ 65599,
2053
+ 65613,
2054
+ 65616,
2055
+ 65629,
2056
+ 65664,
2057
+ 65786,
2058
+ 65792,
2059
+ 65794,
2060
+ 65799,
2061
+ 65843,
2062
+ 65847,
2063
+ 65934,
2064
+ 65936,
2065
+ 65948,
2066
+ 65952,
2067
+ 65952,
2068
+ 66e3,
2069
+ 66045,
2070
+ 66176,
2071
+ 66204,
2072
+ 66208,
2073
+ 66256,
2074
+ 66272,
2075
+ 66299,
2076
+ 66304,
2077
+ 66339,
2078
+ 66349,
2079
+ 66378,
2080
+ 66384,
2081
+ 66426,
2082
+ 66432,
2083
+ 66461,
2084
+ 66463,
2085
+ 66499,
2086
+ 66504,
2087
+ 66517,
2088
+ 66560,
2089
+ 66717,
2090
+ 66720,
2091
+ 66729,
2092
+ 66736,
2093
+ 66771,
2094
+ 66776,
2095
+ 66811,
2096
+ 66816,
2097
+ 66855,
2098
+ 66864,
2099
+ 66915,
2100
+ 66927,
2101
+ 66938,
2102
+ 66940,
2103
+ 66954,
2104
+ 66956,
2105
+ 66962,
2106
+ 66964,
2107
+ 66965,
2108
+ 66967,
2109
+ 66977,
2110
+ 66979,
2111
+ 66993,
2112
+ 66995,
2113
+ 67001,
2114
+ 67003,
2115
+ 67004,
2116
+ 67072,
2117
+ 67382,
2118
+ 67392,
2119
+ 67413,
2120
+ 67424,
2121
+ 67431,
2122
+ 67456,
2123
+ 67461,
2124
+ 67463,
2125
+ 67504,
2126
+ 67506,
2127
+ 67514,
2128
+ 67584,
2129
+ 67589,
2130
+ 67592,
2131
+ 67592,
2132
+ 67594,
2133
+ 67637,
2134
+ 67639,
2135
+ 67640,
2136
+ 67644,
2137
+ 67644,
2138
+ 67647,
2139
+ 67669,
2140
+ 67671,
2141
+ 67742,
2142
+ 67751,
2143
+ 67759,
2144
+ 67808,
2145
+ 67826,
2146
+ 67828,
2147
+ 67829,
2148
+ 67835,
2149
+ 67867,
2150
+ 67871,
2151
+ 67897,
2152
+ 67903,
2153
+ 67903,
2154
+ 67968,
2155
+ 68023,
2156
+ 68028,
2157
+ 68047,
2158
+ 68050,
2159
+ 68099,
2160
+ 68101,
2161
+ 68102,
2162
+ 68108,
2163
+ 68115,
2164
+ 68117,
2165
+ 68119,
2166
+ 68121,
2167
+ 68149,
2168
+ 68152,
2169
+ 68154,
2170
+ 68159,
2171
+ 68168,
2172
+ 68176,
2173
+ 68184,
2174
+ 68192,
2175
+ 68255,
2176
+ 68288,
2177
+ 68326,
2178
+ 68331,
2179
+ 68342,
2180
+ 68352,
2181
+ 68405,
2182
+ 68409,
2183
+ 68437,
2184
+ 68440,
2185
+ 68466,
2186
+ 68472,
2187
+ 68497,
2188
+ 68505,
2189
+ 68508,
2190
+ 68521,
2191
+ 68527,
2192
+ 68608,
2193
+ 68680,
2194
+ 68736,
2195
+ 68786,
2196
+ 68800,
2197
+ 68850,
2198
+ 68858,
2199
+ 68903,
2200
+ 68912,
2201
+ 68921,
2202
+ 69216,
2203
+ 69246,
2204
+ 69248,
2205
+ 69289,
2206
+ 69291,
2207
+ 69293,
2208
+ 69296,
2209
+ 69297,
2210
+ 69373,
2211
+ 69415,
2212
+ 69424,
2213
+ 69465,
2214
+ 69488,
2215
+ 69513,
2216
+ 69552,
2217
+ 69579,
2218
+ 69600,
2219
+ 69622,
2220
+ 69632,
2221
+ 69709,
2222
+ 69714,
2223
+ 69749,
2224
+ 69759,
2225
+ 69826,
2226
+ 69837,
2227
+ 69837,
2228
+ 69840,
2229
+ 69864,
2230
+ 69872,
2231
+ 69881,
2232
+ 69888,
2233
+ 69940,
2234
+ 69942,
2235
+ 69959,
2236
+ 69968,
2237
+ 70006,
2238
+ 70016,
2239
+ 70111,
2240
+ 70113,
2241
+ 70132,
2242
+ 70144,
2243
+ 70161,
2244
+ 70163,
2245
+ 70209,
2246
+ 70272,
2247
+ 70278,
2248
+ 70280,
2249
+ 70280,
2250
+ 70282,
2251
+ 70285,
2252
+ 70287,
2253
+ 70301,
2254
+ 70303,
2255
+ 70313,
2256
+ 70320,
2257
+ 70378,
2258
+ 70384,
2259
+ 70393,
2260
+ 70400,
2261
+ 70403,
2262
+ 70405,
2263
+ 70412,
2264
+ 70415,
2265
+ 70416,
2266
+ 70419,
2267
+ 70440,
2268
+ 70442,
2269
+ 70448,
2270
+ 70450,
2271
+ 70451,
2272
+ 70453,
2273
+ 70457,
2274
+ 70459,
2275
+ 70468,
2276
+ 70471,
2277
+ 70472,
2278
+ 70475,
2279
+ 70477,
2280
+ 70480,
2281
+ 70480,
2282
+ 70487,
2283
+ 70487,
2284
+ 70493,
2285
+ 70499,
2286
+ 70502,
2287
+ 70508,
2288
+ 70512,
2289
+ 70516,
2290
+ 70656,
2291
+ 70747,
2292
+ 70749,
2293
+ 70753,
2294
+ 70784,
2295
+ 70855,
2296
+ 70864,
2297
+ 70873,
2298
+ 71040,
2299
+ 71093,
2300
+ 71096,
2301
+ 71133,
2302
+ 71168,
2303
+ 71236,
2304
+ 71248,
2305
+ 71257,
2306
+ 71264,
2307
+ 71276,
2308
+ 71296,
2309
+ 71353,
2310
+ 71360,
2311
+ 71369,
2312
+ 71424,
2313
+ 71450,
2314
+ 71453,
2315
+ 71467,
2316
+ 71472,
2317
+ 71494,
2318
+ 71680,
2319
+ 71739,
2320
+ 71840,
2321
+ 71922,
2322
+ 71935,
2323
+ 71942,
2324
+ 71945,
2325
+ 71945,
2326
+ 71948,
2327
+ 71955,
2328
+ 71957,
2329
+ 71958,
2330
+ 71960,
2331
+ 71989,
2332
+ 71991,
2333
+ 71992,
2334
+ 71995,
2335
+ 72006,
2336
+ 72016,
2337
+ 72025,
2338
+ 72096,
2339
+ 72103,
2340
+ 72106,
2341
+ 72151,
2342
+ 72154,
2343
+ 72164,
2344
+ 72192,
2345
+ 72263,
2346
+ 72272,
2347
+ 72354,
2348
+ 72368,
2349
+ 72440,
2350
+ 72448,
2351
+ 72457,
2352
+ 72704,
2353
+ 72712,
2354
+ 72714,
2355
+ 72758,
2356
+ 72760,
2357
+ 72773,
2358
+ 72784,
2359
+ 72812,
2360
+ 72816,
2361
+ 72847,
2362
+ 72850,
2363
+ 72871,
2364
+ 72873,
2365
+ 72886,
2366
+ 72960,
2367
+ 72966,
2368
+ 72968,
2369
+ 72969,
2370
+ 72971,
2371
+ 73014,
2372
+ 73018,
2373
+ 73018,
2374
+ 73020,
2375
+ 73021,
2376
+ 73023,
2377
+ 73031,
2378
+ 73040,
2379
+ 73049,
2380
+ 73056,
2381
+ 73061,
2382
+ 73063,
2383
+ 73064,
2384
+ 73066,
2385
+ 73102,
2386
+ 73104,
2387
+ 73105,
2388
+ 73107,
2389
+ 73112,
2390
+ 73120,
2391
+ 73129,
2392
+ 73440,
2393
+ 73464,
2394
+ 73472,
2395
+ 73488,
2396
+ 73490,
2397
+ 73530,
2398
+ 73534,
2399
+ 73561,
2400
+ 73648,
2401
+ 73648,
2402
+ 73664,
2403
+ 73713,
2404
+ 73727,
2405
+ 74649,
2406
+ 74752,
2407
+ 74862,
2408
+ 74864,
2409
+ 74868,
2410
+ 74880,
2411
+ 75075,
2412
+ 77712,
2413
+ 77810,
2414
+ 77824,
2415
+ 78933,
2416
+ 82944,
2417
+ 83526,
2418
+ 92160,
2419
+ 92728,
2420
+ 92736,
2421
+ 92766,
2422
+ 92768,
2423
+ 92777,
2424
+ 92782,
2425
+ 92862,
2426
+ 92864,
2427
+ 92873,
2428
+ 92880,
2429
+ 92909,
2430
+ 92912,
2431
+ 92917,
2432
+ 92928,
2433
+ 92997,
2434
+ 93008,
2435
+ 93017,
2436
+ 93019,
2437
+ 93025,
2438
+ 93027,
2439
+ 93047,
2440
+ 93053,
2441
+ 93071,
2442
+ 93760,
2443
+ 93850,
2444
+ 93952,
2445
+ 94026,
2446
+ 94031,
2447
+ 94087,
2448
+ 94095,
2449
+ 94111,
2450
+ 94176,
2451
+ 94180,
2452
+ 94192,
2453
+ 94193,
2454
+ 94208,
2455
+ 100343,
2456
+ 100352,
2457
+ 101589,
2458
+ 101632,
2459
+ 101640,
2460
+ 110576,
2461
+ 110579,
2462
+ 110581,
2463
+ 110587,
2464
+ 110589,
2465
+ 110590,
2466
+ 110592,
2467
+ 110882,
2468
+ 110898,
2469
+ 110898,
2470
+ 110928,
2471
+ 110930,
2472
+ 110933,
2473
+ 110933,
2474
+ 110948,
2475
+ 110951,
2476
+ 110960,
2477
+ 111355,
2478
+ 113664,
2479
+ 113770,
2480
+ 113776,
2481
+ 113788,
2482
+ 113792,
2483
+ 113800,
2484
+ 113808,
2485
+ 113817,
2486
+ 113820,
2487
+ 113827,
2488
+ 118528,
2489
+ 118573,
2490
+ 118576,
2491
+ 118598,
2492
+ 118608,
2493
+ 118723,
2494
+ 118784,
2495
+ 119029,
2496
+ 119040,
2497
+ 119078,
2498
+ 119081,
2499
+ 119274,
2500
+ 119296,
2501
+ 119365,
2502
+ 119488,
2503
+ 119507,
2504
+ 119520,
2505
+ 119539,
2506
+ 119552,
2507
+ 119638,
2508
+ 119648,
2509
+ 119672,
2510
+ 119808,
2511
+ 119892,
2512
+ 119894,
2513
+ 119964,
2514
+ 119966,
2515
+ 119967,
2516
+ 119970,
2517
+ 119970,
2518
+ 119973,
2519
+ 119974,
2520
+ 119977,
2521
+ 119980,
2522
+ 119982,
2523
+ 119993,
2524
+ 119995,
2525
+ 119995,
2526
+ 119997,
2527
+ 120003,
2528
+ 120005,
2529
+ 120069,
2530
+ 120071,
2531
+ 120074,
2532
+ 120077,
2533
+ 120084,
2534
+ 120086,
2535
+ 120092,
2536
+ 120094,
2537
+ 120121,
2538
+ 120123,
2539
+ 120126,
2540
+ 120128,
2541
+ 120132,
2542
+ 120134,
2543
+ 120134,
2544
+ 120138,
2545
+ 120144,
2546
+ 120146,
2547
+ 120485,
2548
+ 120488,
2549
+ 120779,
2550
+ 120782,
2551
+ 121483,
2552
+ 121499,
2553
+ 121503,
2554
+ 121505,
2555
+ 121519,
2556
+ 122624,
2557
+ 122654,
2558
+ 122661,
2559
+ 122666,
2560
+ 122880,
2561
+ 122886,
2562
+ 122888,
2563
+ 122904,
2564
+ 122907,
2565
+ 122913,
2566
+ 122915,
2567
+ 122916,
2568
+ 122918,
2569
+ 122922,
2570
+ 122928,
2571
+ 122989,
2572
+ 123023,
2573
+ 123023,
2574
+ 123136,
2575
+ 123180,
2576
+ 123184,
2577
+ 123197,
2578
+ 123200,
2579
+ 123209,
2580
+ 123214,
2581
+ 123215,
2582
+ 123536,
2583
+ 123566,
2584
+ 123584,
2585
+ 123641,
2586
+ 123647,
2587
+ 123647,
2588
+ 124112,
2589
+ 124153,
2590
+ 124896,
2591
+ 124902,
2592
+ 124904,
2593
+ 124907,
2594
+ 124909,
2595
+ 124910,
2596
+ 124912,
2597
+ 124926,
2598
+ 124928,
2599
+ 125124,
2600
+ 125127,
2601
+ 125142,
2602
+ 125184,
2603
+ 125259,
2604
+ 125264,
2605
+ 125273,
2606
+ 125278,
2607
+ 125279,
2608
+ 126065,
2609
+ 126132,
2610
+ 126209,
2611
+ 126269,
2612
+ 126464,
2613
+ 126467,
2614
+ 126469,
2615
+ 126495,
2616
+ 126497,
2617
+ 126498,
2618
+ 126500,
2619
+ 126500,
2620
+ 126503,
2621
+ 126503,
2622
+ 126505,
2623
+ 126514,
2624
+ 126516,
2625
+ 126519,
2626
+ 126521,
2627
+ 126521,
2628
+ 126523,
2629
+ 126523,
2630
+ 126530,
2631
+ 126530,
2632
+ 126535,
2633
+ 126535,
2634
+ 126537,
2635
+ 126537,
2636
+ 126539,
2637
+ 126539,
2638
+ 126541,
2639
+ 126543,
2640
+ 126545,
2641
+ 126546,
2642
+ 126548,
2643
+ 126548,
2644
+ 126551,
2645
+ 126551,
2646
+ 126553,
2647
+ 126553,
2648
+ 126555,
2649
+ 126555,
2650
+ 126557,
2651
+ 126557,
2652
+ 126559,
2653
+ 126559,
2654
+ 126561,
2655
+ 126562,
2656
+ 126564,
2657
+ 126564,
2658
+ 126567,
2659
+ 126570,
2660
+ 126572,
2661
+ 126578,
2662
+ 126580,
2663
+ 126583,
2664
+ 126585,
2665
+ 126588,
2666
+ 126590,
2667
+ 126590,
2668
+ 126592,
2669
+ 126601,
2670
+ 126603,
2671
+ 126619,
2672
+ 126625,
2673
+ 126627,
2674
+ 126629,
2675
+ 126633,
2676
+ 126635,
2677
+ 126651,
2678
+ 126704,
2679
+ 126705,
2680
+ 126976,
2681
+ 127019,
2682
+ 127024,
2683
+ 127123,
2684
+ 127136,
2685
+ 127150,
2686
+ 127153,
2687
+ 127167,
2688
+ 127169,
2689
+ 127183,
2690
+ 127185,
2691
+ 127221,
2692
+ 127232,
2693
+ 127405,
2694
+ 127462,
2695
+ 127490,
2696
+ 127504,
2697
+ 127547,
2698
+ 127552,
2699
+ 127560,
2700
+ 127568,
2701
+ 127569,
2702
+ 127584,
2703
+ 127589,
2704
+ 127744,
2705
+ 128727,
2706
+ 128732,
2707
+ 128748,
2708
+ 128752,
2709
+ 128764,
2710
+ 128768,
2711
+ 128886,
2712
+ 128891,
2713
+ 128985,
2714
+ 128992,
2715
+ 129003,
2716
+ 129008,
2717
+ 129008,
2718
+ 129024,
2719
+ 129035,
2720
+ 129040,
2721
+ 129095,
2722
+ 129104,
2723
+ 129113,
2724
+ 129120,
2725
+ 129159,
2726
+ 129168,
2727
+ 129197,
2728
+ 129200,
2729
+ 129201,
2730
+ 129280,
2731
+ 129619,
2732
+ 129632,
2733
+ 129645,
2734
+ 129648,
2735
+ 129660,
2736
+ 129664,
2737
+ 129672,
2738
+ 129680,
2739
+ 129725,
2740
+ 129727,
2741
+ 129733,
2742
+ 129742,
2743
+ 129755,
2744
+ 129760,
2745
+ 129768,
2746
+ 129776,
2747
+ 129784,
2748
+ 129792,
2749
+ 129938,
2750
+ 129940,
2751
+ 129994,
2752
+ 130032,
2753
+ 130041,
2754
+ 131072,
2755
+ 173791,
2756
+ 173824,
2757
+ 177977,
2758
+ 177984,
2759
+ 178205,
2760
+ 178208,
2761
+ 183969,
2762
+ 183984,
2763
+ 191456,
2764
+ 194560,
2765
+ 195101,
2766
+ 196608,
2767
+ 201546,
2768
+ 201552,
2769
+ 205743,
2770
+ 917505,
2771
+ 917505,
2772
+ 917536,
2773
+ 917631,
2774
+ 917760,
2775
+ 917999
2776
+ ];
2777
+
2778
+ // ../compiler/dist/src/core/charcode.js
2779
+ function utf16CodeUnits(codePoint) {
2780
+ return codePoint >= 65536 ? 2 : 1;
2781
+ }
2782
+ function isLineBreak(ch) {
2783
+ return ch === 10 || ch === 13;
2784
+ }
2785
+ function isAsciiWhiteSpaceSingleLine(ch) {
2786
+ return ch === 32 || ch === 9 || ch === 11 || ch === 12;
2787
+ }
2788
+ function isNonAsciiWhiteSpaceSingleLine(ch) {
2789
+ return ch === 133 || // not considered a line break
2790
+ ch === 8206 || ch === 8207 || ch === 8232 || ch === 8233;
2791
+ }
2792
+ function isWhiteSpace(ch) {
2793
+ return isWhiteSpaceSingleLine(ch) || isLineBreak(ch);
2794
+ }
2795
+ function isWhiteSpaceSingleLine(ch) {
2796
+ return isAsciiWhiteSpaceSingleLine(ch) || ch > 127 && isNonAsciiWhiteSpaceSingleLine(ch);
2797
+ }
2798
+ function trim(str) {
2799
+ let start = 0;
2800
+ let end = str.length - 1;
2801
+ if (!isWhiteSpace(str.charCodeAt(start)) && !isWhiteSpace(str.charCodeAt(end))) {
2802
+ return str;
2803
+ }
2804
+ while (isWhiteSpace(str.charCodeAt(start))) {
2805
+ start++;
2806
+ }
2807
+ while (isWhiteSpace(str.charCodeAt(end))) {
2808
+ end--;
2809
+ }
2810
+ return str.substring(start, end + 1);
2811
+ }
2812
+ function isDigit(ch) {
2813
+ return ch >= 48 && ch <= 57;
2814
+ }
2815
+ function isHexDigit(ch) {
2816
+ return isDigit(ch) || ch >= 65 && ch <= 70 || ch >= 97 && ch <= 102;
2817
+ }
2818
+ function isBinaryDigit(ch) {
2819
+ return ch === 48 || ch === 49;
2820
+ }
2821
+ function isLowercaseAsciiLetter(ch) {
2822
+ return ch >= 97 && ch <= 122;
2823
+ }
2824
+ function isAsciiIdentifierStart(ch) {
2825
+ return ch >= 65 && ch <= 90 || ch >= 97 && ch <= 122 || ch === 36 || ch === 95;
2826
+ }
2827
+ function isAsciiIdentifierContinue(ch) {
2828
+ return ch >= 65 && ch <= 90 || ch >= 97 && ch <= 122 || ch >= 48 && ch <= 57 || ch === 36 || ch === 95;
2829
+ }
2830
+ function isIdentifierStart(codePoint) {
2831
+ return isAsciiIdentifierStart(codePoint) || codePoint > 127 && isNonAsciiIdentifierCharacter(codePoint);
2832
+ }
2833
+ function isIdentifierContinue(codePoint) {
2834
+ return isAsciiIdentifierContinue(codePoint) || codePoint > 127 && isNonAsciiIdentifierCharacter(codePoint);
2835
+ }
2836
+ function isNonAsciiIdentifierCharacter(codePoint) {
2837
+ return lookupInNonAsciiMap(codePoint, nonAsciiIdentifierMap);
2838
+ }
2839
+ function lookupInNonAsciiMap(codePoint, map) {
2840
+ let lo = 0;
2841
+ let hi = map.length;
2842
+ let mid;
2843
+ while (lo + 1 < hi) {
2844
+ mid = lo + (hi - lo) / 2;
2845
+ mid -= mid % 2;
2846
+ if (map[mid] <= codePoint && codePoint <= map[mid + 1]) {
2847
+ return true;
2846
2848
  }
2847
- },
2848
- "invalid-option-flag": {
2849
- severity: "error",
2850
- messages: {
2851
- default: paramMessage`The --option parameter value "${"value"}" must be in the format: <emitterName>.some-options=value`
2849
+ if (codePoint < map[mid]) {
2850
+ hi = mid;
2851
+ } else {
2852
+ lo = mid + 2;
2852
2853
  }
2853
2854
  }
2854
- // #endregion CLI
2855
- };
2856
- var { createDiagnostic, reportDiagnostic } = createDiagnosticCreator(diagnostics);
2855
+ return false;
2856
+ }
2857
2857
 
2858
2858
  // ../compiler/dist/src/core/helpers/syntax-utils.js
2859
2859
  function printIdentifier(sv, context = "disallow-reserved") {