@ws-ui/code-editor 0.2.0-beta.20240726.1 → 0.2.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.
@@ -475,6 +475,12 @@
475
475
  return this.keys();
476
476
  }
477
477
  };
478
+ var Touch;
479
+ (function(Touch2) {
480
+ Touch2[Touch2["None"] = 0] = "None";
481
+ Touch2[Touch2["AsOld"] = 1] = "AsOld";
482
+ Touch2[Touch2["AsNew"] = 2] = "AsNew";
483
+ })(Touch || (Touch = {}));
478
484
  var LinkedMap = class {
479
485
  constructor() {
480
486
  this[_c] = "LinkedMap";
@@ -506,33 +512,33 @@
506
512
  has(key) {
507
513
  return this._map.has(key);
508
514
  }
509
- get(key, touch = 0) {
515
+ get(key, touch = Touch.None) {
510
516
  const item = this._map.get(key);
511
517
  if (!item) {
512
518
  return void 0;
513
519
  }
514
- if (touch !== 0) {
520
+ if (touch !== Touch.None) {
515
521
  this.touch(item, touch);
516
522
  }
517
523
  return item.value;
518
524
  }
519
- set(key, value, touch = 0) {
525
+ set(key, value, touch = Touch.None) {
520
526
  let item = this._map.get(key);
521
527
  if (item) {
522
528
  item.value = value;
523
- if (touch !== 0) {
529
+ if (touch !== Touch.None) {
524
530
  this.touch(item, touch);
525
531
  }
526
532
  } else {
527
533
  item = { key, value, next: void 0, previous: void 0 };
528
534
  switch (touch) {
529
- case 0:
535
+ case Touch.None:
530
536
  this.addItemLast(item);
531
537
  break;
532
- case 1:
538
+ case Touch.AsOld:
533
539
  this.addItemFirst(item);
534
540
  break;
535
- case 2:
541
+ case Touch.AsNew:
536
542
  this.addItemLast(item);
537
543
  break;
538
544
  default:
@@ -758,10 +764,10 @@
758
764
  if (!this._head || !this._tail) {
759
765
  throw new Error("Invalid list");
760
766
  }
761
- if (touch !== 1 && touch !== 2) {
767
+ if (touch !== Touch.AsOld && touch !== Touch.AsNew) {
762
768
  return;
763
769
  }
764
- if (touch === 1) {
770
+ if (touch === Touch.AsOld) {
765
771
  if (item === this._head) {
766
772
  return;
767
773
  }
@@ -779,7 +785,7 @@
779
785
  this._head.previous = item;
780
786
  this._head = item;
781
787
  this._state++;
782
- } else if (touch === 2) {
788
+ } else if (touch === Touch.AsNew) {
783
789
  if (item === this._tail) {
784
790
  return;
785
791
  }
@@ -833,14 +839,14 @@
833
839
  this._ratio = Math.min(Math.max(0, ratio), 1);
834
840
  this.checkTrim();
835
841
  }
836
- get(key, touch = 2) {
842
+ get(key, touch = Touch.AsNew) {
837
843
  return super.get(key, touch);
838
844
  }
839
845
  peek(key) {
840
- return super.get(key, 0);
846
+ return super.get(key, Touch.None);
841
847
  }
842
848
  set(key, value) {
843
- super.set(key, value, 2);
849
+ super.set(key, value, Touch.AsNew);
844
850
  return this;
845
851
  }
846
852
  checkTrim() {
@@ -1347,6 +1353,11 @@ ${stackTraceFormattedLines.join("\n")}
1347
1353
  this._store.get(key)?.dispose();
1348
1354
  this._store.delete(key);
1349
1355
  }
1356
+ deleteAndLeak(key) {
1357
+ const value = this._store.get(key);
1358
+ this._store.delete(key);
1359
+ return value;
1360
+ }
1350
1361
  keys() {
1351
1362
  return this._store.keys();
1352
1363
  }
@@ -1922,7 +1933,8 @@ ${stackTraceFormattedLines.join("\n")}
1922
1933
  };
1923
1934
  var _globalLeakWarningThreshold = -1;
1924
1935
  var LeakageMonitor = class {
1925
- constructor(threshold, name = Math.random().toString(18).slice(2, 5)) {
1936
+ constructor(_errorHandler, threshold, name = Math.random().toString(18).slice(2, 5)) {
1937
+ this._errorHandler = _errorHandler;
1926
1938
  this.threshold = threshold;
1927
1939
  this.name = name;
1928
1940
  this._warnCountdown = 0;
@@ -1943,26 +1955,37 @@ ${stackTraceFormattedLines.join("\n")}
1943
1955
  this._warnCountdown -= 1;
1944
1956
  if (this._warnCountdown <= 0) {
1945
1957
  this._warnCountdown = threshold * 0.5;
1946
- let topStack;
1947
- let topCount = 0;
1948
- for (const [stack2, count2] of this._stacks) {
1949
- if (!topStack || topCount < count2) {
1950
- topStack = stack2;
1951
- topCount = count2;
1952
- }
1953
- }
1954
- console.warn(`[${this.name}] potential listener LEAK detected, having ${listenerCount} listeners already. MOST frequent listener (${topCount}):`);
1958
+ const [topStack, topCount] = this.getMostFrequentStack();
1959
+ const message = `[${this.name}] potential listener LEAK detected, having ${listenerCount} listeners already. MOST frequent listener (${topCount}):`;
1960
+ console.warn(message);
1955
1961
  console.warn(topStack);
1962
+ const error = new ListenerLeakError(message, topStack);
1963
+ this._errorHandler(error);
1956
1964
  }
1957
1965
  return () => {
1958
1966
  const count2 = this._stacks.get(stack.value) || 0;
1959
1967
  this._stacks.set(stack.value, count2 - 1);
1960
1968
  };
1961
1969
  }
1970
+ getMostFrequentStack() {
1971
+ if (!this._stacks) {
1972
+ return void 0;
1973
+ }
1974
+ let topStack;
1975
+ let topCount = 0;
1976
+ for (const [stack, count] of this._stacks) {
1977
+ if (!topStack || topCount < count) {
1978
+ topStack = [stack, count];
1979
+ topCount = count;
1980
+ }
1981
+ }
1982
+ return topStack;
1983
+ }
1962
1984
  };
1963
1985
  var Stacktrace = class _Stacktrace {
1964
1986
  static create() {
1965
- return new _Stacktrace(new Error().stack ?? "");
1987
+ const err = new Error();
1988
+ return new _Stacktrace(err.stack ?? "");
1966
1989
  }
1967
1990
  constructor(value) {
1968
1991
  this.value = value;
@@ -1971,6 +1994,20 @@ ${stackTraceFormattedLines.join("\n")}
1971
1994
  console.warn(this.value.split("\n").slice(2).join("\n"));
1972
1995
  }
1973
1996
  };
1997
+ var ListenerLeakError = class extends Error {
1998
+ constructor(message, stack) {
1999
+ super(message);
2000
+ this.name = "ListenerLeakError";
2001
+ this.stack = stack;
2002
+ }
2003
+ };
2004
+ var ListenerRefusalError = class extends Error {
2005
+ constructor(message, stack) {
2006
+ super(message);
2007
+ this.name = "ListenerRefusalError";
2008
+ this.stack = stack;
2009
+ }
2010
+ };
1974
2011
  var id = 0;
1975
2012
  var UniqueContainer = class {
1976
2013
  constructor(value) {
@@ -1983,7 +2020,10 @@ ${stackTraceFormattedLines.join("\n")}
1983
2020
  constructor(options) {
1984
2021
  this._size = 0;
1985
2022
  this._options = options;
1986
- this._leakageMon = _globalLeakWarningThreshold > 0 || this._options?.leakWarningThreshold ? new LeakageMonitor(this._options?.leakWarningThreshold ?? _globalLeakWarningThreshold) : void 0;
2023
+ this._leakageMon = _globalLeakWarningThreshold > 0 || this._options?.leakWarningThreshold ? new LeakageMonitor(
2024
+ options?.onListenerError ?? onUnexpectedError,
2025
+ this._options?.leakWarningThreshold ?? _globalLeakWarningThreshold
2026
+ ) : void 0;
1987
2027
  this._perfMon = this._options?._profName ? new EventProfiling(this._options._profName) : void 0;
1988
2028
  this._deliveryQueue = this._options?.deliveryQueue;
1989
2029
  }
@@ -2003,8 +2043,16 @@ ${stackTraceFormattedLines.join("\n")}
2003
2043
  }
2004
2044
  get event() {
2005
2045
  this._event ??= (callback, thisArgs, disposables) => {
2006
- if (this._leakageMon && this._size > this._leakageMon.threshold * 3) {
2007
- console.warn(`[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far`);
2046
+ if (this._leakageMon && this._size > this._leakageMon.threshold ** 2) {
2047
+ const message = `[${this._leakageMon.name}] REFUSES to accept new listeners because it exceeded its threshold by far (${this._size} vs ${this._leakageMon.threshold})`;
2048
+ console.warn(message);
2049
+ const tuple = this._leakageMon.getMostFrequentStack() ?? ["UNKNOWN stack", -1];
2050
+ const error = new ListenerRefusalError(
2051
+ `${message}. HINT: Stack shows most frequent listener (${tuple[1]}-times)`,
2052
+ tuple[0]
2053
+ );
2054
+ const errorHandler2 = this._options?.onListenerError || onUnexpectedError;
2055
+ errorHandler2(error);
2008
2056
  return Disposable.None;
2009
2057
  }
2010
2058
  if (this._disposed) {
@@ -2220,6 +2268,7 @@ ${stackTraceFormattedLines.join("\n")}
2220
2268
  var _isWindows = false;
2221
2269
  var _isMacintosh = false;
2222
2270
  var _isLinux = false;
2271
+ var _isLinuxSnap = false;
2223
2272
  var _isNative = false;
2224
2273
  var _isWeb = false;
2225
2274
  var _isIOS = false;
@@ -2242,6 +2291,7 @@ ${stackTraceFormattedLines.join("\n")}
2242
2291
  _isWindows = nodeProcess.platform === "win32";
2243
2292
  _isMacintosh = nodeProcess.platform === "darwin";
2244
2293
  _isLinux = nodeProcess.platform === "linux";
2294
+ _isLinuxSnap = _isLinux && !!nodeProcess.env["SNAP"] && !!nodeProcess.env["SNAP_REVISION"];
2245
2295
  _isCI = !!nodeProcess.env["CI"] || !!nodeProcess.env["BUILD_ARTIFACTSTAGINGDIRECTORY"];
2246
2296
  _locale = LANGUAGE_DEFAULT;
2247
2297
  _language = LANGUAGE_DEFAULT;
@@ -2272,13 +2322,20 @@ ${stackTraceFormattedLines.join("\n")}
2272
2322
  } else {
2273
2323
  console.error("Unable to resolve platform.");
2274
2324
  }
2275
- var _platform = 0;
2325
+ var Platform;
2326
+ (function(Platform2) {
2327
+ Platform2[Platform2["Web"] = 0] = "Web";
2328
+ Platform2[Platform2["Mac"] = 1] = "Mac";
2329
+ Platform2[Platform2["Linux"] = 2] = "Linux";
2330
+ Platform2[Platform2["Windows"] = 3] = "Windows";
2331
+ })(Platform || (Platform = {}));
2332
+ var _platform = Platform.Web;
2276
2333
  if (_isMacintosh) {
2277
- _platform = 1;
2334
+ _platform = Platform.Mac;
2278
2335
  } else if (_isWindows) {
2279
- _platform = 3;
2336
+ _platform = Platform.Windows;
2280
2337
  } else if (_isLinux) {
2281
- _platform = 2;
2338
+ _platform = Platform.Linux;
2282
2339
  }
2283
2340
  var isWindows = _isWindows;
2284
2341
  var isMacintosh = _isMacintosh;
@@ -2335,6 +2392,13 @@ ${stackTraceFormattedLines.join("\n")}
2335
2392
  }
2336
2393
  return (callback) => setTimeout(callback);
2337
2394
  })();
2395
+ var OperatingSystem;
2396
+ (function(OperatingSystem2) {
2397
+ OperatingSystem2[OperatingSystem2["Windows"] = 1] = "Windows";
2398
+ OperatingSystem2[OperatingSystem2["Macintosh"] = 2] = "Macintosh";
2399
+ OperatingSystem2[OperatingSystem2["Linux"] = 3] = "Linux";
2400
+ })(OperatingSystem || (OperatingSystem = {}));
2401
+ var OS = _isMacintosh || _isIOS ? OperatingSystem.Macintosh : _isWindows ? OperatingSystem.Windows : OperatingSystem.Linux;
2338
2402
  var isChrome = !!(userAgent && userAgent.indexOf("Chrome") >= 0);
2339
2403
  var isFirefox = !!(userAgent && userAgent.indexOf("Firefox") >= 0);
2340
2404
  var isSafari = !!(!isChrome && (userAgent && userAgent.indexOf("Safari") >= 0));
@@ -2463,6 +2527,303 @@ ${stackTraceFormattedLines.join("\n")}
2463
2527
  }
2464
2528
  };
2465
2529
 
2530
+ // node_modules/vscode/vscode/src/vs/base/common/charCode.js
2531
+ var CharCode;
2532
+ (function(CharCode2) {
2533
+ CharCode2[CharCode2["Null"] = 0] = "Null";
2534
+ CharCode2[CharCode2["Backspace"] = 8] = "Backspace";
2535
+ CharCode2[CharCode2["Tab"] = 9] = "Tab";
2536
+ CharCode2[CharCode2["LineFeed"] = 10] = "LineFeed";
2537
+ CharCode2[CharCode2["CarriageReturn"] = 13] = "CarriageReturn";
2538
+ CharCode2[CharCode2["Space"] = 32] = "Space";
2539
+ CharCode2[CharCode2["ExclamationMark"] = 33] = "ExclamationMark";
2540
+ CharCode2[CharCode2["DoubleQuote"] = 34] = "DoubleQuote";
2541
+ CharCode2[CharCode2["Hash"] = 35] = "Hash";
2542
+ CharCode2[CharCode2["DollarSign"] = 36] = "DollarSign";
2543
+ CharCode2[CharCode2["PercentSign"] = 37] = "PercentSign";
2544
+ CharCode2[CharCode2["Ampersand"] = 38] = "Ampersand";
2545
+ CharCode2[CharCode2["SingleQuote"] = 39] = "SingleQuote";
2546
+ CharCode2[CharCode2["OpenParen"] = 40] = "OpenParen";
2547
+ CharCode2[CharCode2["CloseParen"] = 41] = "CloseParen";
2548
+ CharCode2[CharCode2["Asterisk"] = 42] = "Asterisk";
2549
+ CharCode2[CharCode2["Plus"] = 43] = "Plus";
2550
+ CharCode2[CharCode2["Comma"] = 44] = "Comma";
2551
+ CharCode2[CharCode2["Dash"] = 45] = "Dash";
2552
+ CharCode2[CharCode2["Period"] = 46] = "Period";
2553
+ CharCode2[CharCode2["Slash"] = 47] = "Slash";
2554
+ CharCode2[CharCode2["Digit0"] = 48] = "Digit0";
2555
+ CharCode2[CharCode2["Digit1"] = 49] = "Digit1";
2556
+ CharCode2[CharCode2["Digit2"] = 50] = "Digit2";
2557
+ CharCode2[CharCode2["Digit3"] = 51] = "Digit3";
2558
+ CharCode2[CharCode2["Digit4"] = 52] = "Digit4";
2559
+ CharCode2[CharCode2["Digit5"] = 53] = "Digit5";
2560
+ CharCode2[CharCode2["Digit6"] = 54] = "Digit6";
2561
+ CharCode2[CharCode2["Digit7"] = 55] = "Digit7";
2562
+ CharCode2[CharCode2["Digit8"] = 56] = "Digit8";
2563
+ CharCode2[CharCode2["Digit9"] = 57] = "Digit9";
2564
+ CharCode2[CharCode2["Colon"] = 58] = "Colon";
2565
+ CharCode2[CharCode2["Semicolon"] = 59] = "Semicolon";
2566
+ CharCode2[CharCode2["LessThan"] = 60] = "LessThan";
2567
+ CharCode2[CharCode2["Equals"] = 61] = "Equals";
2568
+ CharCode2[CharCode2["GreaterThan"] = 62] = "GreaterThan";
2569
+ CharCode2[CharCode2["QuestionMark"] = 63] = "QuestionMark";
2570
+ CharCode2[CharCode2["AtSign"] = 64] = "AtSign";
2571
+ CharCode2[CharCode2["A"] = 65] = "A";
2572
+ CharCode2[CharCode2["B"] = 66] = "B";
2573
+ CharCode2[CharCode2["C"] = 67] = "C";
2574
+ CharCode2[CharCode2["D"] = 68] = "D";
2575
+ CharCode2[CharCode2["E"] = 69] = "E";
2576
+ CharCode2[CharCode2["F"] = 70] = "F";
2577
+ CharCode2[CharCode2["G"] = 71] = "G";
2578
+ CharCode2[CharCode2["H"] = 72] = "H";
2579
+ CharCode2[CharCode2["I"] = 73] = "I";
2580
+ CharCode2[CharCode2["J"] = 74] = "J";
2581
+ CharCode2[CharCode2["K"] = 75] = "K";
2582
+ CharCode2[CharCode2["L"] = 76] = "L";
2583
+ CharCode2[CharCode2["M"] = 77] = "M";
2584
+ CharCode2[CharCode2["N"] = 78] = "N";
2585
+ CharCode2[CharCode2["O"] = 79] = "O";
2586
+ CharCode2[CharCode2["P"] = 80] = "P";
2587
+ CharCode2[CharCode2["Q"] = 81] = "Q";
2588
+ CharCode2[CharCode2["R"] = 82] = "R";
2589
+ CharCode2[CharCode2["S"] = 83] = "S";
2590
+ CharCode2[CharCode2["T"] = 84] = "T";
2591
+ CharCode2[CharCode2["U"] = 85] = "U";
2592
+ CharCode2[CharCode2["V"] = 86] = "V";
2593
+ CharCode2[CharCode2["W"] = 87] = "W";
2594
+ CharCode2[CharCode2["X"] = 88] = "X";
2595
+ CharCode2[CharCode2["Y"] = 89] = "Y";
2596
+ CharCode2[CharCode2["Z"] = 90] = "Z";
2597
+ CharCode2[CharCode2["OpenSquareBracket"] = 91] = "OpenSquareBracket";
2598
+ CharCode2[CharCode2["Backslash"] = 92] = "Backslash";
2599
+ CharCode2[CharCode2["CloseSquareBracket"] = 93] = "CloseSquareBracket";
2600
+ CharCode2[CharCode2["Caret"] = 94] = "Caret";
2601
+ CharCode2[CharCode2["Underline"] = 95] = "Underline";
2602
+ CharCode2[CharCode2["BackTick"] = 96] = "BackTick";
2603
+ CharCode2[CharCode2["a"] = 97] = "a";
2604
+ CharCode2[CharCode2["b"] = 98] = "b";
2605
+ CharCode2[CharCode2["c"] = 99] = "c";
2606
+ CharCode2[CharCode2["d"] = 100] = "d";
2607
+ CharCode2[CharCode2["e"] = 101] = "e";
2608
+ CharCode2[CharCode2["f"] = 102] = "f";
2609
+ CharCode2[CharCode2["g"] = 103] = "g";
2610
+ CharCode2[CharCode2["h"] = 104] = "h";
2611
+ CharCode2[CharCode2["i"] = 105] = "i";
2612
+ CharCode2[CharCode2["j"] = 106] = "j";
2613
+ CharCode2[CharCode2["k"] = 107] = "k";
2614
+ CharCode2[CharCode2["l"] = 108] = "l";
2615
+ CharCode2[CharCode2["m"] = 109] = "m";
2616
+ CharCode2[CharCode2["n"] = 110] = "n";
2617
+ CharCode2[CharCode2["o"] = 111] = "o";
2618
+ CharCode2[CharCode2["p"] = 112] = "p";
2619
+ CharCode2[CharCode2["q"] = 113] = "q";
2620
+ CharCode2[CharCode2["r"] = 114] = "r";
2621
+ CharCode2[CharCode2["s"] = 115] = "s";
2622
+ CharCode2[CharCode2["t"] = 116] = "t";
2623
+ CharCode2[CharCode2["u"] = 117] = "u";
2624
+ CharCode2[CharCode2["v"] = 118] = "v";
2625
+ CharCode2[CharCode2["w"] = 119] = "w";
2626
+ CharCode2[CharCode2["x"] = 120] = "x";
2627
+ CharCode2[CharCode2["y"] = 121] = "y";
2628
+ CharCode2[CharCode2["z"] = 122] = "z";
2629
+ CharCode2[CharCode2["OpenCurlyBrace"] = 123] = "OpenCurlyBrace";
2630
+ CharCode2[CharCode2["Pipe"] = 124] = "Pipe";
2631
+ CharCode2[CharCode2["CloseCurlyBrace"] = 125] = "CloseCurlyBrace";
2632
+ CharCode2[CharCode2["Tilde"] = 126] = "Tilde";
2633
+ CharCode2[CharCode2["NoBreakSpace"] = 160] = "NoBreakSpace";
2634
+ CharCode2[CharCode2["U_Combining_Grave_Accent"] = 768] = "U_Combining_Grave_Accent";
2635
+ CharCode2[CharCode2["U_Combining_Acute_Accent"] = 769] = "U_Combining_Acute_Accent";
2636
+ CharCode2[CharCode2["U_Combining_Circumflex_Accent"] = 770] = "U_Combining_Circumflex_Accent";
2637
+ CharCode2[CharCode2["U_Combining_Tilde"] = 771] = "U_Combining_Tilde";
2638
+ CharCode2[CharCode2["U_Combining_Macron"] = 772] = "U_Combining_Macron";
2639
+ CharCode2[CharCode2["U_Combining_Overline"] = 773] = "U_Combining_Overline";
2640
+ CharCode2[CharCode2["U_Combining_Breve"] = 774] = "U_Combining_Breve";
2641
+ CharCode2[CharCode2["U_Combining_Dot_Above"] = 775] = "U_Combining_Dot_Above";
2642
+ CharCode2[CharCode2["U_Combining_Diaeresis"] = 776] = "U_Combining_Diaeresis";
2643
+ CharCode2[CharCode2["U_Combining_Hook_Above"] = 777] = "U_Combining_Hook_Above";
2644
+ CharCode2[CharCode2["U_Combining_Ring_Above"] = 778] = "U_Combining_Ring_Above";
2645
+ CharCode2[CharCode2["U_Combining_Double_Acute_Accent"] = 779] = "U_Combining_Double_Acute_Accent";
2646
+ CharCode2[CharCode2["U_Combining_Caron"] = 780] = "U_Combining_Caron";
2647
+ CharCode2[CharCode2["U_Combining_Vertical_Line_Above"] = 781] = "U_Combining_Vertical_Line_Above";
2648
+ CharCode2[CharCode2["U_Combining_Double_Vertical_Line_Above"] = 782] = "U_Combining_Double_Vertical_Line_Above";
2649
+ CharCode2[CharCode2["U_Combining_Double_Grave_Accent"] = 783] = "U_Combining_Double_Grave_Accent";
2650
+ CharCode2[CharCode2["U_Combining_Candrabindu"] = 784] = "U_Combining_Candrabindu";
2651
+ CharCode2[CharCode2["U_Combining_Inverted_Breve"] = 785] = "U_Combining_Inverted_Breve";
2652
+ CharCode2[CharCode2["U_Combining_Turned_Comma_Above"] = 786] = "U_Combining_Turned_Comma_Above";
2653
+ CharCode2[CharCode2["U_Combining_Comma_Above"] = 787] = "U_Combining_Comma_Above";
2654
+ CharCode2[CharCode2["U_Combining_Reversed_Comma_Above"] = 788] = "U_Combining_Reversed_Comma_Above";
2655
+ CharCode2[CharCode2["U_Combining_Comma_Above_Right"] = 789] = "U_Combining_Comma_Above_Right";
2656
+ CharCode2[CharCode2["U_Combining_Grave_Accent_Below"] = 790] = "U_Combining_Grave_Accent_Below";
2657
+ CharCode2[CharCode2["U_Combining_Acute_Accent_Below"] = 791] = "U_Combining_Acute_Accent_Below";
2658
+ CharCode2[CharCode2["U_Combining_Left_Tack_Below"] = 792] = "U_Combining_Left_Tack_Below";
2659
+ CharCode2[CharCode2["U_Combining_Right_Tack_Below"] = 793] = "U_Combining_Right_Tack_Below";
2660
+ CharCode2[CharCode2["U_Combining_Left_Angle_Above"] = 794] = "U_Combining_Left_Angle_Above";
2661
+ CharCode2[CharCode2["U_Combining_Horn"] = 795] = "U_Combining_Horn";
2662
+ CharCode2[CharCode2["U_Combining_Left_Half_Ring_Below"] = 796] = "U_Combining_Left_Half_Ring_Below";
2663
+ CharCode2[CharCode2["U_Combining_Up_Tack_Below"] = 797] = "U_Combining_Up_Tack_Below";
2664
+ CharCode2[CharCode2["U_Combining_Down_Tack_Below"] = 798] = "U_Combining_Down_Tack_Below";
2665
+ CharCode2[CharCode2["U_Combining_Plus_Sign_Below"] = 799] = "U_Combining_Plus_Sign_Below";
2666
+ CharCode2[CharCode2["U_Combining_Minus_Sign_Below"] = 800] = "U_Combining_Minus_Sign_Below";
2667
+ CharCode2[CharCode2["U_Combining_Palatalized_Hook_Below"] = 801] = "U_Combining_Palatalized_Hook_Below";
2668
+ CharCode2[CharCode2["U_Combining_Retroflex_Hook_Below"] = 802] = "U_Combining_Retroflex_Hook_Below";
2669
+ CharCode2[CharCode2["U_Combining_Dot_Below"] = 803] = "U_Combining_Dot_Below";
2670
+ CharCode2[CharCode2["U_Combining_Diaeresis_Below"] = 804] = "U_Combining_Diaeresis_Below";
2671
+ CharCode2[CharCode2["U_Combining_Ring_Below"] = 805] = "U_Combining_Ring_Below";
2672
+ CharCode2[CharCode2["U_Combining_Comma_Below"] = 806] = "U_Combining_Comma_Below";
2673
+ CharCode2[CharCode2["U_Combining_Cedilla"] = 807] = "U_Combining_Cedilla";
2674
+ CharCode2[CharCode2["U_Combining_Ogonek"] = 808] = "U_Combining_Ogonek";
2675
+ CharCode2[CharCode2["U_Combining_Vertical_Line_Below"] = 809] = "U_Combining_Vertical_Line_Below";
2676
+ CharCode2[CharCode2["U_Combining_Bridge_Below"] = 810] = "U_Combining_Bridge_Below";
2677
+ CharCode2[CharCode2["U_Combining_Inverted_Double_Arch_Below"] = 811] = "U_Combining_Inverted_Double_Arch_Below";
2678
+ CharCode2[CharCode2["U_Combining_Caron_Below"] = 812] = "U_Combining_Caron_Below";
2679
+ CharCode2[CharCode2["U_Combining_Circumflex_Accent_Below"] = 813] = "U_Combining_Circumflex_Accent_Below";
2680
+ CharCode2[CharCode2["U_Combining_Breve_Below"] = 814] = "U_Combining_Breve_Below";
2681
+ CharCode2[CharCode2["U_Combining_Inverted_Breve_Below"] = 815] = "U_Combining_Inverted_Breve_Below";
2682
+ CharCode2[CharCode2["U_Combining_Tilde_Below"] = 816] = "U_Combining_Tilde_Below";
2683
+ CharCode2[CharCode2["U_Combining_Macron_Below"] = 817] = "U_Combining_Macron_Below";
2684
+ CharCode2[CharCode2["U_Combining_Low_Line"] = 818] = "U_Combining_Low_Line";
2685
+ CharCode2[CharCode2["U_Combining_Double_Low_Line"] = 819] = "U_Combining_Double_Low_Line";
2686
+ CharCode2[CharCode2["U_Combining_Tilde_Overlay"] = 820] = "U_Combining_Tilde_Overlay";
2687
+ CharCode2[CharCode2["U_Combining_Short_Stroke_Overlay"] = 821] = "U_Combining_Short_Stroke_Overlay";
2688
+ CharCode2[CharCode2["U_Combining_Long_Stroke_Overlay"] = 822] = "U_Combining_Long_Stroke_Overlay";
2689
+ CharCode2[CharCode2["U_Combining_Short_Solidus_Overlay"] = 823] = "U_Combining_Short_Solidus_Overlay";
2690
+ CharCode2[CharCode2["U_Combining_Long_Solidus_Overlay"] = 824] = "U_Combining_Long_Solidus_Overlay";
2691
+ CharCode2[CharCode2["U_Combining_Right_Half_Ring_Below"] = 825] = "U_Combining_Right_Half_Ring_Below";
2692
+ CharCode2[CharCode2["U_Combining_Inverted_Bridge_Below"] = 826] = "U_Combining_Inverted_Bridge_Below";
2693
+ CharCode2[CharCode2["U_Combining_Square_Below"] = 827] = "U_Combining_Square_Below";
2694
+ CharCode2[CharCode2["U_Combining_Seagull_Below"] = 828] = "U_Combining_Seagull_Below";
2695
+ CharCode2[CharCode2["U_Combining_X_Above"] = 829] = "U_Combining_X_Above";
2696
+ CharCode2[CharCode2["U_Combining_Vertical_Tilde"] = 830] = "U_Combining_Vertical_Tilde";
2697
+ CharCode2[CharCode2["U_Combining_Double_Overline"] = 831] = "U_Combining_Double_Overline";
2698
+ CharCode2[CharCode2["U_Combining_Grave_Tone_Mark"] = 832] = "U_Combining_Grave_Tone_Mark";
2699
+ CharCode2[CharCode2["U_Combining_Acute_Tone_Mark"] = 833] = "U_Combining_Acute_Tone_Mark";
2700
+ CharCode2[CharCode2["U_Combining_Greek_Perispomeni"] = 834] = "U_Combining_Greek_Perispomeni";
2701
+ CharCode2[CharCode2["U_Combining_Greek_Koronis"] = 835] = "U_Combining_Greek_Koronis";
2702
+ CharCode2[CharCode2["U_Combining_Greek_Dialytika_Tonos"] = 836] = "U_Combining_Greek_Dialytika_Tonos";
2703
+ CharCode2[CharCode2["U_Combining_Greek_Ypogegrammeni"] = 837] = "U_Combining_Greek_Ypogegrammeni";
2704
+ CharCode2[CharCode2["U_Combining_Bridge_Above"] = 838] = "U_Combining_Bridge_Above";
2705
+ CharCode2[CharCode2["U_Combining_Equals_Sign_Below"] = 839] = "U_Combining_Equals_Sign_Below";
2706
+ CharCode2[CharCode2["U_Combining_Double_Vertical_Line_Below"] = 840] = "U_Combining_Double_Vertical_Line_Below";
2707
+ CharCode2[CharCode2["U_Combining_Left_Angle_Below"] = 841] = "U_Combining_Left_Angle_Below";
2708
+ CharCode2[CharCode2["U_Combining_Not_Tilde_Above"] = 842] = "U_Combining_Not_Tilde_Above";
2709
+ CharCode2[CharCode2["U_Combining_Homothetic_Above"] = 843] = "U_Combining_Homothetic_Above";
2710
+ CharCode2[CharCode2["U_Combining_Almost_Equal_To_Above"] = 844] = "U_Combining_Almost_Equal_To_Above";
2711
+ CharCode2[CharCode2["U_Combining_Left_Right_Arrow_Below"] = 845] = "U_Combining_Left_Right_Arrow_Below";
2712
+ CharCode2[CharCode2["U_Combining_Upwards_Arrow_Below"] = 846] = "U_Combining_Upwards_Arrow_Below";
2713
+ CharCode2[CharCode2["U_Combining_Grapheme_Joiner"] = 847] = "U_Combining_Grapheme_Joiner";
2714
+ CharCode2[CharCode2["U_Combining_Right_Arrowhead_Above"] = 848] = "U_Combining_Right_Arrowhead_Above";
2715
+ CharCode2[CharCode2["U_Combining_Left_Half_Ring_Above"] = 849] = "U_Combining_Left_Half_Ring_Above";
2716
+ CharCode2[CharCode2["U_Combining_Fermata"] = 850] = "U_Combining_Fermata";
2717
+ CharCode2[CharCode2["U_Combining_X_Below"] = 851] = "U_Combining_X_Below";
2718
+ CharCode2[CharCode2["U_Combining_Left_Arrowhead_Below"] = 852] = "U_Combining_Left_Arrowhead_Below";
2719
+ CharCode2[CharCode2["U_Combining_Right_Arrowhead_Below"] = 853] = "U_Combining_Right_Arrowhead_Below";
2720
+ CharCode2[CharCode2["U_Combining_Right_Arrowhead_And_Up_Arrowhead_Below"] = 854] = "U_Combining_Right_Arrowhead_And_Up_Arrowhead_Below";
2721
+ CharCode2[CharCode2["U_Combining_Right_Half_Ring_Above"] = 855] = "U_Combining_Right_Half_Ring_Above";
2722
+ CharCode2[CharCode2["U_Combining_Dot_Above_Right"] = 856] = "U_Combining_Dot_Above_Right";
2723
+ CharCode2[CharCode2["U_Combining_Asterisk_Below"] = 857] = "U_Combining_Asterisk_Below";
2724
+ CharCode2[CharCode2["U_Combining_Double_Ring_Below"] = 858] = "U_Combining_Double_Ring_Below";
2725
+ CharCode2[CharCode2["U_Combining_Zigzag_Above"] = 859] = "U_Combining_Zigzag_Above";
2726
+ CharCode2[CharCode2["U_Combining_Double_Breve_Below"] = 860] = "U_Combining_Double_Breve_Below";
2727
+ CharCode2[CharCode2["U_Combining_Double_Breve"] = 861] = "U_Combining_Double_Breve";
2728
+ CharCode2[CharCode2["U_Combining_Double_Macron"] = 862] = "U_Combining_Double_Macron";
2729
+ CharCode2[CharCode2["U_Combining_Double_Macron_Below"] = 863] = "U_Combining_Double_Macron_Below";
2730
+ CharCode2[CharCode2["U_Combining_Double_Tilde"] = 864] = "U_Combining_Double_Tilde";
2731
+ CharCode2[CharCode2["U_Combining_Double_Inverted_Breve"] = 865] = "U_Combining_Double_Inverted_Breve";
2732
+ CharCode2[CharCode2["U_Combining_Double_Rightwards_Arrow_Below"] = 866] = "U_Combining_Double_Rightwards_Arrow_Below";
2733
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_A"] = 867] = "U_Combining_Latin_Small_Letter_A";
2734
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_E"] = 868] = "U_Combining_Latin_Small_Letter_E";
2735
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_I"] = 869] = "U_Combining_Latin_Small_Letter_I";
2736
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_O"] = 870] = "U_Combining_Latin_Small_Letter_O";
2737
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_U"] = 871] = "U_Combining_Latin_Small_Letter_U";
2738
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_C"] = 872] = "U_Combining_Latin_Small_Letter_C";
2739
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_D"] = 873] = "U_Combining_Latin_Small_Letter_D";
2740
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_H"] = 874] = "U_Combining_Latin_Small_Letter_H";
2741
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_M"] = 875] = "U_Combining_Latin_Small_Letter_M";
2742
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_R"] = 876] = "U_Combining_Latin_Small_Letter_R";
2743
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_T"] = 877] = "U_Combining_Latin_Small_Letter_T";
2744
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_V"] = 878] = "U_Combining_Latin_Small_Letter_V";
2745
+ CharCode2[CharCode2["U_Combining_Latin_Small_Letter_X"] = 879] = "U_Combining_Latin_Small_Letter_X";
2746
+ CharCode2[CharCode2["LINE_SEPARATOR"] = 8232] = "LINE_SEPARATOR";
2747
+ CharCode2[CharCode2["PARAGRAPH_SEPARATOR"] = 8233] = "PARAGRAPH_SEPARATOR";
2748
+ CharCode2[CharCode2["NEXT_LINE"] = 133] = "NEXT_LINE";
2749
+ CharCode2[CharCode2["U_CIRCUMFLEX"] = 94] = "U_CIRCUMFLEX";
2750
+ CharCode2[CharCode2["U_GRAVE_ACCENT"] = 96] = "U_GRAVE_ACCENT";
2751
+ CharCode2[CharCode2["U_DIAERESIS"] = 168] = "U_DIAERESIS";
2752
+ CharCode2[CharCode2["U_MACRON"] = 175] = "U_MACRON";
2753
+ CharCode2[CharCode2["U_ACUTE_ACCENT"] = 180] = "U_ACUTE_ACCENT";
2754
+ CharCode2[CharCode2["U_CEDILLA"] = 184] = "U_CEDILLA";
2755
+ CharCode2[CharCode2["U_MODIFIER_LETTER_LEFT_ARROWHEAD"] = 706] = "U_MODIFIER_LETTER_LEFT_ARROWHEAD";
2756
+ CharCode2[CharCode2["U_MODIFIER_LETTER_RIGHT_ARROWHEAD"] = 707] = "U_MODIFIER_LETTER_RIGHT_ARROWHEAD";
2757
+ CharCode2[CharCode2["U_MODIFIER_LETTER_UP_ARROWHEAD"] = 708] = "U_MODIFIER_LETTER_UP_ARROWHEAD";
2758
+ CharCode2[CharCode2["U_MODIFIER_LETTER_DOWN_ARROWHEAD"] = 709] = "U_MODIFIER_LETTER_DOWN_ARROWHEAD";
2759
+ CharCode2[CharCode2["U_MODIFIER_LETTER_CENTRED_RIGHT_HALF_RING"] = 722] = "U_MODIFIER_LETTER_CENTRED_RIGHT_HALF_RING";
2760
+ CharCode2[CharCode2["U_MODIFIER_LETTER_CENTRED_LEFT_HALF_RING"] = 723] = "U_MODIFIER_LETTER_CENTRED_LEFT_HALF_RING";
2761
+ CharCode2[CharCode2["U_MODIFIER_LETTER_UP_TACK"] = 724] = "U_MODIFIER_LETTER_UP_TACK";
2762
+ CharCode2[CharCode2["U_MODIFIER_LETTER_DOWN_TACK"] = 725] = "U_MODIFIER_LETTER_DOWN_TACK";
2763
+ CharCode2[CharCode2["U_MODIFIER_LETTER_PLUS_SIGN"] = 726] = "U_MODIFIER_LETTER_PLUS_SIGN";
2764
+ CharCode2[CharCode2["U_MODIFIER_LETTER_MINUS_SIGN"] = 727] = "U_MODIFIER_LETTER_MINUS_SIGN";
2765
+ CharCode2[CharCode2["U_BREVE"] = 728] = "U_BREVE";
2766
+ CharCode2[CharCode2["U_DOT_ABOVE"] = 729] = "U_DOT_ABOVE";
2767
+ CharCode2[CharCode2["U_RING_ABOVE"] = 730] = "U_RING_ABOVE";
2768
+ CharCode2[CharCode2["U_OGONEK"] = 731] = "U_OGONEK";
2769
+ CharCode2[CharCode2["U_SMALL_TILDE"] = 732] = "U_SMALL_TILDE";
2770
+ CharCode2[CharCode2["U_DOUBLE_ACUTE_ACCENT"] = 733] = "U_DOUBLE_ACUTE_ACCENT";
2771
+ CharCode2[CharCode2["U_MODIFIER_LETTER_RHOTIC_HOOK"] = 734] = "U_MODIFIER_LETTER_RHOTIC_HOOK";
2772
+ CharCode2[CharCode2["U_MODIFIER_LETTER_CROSS_ACCENT"] = 735] = "U_MODIFIER_LETTER_CROSS_ACCENT";
2773
+ CharCode2[CharCode2["U_MODIFIER_LETTER_EXTRA_HIGH_TONE_BAR"] = 741] = "U_MODIFIER_LETTER_EXTRA_HIGH_TONE_BAR";
2774
+ CharCode2[CharCode2["U_MODIFIER_LETTER_HIGH_TONE_BAR"] = 742] = "U_MODIFIER_LETTER_HIGH_TONE_BAR";
2775
+ CharCode2[CharCode2["U_MODIFIER_LETTER_MID_TONE_BAR"] = 743] = "U_MODIFIER_LETTER_MID_TONE_BAR";
2776
+ CharCode2[CharCode2["U_MODIFIER_LETTER_LOW_TONE_BAR"] = 744] = "U_MODIFIER_LETTER_LOW_TONE_BAR";
2777
+ CharCode2[CharCode2["U_MODIFIER_LETTER_EXTRA_LOW_TONE_BAR"] = 745] = "U_MODIFIER_LETTER_EXTRA_LOW_TONE_BAR";
2778
+ CharCode2[CharCode2["U_MODIFIER_LETTER_YIN_DEPARTING_TONE_MARK"] = 746] = "U_MODIFIER_LETTER_YIN_DEPARTING_TONE_MARK";
2779
+ CharCode2[CharCode2["U_MODIFIER_LETTER_YANG_DEPARTING_TONE_MARK"] = 747] = "U_MODIFIER_LETTER_YANG_DEPARTING_TONE_MARK";
2780
+ CharCode2[CharCode2["U_MODIFIER_LETTER_UNASPIRATED"] = 749] = "U_MODIFIER_LETTER_UNASPIRATED";
2781
+ CharCode2[CharCode2["U_MODIFIER_LETTER_LOW_DOWN_ARROWHEAD"] = 751] = "U_MODIFIER_LETTER_LOW_DOWN_ARROWHEAD";
2782
+ CharCode2[CharCode2["U_MODIFIER_LETTER_LOW_UP_ARROWHEAD"] = 752] = "U_MODIFIER_LETTER_LOW_UP_ARROWHEAD";
2783
+ CharCode2[CharCode2["U_MODIFIER_LETTER_LOW_LEFT_ARROWHEAD"] = 753] = "U_MODIFIER_LETTER_LOW_LEFT_ARROWHEAD";
2784
+ CharCode2[CharCode2["U_MODIFIER_LETTER_LOW_RIGHT_ARROWHEAD"] = 754] = "U_MODIFIER_LETTER_LOW_RIGHT_ARROWHEAD";
2785
+ CharCode2[CharCode2["U_MODIFIER_LETTER_LOW_RING"] = 755] = "U_MODIFIER_LETTER_LOW_RING";
2786
+ CharCode2[CharCode2["U_MODIFIER_LETTER_MIDDLE_GRAVE_ACCENT"] = 756] = "U_MODIFIER_LETTER_MIDDLE_GRAVE_ACCENT";
2787
+ CharCode2[CharCode2["U_MODIFIER_LETTER_MIDDLE_DOUBLE_GRAVE_ACCENT"] = 757] = "U_MODIFIER_LETTER_MIDDLE_DOUBLE_GRAVE_ACCENT";
2788
+ CharCode2[CharCode2["U_MODIFIER_LETTER_MIDDLE_DOUBLE_ACUTE_ACCENT"] = 758] = "U_MODIFIER_LETTER_MIDDLE_DOUBLE_ACUTE_ACCENT";
2789
+ CharCode2[CharCode2["U_MODIFIER_LETTER_LOW_TILDE"] = 759] = "U_MODIFIER_LETTER_LOW_TILDE";
2790
+ CharCode2[CharCode2["U_MODIFIER_LETTER_RAISED_COLON"] = 760] = "U_MODIFIER_LETTER_RAISED_COLON";
2791
+ CharCode2[CharCode2["U_MODIFIER_LETTER_BEGIN_HIGH_TONE"] = 761] = "U_MODIFIER_LETTER_BEGIN_HIGH_TONE";
2792
+ CharCode2[CharCode2["U_MODIFIER_LETTER_END_HIGH_TONE"] = 762] = "U_MODIFIER_LETTER_END_HIGH_TONE";
2793
+ CharCode2[CharCode2["U_MODIFIER_LETTER_BEGIN_LOW_TONE"] = 763] = "U_MODIFIER_LETTER_BEGIN_LOW_TONE";
2794
+ CharCode2[CharCode2["U_MODIFIER_LETTER_END_LOW_TONE"] = 764] = "U_MODIFIER_LETTER_END_LOW_TONE";
2795
+ CharCode2[CharCode2["U_MODIFIER_LETTER_SHELF"] = 765] = "U_MODIFIER_LETTER_SHELF";
2796
+ CharCode2[CharCode2["U_MODIFIER_LETTER_OPEN_SHELF"] = 766] = "U_MODIFIER_LETTER_OPEN_SHELF";
2797
+ CharCode2[CharCode2["U_MODIFIER_LETTER_LOW_LEFT_ARROW"] = 767] = "U_MODIFIER_LETTER_LOW_LEFT_ARROW";
2798
+ CharCode2[CharCode2["U_GREEK_LOWER_NUMERAL_SIGN"] = 885] = "U_GREEK_LOWER_NUMERAL_SIGN";
2799
+ CharCode2[CharCode2["U_GREEK_TONOS"] = 900] = "U_GREEK_TONOS";
2800
+ CharCode2[CharCode2["U_GREEK_DIALYTIKA_TONOS"] = 901] = "U_GREEK_DIALYTIKA_TONOS";
2801
+ CharCode2[CharCode2["U_GREEK_KORONIS"] = 8125] = "U_GREEK_KORONIS";
2802
+ CharCode2[CharCode2["U_GREEK_PSILI"] = 8127] = "U_GREEK_PSILI";
2803
+ CharCode2[CharCode2["U_GREEK_PERISPOMENI"] = 8128] = "U_GREEK_PERISPOMENI";
2804
+ CharCode2[CharCode2["U_GREEK_DIALYTIKA_AND_PERISPOMENI"] = 8129] = "U_GREEK_DIALYTIKA_AND_PERISPOMENI";
2805
+ CharCode2[CharCode2["U_GREEK_PSILI_AND_VARIA"] = 8141] = "U_GREEK_PSILI_AND_VARIA";
2806
+ CharCode2[CharCode2["U_GREEK_PSILI_AND_OXIA"] = 8142] = "U_GREEK_PSILI_AND_OXIA";
2807
+ CharCode2[CharCode2["U_GREEK_PSILI_AND_PERISPOMENI"] = 8143] = "U_GREEK_PSILI_AND_PERISPOMENI";
2808
+ CharCode2[CharCode2["U_GREEK_DASIA_AND_VARIA"] = 8157] = "U_GREEK_DASIA_AND_VARIA";
2809
+ CharCode2[CharCode2["U_GREEK_DASIA_AND_OXIA"] = 8158] = "U_GREEK_DASIA_AND_OXIA";
2810
+ CharCode2[CharCode2["U_GREEK_DASIA_AND_PERISPOMENI"] = 8159] = "U_GREEK_DASIA_AND_PERISPOMENI";
2811
+ CharCode2[CharCode2["U_GREEK_DIALYTIKA_AND_VARIA"] = 8173] = "U_GREEK_DIALYTIKA_AND_VARIA";
2812
+ CharCode2[CharCode2["U_GREEK_DIALYTIKA_AND_OXIA"] = 8174] = "U_GREEK_DIALYTIKA_AND_OXIA";
2813
+ CharCode2[CharCode2["U_GREEK_VARIA"] = 8175] = "U_GREEK_VARIA";
2814
+ CharCode2[CharCode2["U_GREEK_OXIA"] = 8189] = "U_GREEK_OXIA";
2815
+ CharCode2[CharCode2["U_GREEK_DASIA"] = 8190] = "U_GREEK_DASIA";
2816
+ CharCode2[CharCode2["U_IDEOGRAPHIC_FULL_STOP"] = 12290] = "U_IDEOGRAPHIC_FULL_STOP";
2817
+ CharCode2[CharCode2["U_LEFT_CORNER_BRACKET"] = 12300] = "U_LEFT_CORNER_BRACKET";
2818
+ CharCode2[CharCode2["U_RIGHT_CORNER_BRACKET"] = 12301] = "U_RIGHT_CORNER_BRACKET";
2819
+ CharCode2[CharCode2["U_LEFT_BLACK_LENTICULAR_BRACKET"] = 12304] = "U_LEFT_BLACK_LENTICULAR_BRACKET";
2820
+ CharCode2[CharCode2["U_RIGHT_BLACK_LENTICULAR_BRACKET"] = 12305] = "U_RIGHT_BLACK_LENTICULAR_BRACKET";
2821
+ CharCode2[CharCode2["U_OVERLINE"] = 8254] = "U_OVERLINE";
2822
+ CharCode2[CharCode2["UTF8_BOM"] = 65279] = "UTF8_BOM";
2823
+ CharCode2[CharCode2["U_FULLWIDTH_SEMICOLON"] = 65307] = "U_FULLWIDTH_SEMICOLON";
2824
+ CharCode2[CharCode2["U_FULLWIDTH_COMMA"] = 65292] = "U_FULLWIDTH_COMMA";
2825
+ })(CharCode || (CharCode = {}));
2826
+
2466
2827
  // node_modules/vscode/vscode/src/vs/base/common/lazy.js
2467
2828
  var Lazy = class {
2468
2829
  constructor(executor) {
@@ -2492,6 +2853,35 @@ ${stackTraceFormattedLines.join("\n")}
2492
2853
  }
2493
2854
  };
2494
2855
 
2856
+ // node_modules/vscode/vscode/src/vs/base/common/uint.js
2857
+ var Constants;
2858
+ (function(Constants2) {
2859
+ Constants2[Constants2["MAX_SAFE_SMALL_INTEGER"] = 1073741824] = "MAX_SAFE_SMALL_INTEGER";
2860
+ Constants2[Constants2["MIN_SAFE_SMALL_INTEGER"] = -1073741824] = "MIN_SAFE_SMALL_INTEGER";
2861
+ Constants2[Constants2["MAX_UINT_8"] = 255] = "MAX_UINT_8";
2862
+ Constants2[Constants2["MAX_UINT_16"] = 65535] = "MAX_UINT_16";
2863
+ Constants2[Constants2["MAX_UINT_32"] = 4294967295] = "MAX_UINT_32";
2864
+ Constants2[Constants2["UNICODE_SUPPLEMENTARY_PLANE_BEGIN"] = 65536] = "UNICODE_SUPPLEMENTARY_PLANE_BEGIN";
2865
+ })(Constants || (Constants = {}));
2866
+ function toUint8(v) {
2867
+ if (v < 0) {
2868
+ return 0;
2869
+ }
2870
+ if (v > Constants.MAX_UINT_8) {
2871
+ return Constants.MAX_UINT_8;
2872
+ }
2873
+ return v | 0;
2874
+ }
2875
+ function toUint32(v) {
2876
+ if (v < 0) {
2877
+ return 0;
2878
+ }
2879
+ if (v > Constants.MAX_UINT_32) {
2880
+ return Constants.MAX_UINT_32;
2881
+ }
2882
+ return v | 0;
2883
+ }
2884
+
2495
2885
  // node_modules/vscode/vscode/src/vs/base/common/strings.js
2496
2886
  function escapeRegExpCharacters(value) {
2497
2887
  return value.replace(/[\\\{\}\*\+\?\|\^\$\.\[\]\(\)]/g, "\\$&");
@@ -2502,7 +2892,7 @@ ${stackTraceFormattedLines.join("\n")}
2502
2892
  function firstNonWhitespaceIndex(str) {
2503
2893
  for (let i = 0, len = str.length; i < len; i++) {
2504
2894
  const chCode = str.charCodeAt(i);
2505
- if (chCode !== 32 && chCode !== 9) {
2895
+ if (chCode !== CharCode.Space && chCode !== CharCode.Tab) {
2506
2896
  return i;
2507
2897
  }
2508
2898
  }
@@ -2511,14 +2901,14 @@ ${stackTraceFormattedLines.join("\n")}
2511
2901
  function lastNonWhitespaceIndex(str, startIndex = str.length - 1) {
2512
2902
  for (let i = startIndex; i >= 0; i--) {
2513
2903
  const chCode = str.charCodeAt(i);
2514
- if (chCode !== 32 && chCode !== 9) {
2904
+ if (chCode !== CharCode.Space && chCode !== CharCode.Tab) {
2515
2905
  return i;
2516
2906
  }
2517
2907
  }
2518
2908
  return -1;
2519
2909
  }
2520
2910
  function isUpperAsciiLetter(code) {
2521
- return code >= 65 && code <= 90;
2911
+ return code >= CharCode.A && code <= CharCode.Z;
2522
2912
  }
2523
2913
  function isHighSurrogate(charCode) {
2524
2914
  return 55296 <= charCode && charCode <= 56319;
@@ -2543,7 +2933,25 @@ ${stackTraceFormattedLines.join("\n")}
2543
2933
  function isBasicASCII(str) {
2544
2934
  return IS_BASIC_ASCII.test(str);
2545
2935
  }
2546
- var UTF8_BOM_CHARACTER = String.fromCharCode(65279);
2936
+ var UTF8_BOM_CHARACTER = String.fromCharCode(CharCode.UTF8_BOM);
2937
+ var GraphemeBreakType;
2938
+ (function(GraphemeBreakType2) {
2939
+ GraphemeBreakType2[GraphemeBreakType2["Other"] = 0] = "Other";
2940
+ GraphemeBreakType2[GraphemeBreakType2["Prepend"] = 1] = "Prepend";
2941
+ GraphemeBreakType2[GraphemeBreakType2["CR"] = 2] = "CR";
2942
+ GraphemeBreakType2[GraphemeBreakType2["LF"] = 3] = "LF";
2943
+ GraphemeBreakType2[GraphemeBreakType2["Control"] = 4] = "Control";
2944
+ GraphemeBreakType2[GraphemeBreakType2["Extend"] = 5] = "Extend";
2945
+ GraphemeBreakType2[GraphemeBreakType2["Regional_Indicator"] = 6] = "Regional_Indicator";
2946
+ GraphemeBreakType2[GraphemeBreakType2["SpacingMark"] = 7] = "SpacingMark";
2947
+ GraphemeBreakType2[GraphemeBreakType2["L"] = 8] = "L";
2948
+ GraphemeBreakType2[GraphemeBreakType2["V"] = 9] = "V";
2949
+ GraphemeBreakType2[GraphemeBreakType2["T"] = 10] = "T";
2950
+ GraphemeBreakType2[GraphemeBreakType2["LV"] = 11] = "LV";
2951
+ GraphemeBreakType2[GraphemeBreakType2["LVT"] = 12] = "LVT";
2952
+ GraphemeBreakType2[GraphemeBreakType2["ZWJ"] = 13] = "ZWJ";
2953
+ GraphemeBreakType2[GraphemeBreakType2["Extended_Pictographic"] = 14] = "Extended_Pictographic";
2954
+ })(GraphemeBreakType || (GraphemeBreakType = {}));
2547
2955
  var GraphemeBreakTree = class _GraphemeBreakTree {
2548
2956
  static {
2549
2957
  this._INSTANCE = null;
@@ -2559,16 +2967,16 @@ ${stackTraceFormattedLines.join("\n")}
2559
2967
  }
2560
2968
  getGraphemeBreakType(codePoint) {
2561
2969
  if (codePoint < 32) {
2562
- if (codePoint === 10) {
2563
- return 3;
2970
+ if (codePoint === CharCode.LineFeed) {
2971
+ return GraphemeBreakType.LF;
2564
2972
  }
2565
- if (codePoint === 13) {
2566
- return 2;
2973
+ if (codePoint === CharCode.CarriageReturn) {
2974
+ return GraphemeBreakType.CR;
2567
2975
  }
2568
- return 4;
2976
+ return GraphemeBreakType.Control;
2569
2977
  }
2570
2978
  if (codePoint < 127) {
2571
- return 0;
2979
+ return GraphemeBreakType.Other;
2572
2980
  }
2573
2981
  const data = this._data;
2574
2982
  const nodeCount = data.length / 3;
@@ -2582,12 +2990,18 @@ ${stackTraceFormattedLines.join("\n")}
2582
2990
  return data[3 * nodeIndex + 2];
2583
2991
  }
2584
2992
  }
2585
- return 0;
2993
+ return GraphemeBreakType.Other;
2586
2994
  }
2587
2995
  };
2588
2996
  function getGraphemeBreakRawData() {
2589
2997
  return JSON.parse("[0,0,0,51229,51255,12,44061,44087,12,127462,127487,6,7083,7085,5,47645,47671,12,54813,54839,12,128678,128678,14,3270,3270,5,9919,9923,14,45853,45879,12,49437,49463,12,53021,53047,12,71216,71218,7,128398,128399,14,129360,129374,14,2519,2519,5,4448,4519,9,9742,9742,14,12336,12336,14,44957,44983,12,46749,46775,12,48541,48567,12,50333,50359,12,52125,52151,12,53917,53943,12,69888,69890,5,73018,73018,5,127990,127990,14,128558,128559,14,128759,128760,14,129653,129655,14,2027,2035,5,2891,2892,7,3761,3761,5,6683,6683,5,8293,8293,4,9825,9826,14,9999,9999,14,43452,43453,5,44509,44535,12,45405,45431,12,46301,46327,12,47197,47223,12,48093,48119,12,48989,49015,12,49885,49911,12,50781,50807,12,51677,51703,12,52573,52599,12,53469,53495,12,54365,54391,12,65279,65279,4,70471,70472,7,72145,72147,7,119173,119179,5,127799,127818,14,128240,128244,14,128512,128512,14,128652,128652,14,128721,128722,14,129292,129292,14,129445,129450,14,129734,129743,14,1476,1477,5,2366,2368,7,2750,2752,7,3076,3076,5,3415,3415,5,4141,4144,5,6109,6109,5,6964,6964,5,7394,7400,5,9197,9198,14,9770,9770,14,9877,9877,14,9968,9969,14,10084,10084,14,43052,43052,5,43713,43713,5,44285,44311,12,44733,44759,12,45181,45207,12,45629,45655,12,46077,46103,12,46525,46551,12,46973,46999,12,47421,47447,12,47869,47895,12,48317,48343,12,48765,48791,12,49213,49239,12,49661,49687,12,50109,50135,12,50557,50583,12,51005,51031,12,51453,51479,12,51901,51927,12,52349,52375,12,52797,52823,12,53245,53271,12,53693,53719,12,54141,54167,12,54589,54615,12,55037,55063,12,69506,69509,5,70191,70193,5,70841,70841,7,71463,71467,5,72330,72342,5,94031,94031,5,123628,123631,5,127763,127765,14,127941,127941,14,128043,128062,14,128302,128317,14,128465,128467,14,128539,128539,14,128640,128640,14,128662,128662,14,128703,128703,14,128745,128745,14,129004,129007,14,129329,129330,14,129402,129402,14,129483,129483,14,129686,129704,14,130048,131069,14,173,173,4,1757,1757,1,2200,2207,5,2434,2435,7,2631,2632,5,2817,2817,5,3008,3008,5,3201,3201,5,3387,3388,5,3542,3542,5,3902,3903,7,4190,4192,5,6002,6003,5,6439,6440,5,6765,6770,7,7019,7027,5,7154,7155,7,8205,8205,13,8505,8505,14,9654,9654,14,9757,9757,14,9792,9792,14,9852,9853,14,9890,9894,14,9937,9937,14,9981,9981,14,10035,10036,14,11035,11036,14,42654,42655,5,43346,43347,7,43587,43587,5,44006,44007,7,44173,44199,12,44397,44423,12,44621,44647,12,44845,44871,12,45069,45095,12,45293,45319,12,45517,45543,12,45741,45767,12,45965,45991,12,46189,46215,12,46413,46439,12,46637,46663,12,46861,46887,12,47085,47111,12,47309,47335,12,47533,47559,12,47757,47783,12,47981,48007,12,48205,48231,12,48429,48455,12,48653,48679,12,48877,48903,12,49101,49127,12,49325,49351,12,49549,49575,12,49773,49799,12,49997,50023,12,50221,50247,12,50445,50471,12,50669,50695,12,50893,50919,12,51117,51143,12,51341,51367,12,51565,51591,12,51789,51815,12,52013,52039,12,52237,52263,12,52461,52487,12,52685,52711,12,52909,52935,12,53133,53159,12,53357,53383,12,53581,53607,12,53805,53831,12,54029,54055,12,54253,54279,12,54477,54503,12,54701,54727,12,54925,54951,12,55149,55175,12,68101,68102,5,69762,69762,7,70067,70069,7,70371,70378,5,70720,70721,7,71087,71087,5,71341,71341,5,71995,71996,5,72249,72249,7,72850,72871,5,73109,73109,5,118576,118598,5,121505,121519,5,127245,127247,14,127568,127569,14,127777,127777,14,127872,127891,14,127956,127967,14,128015,128016,14,128110,128172,14,128259,128259,14,128367,128368,14,128424,128424,14,128488,128488,14,128530,128532,14,128550,128551,14,128566,128566,14,128647,128647,14,128656,128656,14,128667,128673,14,128691,128693,14,128715,128715,14,128728,128732,14,128752,128752,14,128765,128767,14,129096,129103,14,129311,129311,14,129344,129349,14,129394,129394,14,129413,129425,14,129466,129471,14,129511,129535,14,129664,129666,14,129719,129722,14,129760,129767,14,917536,917631,5,13,13,2,1160,1161,5,1564,1564,4,1807,1807,1,2085,2087,5,2307,2307,7,2382,2383,7,2497,2500,5,2563,2563,7,2677,2677,5,2763,2764,7,2879,2879,5,2914,2915,5,3021,3021,5,3142,3144,5,3263,3263,5,3285,3286,5,3398,3400,7,3530,3530,5,3633,3633,5,3864,3865,5,3974,3975,5,4155,4156,7,4229,4230,5,5909,5909,7,6078,6085,7,6277,6278,5,6451,6456,7,6744,6750,5,6846,6846,5,6972,6972,5,7074,7077,5,7146,7148,7,7222,7223,5,7416,7417,5,8234,8238,4,8417,8417,5,9000,9000,14,9203,9203,14,9730,9731,14,9748,9749,14,9762,9763,14,9776,9783,14,9800,9811,14,9831,9831,14,9872,9873,14,9882,9882,14,9900,9903,14,9929,9933,14,9941,9960,14,9974,9974,14,9989,9989,14,10006,10006,14,10062,10062,14,10160,10160,14,11647,11647,5,12953,12953,14,43019,43019,5,43232,43249,5,43443,43443,5,43567,43568,7,43696,43696,5,43765,43765,7,44013,44013,5,44117,44143,12,44229,44255,12,44341,44367,12,44453,44479,12,44565,44591,12,44677,44703,12,44789,44815,12,44901,44927,12,45013,45039,12,45125,45151,12,45237,45263,12,45349,45375,12,45461,45487,12,45573,45599,12,45685,45711,12,45797,45823,12,45909,45935,12,46021,46047,12,46133,46159,12,46245,46271,12,46357,46383,12,46469,46495,12,46581,46607,12,46693,46719,12,46805,46831,12,46917,46943,12,47029,47055,12,47141,47167,12,47253,47279,12,47365,47391,12,47477,47503,12,47589,47615,12,47701,47727,12,47813,47839,12,47925,47951,12,48037,48063,12,48149,48175,12,48261,48287,12,48373,48399,12,48485,48511,12,48597,48623,12,48709,48735,12,48821,48847,12,48933,48959,12,49045,49071,12,49157,49183,12,49269,49295,12,49381,49407,12,49493,49519,12,49605,49631,12,49717,49743,12,49829,49855,12,49941,49967,12,50053,50079,12,50165,50191,12,50277,50303,12,50389,50415,12,50501,50527,12,50613,50639,12,50725,50751,12,50837,50863,12,50949,50975,12,51061,51087,12,51173,51199,12,51285,51311,12,51397,51423,12,51509,51535,12,51621,51647,12,51733,51759,12,51845,51871,12,51957,51983,12,52069,52095,12,52181,52207,12,52293,52319,12,52405,52431,12,52517,52543,12,52629,52655,12,52741,52767,12,52853,52879,12,52965,52991,12,53077,53103,12,53189,53215,12,53301,53327,12,53413,53439,12,53525,53551,12,53637,53663,12,53749,53775,12,53861,53887,12,53973,53999,12,54085,54111,12,54197,54223,12,54309,54335,12,54421,54447,12,54533,54559,12,54645,54671,12,54757,54783,12,54869,54895,12,54981,55007,12,55093,55119,12,55243,55291,10,66045,66045,5,68325,68326,5,69688,69702,5,69817,69818,5,69957,69958,7,70089,70092,5,70198,70199,5,70462,70462,5,70502,70508,5,70750,70750,5,70846,70846,7,71100,71101,5,71230,71230,7,71351,71351,5,71737,71738,5,72000,72000,7,72160,72160,5,72273,72278,5,72752,72758,5,72882,72883,5,73031,73031,5,73461,73462,7,94192,94193,7,119149,119149,7,121403,121452,5,122915,122916,5,126980,126980,14,127358,127359,14,127535,127535,14,127759,127759,14,127771,127771,14,127792,127793,14,127825,127867,14,127897,127899,14,127945,127945,14,127985,127986,14,128000,128007,14,128021,128021,14,128066,128100,14,128184,128235,14,128249,128252,14,128266,128276,14,128335,128335,14,128379,128390,14,128407,128419,14,128444,128444,14,128481,128481,14,128499,128499,14,128526,128526,14,128536,128536,14,128543,128543,14,128556,128556,14,128564,128564,14,128577,128580,14,128643,128645,14,128649,128649,14,128654,128654,14,128660,128660,14,128664,128664,14,128675,128675,14,128686,128689,14,128695,128696,14,128705,128709,14,128717,128719,14,128725,128725,14,128736,128741,14,128747,128748,14,128755,128755,14,128762,128762,14,128981,128991,14,129009,129023,14,129160,129167,14,129296,129304,14,129320,129327,14,129340,129342,14,129356,129356,14,129388,129392,14,129399,129400,14,129404,129407,14,129432,129442,14,129454,129455,14,129473,129474,14,129485,129487,14,129648,129651,14,129659,129660,14,129671,129679,14,129709,129711,14,129728,129730,14,129751,129753,14,129776,129782,14,917505,917505,4,917760,917999,5,10,10,3,127,159,4,768,879,5,1471,1471,5,1536,1541,1,1648,1648,5,1767,1768,5,1840,1866,5,2070,2073,5,2137,2139,5,2274,2274,1,2363,2363,7,2377,2380,7,2402,2403,5,2494,2494,5,2507,2508,7,2558,2558,5,2622,2624,7,2641,2641,5,2691,2691,7,2759,2760,5,2786,2787,5,2876,2876,5,2881,2884,5,2901,2902,5,3006,3006,5,3014,3016,7,3072,3072,5,3134,3136,5,3157,3158,5,3260,3260,5,3266,3266,5,3274,3275,7,3328,3329,5,3391,3392,7,3405,3405,5,3457,3457,5,3536,3537,7,3551,3551,5,3636,3642,5,3764,3772,5,3895,3895,5,3967,3967,7,3993,4028,5,4146,4151,5,4182,4183,7,4226,4226,5,4253,4253,5,4957,4959,5,5940,5940,7,6070,6070,7,6087,6088,7,6158,6158,4,6432,6434,5,6448,6449,7,6679,6680,5,6742,6742,5,6754,6754,5,6783,6783,5,6912,6915,5,6966,6970,5,6978,6978,5,7042,7042,7,7080,7081,5,7143,7143,7,7150,7150,7,7212,7219,5,7380,7392,5,7412,7412,5,8203,8203,4,8232,8232,4,8265,8265,14,8400,8412,5,8421,8432,5,8617,8618,14,9167,9167,14,9200,9200,14,9410,9410,14,9723,9726,14,9733,9733,14,9745,9745,14,9752,9752,14,9760,9760,14,9766,9766,14,9774,9774,14,9786,9786,14,9794,9794,14,9823,9823,14,9828,9828,14,9833,9850,14,9855,9855,14,9875,9875,14,9880,9880,14,9885,9887,14,9896,9897,14,9906,9916,14,9926,9927,14,9935,9935,14,9939,9939,14,9962,9962,14,9972,9972,14,9978,9978,14,9986,9986,14,9997,9997,14,10002,10002,14,10017,10017,14,10055,10055,14,10071,10071,14,10133,10135,14,10548,10549,14,11093,11093,14,12330,12333,5,12441,12442,5,42608,42610,5,43010,43010,5,43045,43046,5,43188,43203,7,43302,43309,5,43392,43394,5,43446,43449,5,43493,43493,5,43571,43572,7,43597,43597,7,43703,43704,5,43756,43757,5,44003,44004,7,44009,44010,7,44033,44059,12,44089,44115,12,44145,44171,12,44201,44227,12,44257,44283,12,44313,44339,12,44369,44395,12,44425,44451,12,44481,44507,12,44537,44563,12,44593,44619,12,44649,44675,12,44705,44731,12,44761,44787,12,44817,44843,12,44873,44899,12,44929,44955,12,44985,45011,12,45041,45067,12,45097,45123,12,45153,45179,12,45209,45235,12,45265,45291,12,45321,45347,12,45377,45403,12,45433,45459,12,45489,45515,12,45545,45571,12,45601,45627,12,45657,45683,12,45713,45739,12,45769,45795,12,45825,45851,12,45881,45907,12,45937,45963,12,45993,46019,12,46049,46075,12,46105,46131,12,46161,46187,12,46217,46243,12,46273,46299,12,46329,46355,12,46385,46411,12,46441,46467,12,46497,46523,12,46553,46579,12,46609,46635,12,46665,46691,12,46721,46747,12,46777,46803,12,46833,46859,12,46889,46915,12,46945,46971,12,47001,47027,12,47057,47083,12,47113,47139,12,47169,47195,12,47225,47251,12,47281,47307,12,47337,47363,12,47393,47419,12,47449,47475,12,47505,47531,12,47561,47587,12,47617,47643,12,47673,47699,12,47729,47755,12,47785,47811,12,47841,47867,12,47897,47923,12,47953,47979,12,48009,48035,12,48065,48091,12,48121,48147,12,48177,48203,12,48233,48259,12,48289,48315,12,48345,48371,12,48401,48427,12,48457,48483,12,48513,48539,12,48569,48595,12,48625,48651,12,48681,48707,12,48737,48763,12,48793,48819,12,48849,48875,12,48905,48931,12,48961,48987,12,49017,49043,12,49073,49099,12,49129,49155,12,49185,49211,12,49241,49267,12,49297,49323,12,49353,49379,12,49409,49435,12,49465,49491,12,49521,49547,12,49577,49603,12,49633,49659,12,49689,49715,12,49745,49771,12,49801,49827,12,49857,49883,12,49913,49939,12,49969,49995,12,50025,50051,12,50081,50107,12,50137,50163,12,50193,50219,12,50249,50275,12,50305,50331,12,50361,50387,12,50417,50443,12,50473,50499,12,50529,50555,12,50585,50611,12,50641,50667,12,50697,50723,12,50753,50779,12,50809,50835,12,50865,50891,12,50921,50947,12,50977,51003,12,51033,51059,12,51089,51115,12,51145,51171,12,51201,51227,12,51257,51283,12,51313,51339,12,51369,51395,12,51425,51451,12,51481,51507,12,51537,51563,12,51593,51619,12,51649,51675,12,51705,51731,12,51761,51787,12,51817,51843,12,51873,51899,12,51929,51955,12,51985,52011,12,52041,52067,12,52097,52123,12,52153,52179,12,52209,52235,12,52265,52291,12,52321,52347,12,52377,52403,12,52433,52459,12,52489,52515,12,52545,52571,12,52601,52627,12,52657,52683,12,52713,52739,12,52769,52795,12,52825,52851,12,52881,52907,12,52937,52963,12,52993,53019,12,53049,53075,12,53105,53131,12,53161,53187,12,53217,53243,12,53273,53299,12,53329,53355,12,53385,53411,12,53441,53467,12,53497,53523,12,53553,53579,12,53609,53635,12,53665,53691,12,53721,53747,12,53777,53803,12,53833,53859,12,53889,53915,12,53945,53971,12,54001,54027,12,54057,54083,12,54113,54139,12,54169,54195,12,54225,54251,12,54281,54307,12,54337,54363,12,54393,54419,12,54449,54475,12,54505,54531,12,54561,54587,12,54617,54643,12,54673,54699,12,54729,54755,12,54785,54811,12,54841,54867,12,54897,54923,12,54953,54979,12,55009,55035,12,55065,55091,12,55121,55147,12,55177,55203,12,65024,65039,5,65520,65528,4,66422,66426,5,68152,68154,5,69291,69292,5,69633,69633,5,69747,69748,5,69811,69814,5,69826,69826,5,69932,69932,7,70016,70017,5,70079,70080,7,70095,70095,5,70196,70196,5,70367,70367,5,70402,70403,7,70464,70464,5,70487,70487,5,70709,70711,7,70725,70725,7,70833,70834,7,70843,70844,7,70849,70849,7,71090,71093,5,71103,71104,5,71227,71228,7,71339,71339,5,71344,71349,5,71458,71461,5,71727,71735,5,71985,71989,7,71998,71998,5,72002,72002,7,72154,72155,5,72193,72202,5,72251,72254,5,72281,72283,5,72344,72345,5,72766,72766,7,72874,72880,5,72885,72886,5,73023,73029,5,73104,73105,5,73111,73111,5,92912,92916,5,94095,94098,5,113824,113827,4,119142,119142,7,119155,119162,4,119362,119364,5,121476,121476,5,122888,122904,5,123184,123190,5,125252,125258,5,127183,127183,14,127340,127343,14,127377,127386,14,127491,127503,14,127548,127551,14,127744,127756,14,127761,127761,14,127769,127769,14,127773,127774,14,127780,127788,14,127796,127797,14,127820,127823,14,127869,127869,14,127894,127895,14,127902,127903,14,127943,127943,14,127947,127950,14,127972,127972,14,127988,127988,14,127992,127994,14,128009,128011,14,128019,128019,14,128023,128041,14,128064,128064,14,128102,128107,14,128174,128181,14,128238,128238,14,128246,128247,14,128254,128254,14,128264,128264,14,128278,128299,14,128329,128330,14,128348,128359,14,128371,128377,14,128392,128393,14,128401,128404,14,128421,128421,14,128433,128434,14,128450,128452,14,128476,128478,14,128483,128483,14,128495,128495,14,128506,128506,14,128519,128520,14,128528,128528,14,128534,128534,14,128538,128538,14,128540,128542,14,128544,128549,14,128552,128555,14,128557,128557,14,128560,128563,14,128565,128565,14,128567,128576,14,128581,128591,14,128641,128642,14,128646,128646,14,128648,128648,14,128650,128651,14,128653,128653,14,128655,128655,14,128657,128659,14,128661,128661,14,128663,128663,14,128665,128666,14,128674,128674,14,128676,128677,14,128679,128685,14,128690,128690,14,128694,128694,14,128697,128702,14,128704,128704,14,128710,128714,14,128716,128716,14,128720,128720,14,128723,128724,14,128726,128727,14,128733,128735,14,128742,128744,14,128746,128746,14,128749,128751,14,128753,128754,14,128756,128758,14,128761,128761,14,128763,128764,14,128884,128895,14,128992,129003,14,129008,129008,14,129036,129039,14,129114,129119,14,129198,129279,14,129293,129295,14,129305,129310,14,129312,129319,14,129328,129328,14,129331,129338,14,129343,129343,14,129351,129355,14,129357,129359,14,129375,129387,14,129393,129393,14,129395,129398,14,129401,129401,14,129403,129403,14,129408,129412,14,129426,129431,14,129443,129444,14,129451,129453,14,129456,129465,14,129472,129472,14,129475,129482,14,129484,129484,14,129488,129510,14,129536,129647,14,129652,129652,14,129656,129658,14,129661,129663,14,129667,129670,14,129680,129685,14,129705,129708,14,129712,129718,14,129723,129727,14,129731,129733,14,129744,129750,14,129754,129759,14,129768,129775,14,129783,129791,14,917504,917504,4,917506,917535,4,917632,917759,4,918000,921599,4,0,9,4,11,12,4,14,31,4,169,169,14,174,174,14,1155,1159,5,1425,1469,5,1473,1474,5,1479,1479,5,1552,1562,5,1611,1631,5,1750,1756,5,1759,1764,5,1770,1773,5,1809,1809,5,1958,1968,5,2045,2045,5,2075,2083,5,2089,2093,5,2192,2193,1,2250,2273,5,2275,2306,5,2362,2362,5,2364,2364,5,2369,2376,5,2381,2381,5,2385,2391,5,2433,2433,5,2492,2492,5,2495,2496,7,2503,2504,7,2509,2509,5,2530,2531,5,2561,2562,5,2620,2620,5,2625,2626,5,2635,2637,5,2672,2673,5,2689,2690,5,2748,2748,5,2753,2757,5,2761,2761,7,2765,2765,5,2810,2815,5,2818,2819,7,2878,2878,5,2880,2880,7,2887,2888,7,2893,2893,5,2903,2903,5,2946,2946,5,3007,3007,7,3009,3010,7,3018,3020,7,3031,3031,5,3073,3075,7,3132,3132,5,3137,3140,7,3146,3149,5,3170,3171,5,3202,3203,7,3262,3262,7,3264,3265,7,3267,3268,7,3271,3272,7,3276,3277,5,3298,3299,5,3330,3331,7,3390,3390,5,3393,3396,5,3402,3404,7,3406,3406,1,3426,3427,5,3458,3459,7,3535,3535,5,3538,3540,5,3544,3550,7,3570,3571,7,3635,3635,7,3655,3662,5,3763,3763,7,3784,3789,5,3893,3893,5,3897,3897,5,3953,3966,5,3968,3972,5,3981,3991,5,4038,4038,5,4145,4145,7,4153,4154,5,4157,4158,5,4184,4185,5,4209,4212,5,4228,4228,7,4237,4237,5,4352,4447,8,4520,4607,10,5906,5908,5,5938,5939,5,5970,5971,5,6068,6069,5,6071,6077,5,6086,6086,5,6089,6099,5,6155,6157,5,6159,6159,5,6313,6313,5,6435,6438,7,6441,6443,7,6450,6450,5,6457,6459,5,6681,6682,7,6741,6741,7,6743,6743,7,6752,6752,5,6757,6764,5,6771,6780,5,6832,6845,5,6847,6862,5,6916,6916,7,6965,6965,5,6971,6971,7,6973,6977,7,6979,6980,7,7040,7041,5,7073,7073,7,7078,7079,7,7082,7082,7,7142,7142,5,7144,7145,5,7149,7149,5,7151,7153,5,7204,7211,7,7220,7221,7,7376,7378,5,7393,7393,7,7405,7405,5,7415,7415,7,7616,7679,5,8204,8204,5,8206,8207,4,8233,8233,4,8252,8252,14,8288,8292,4,8294,8303,4,8413,8416,5,8418,8420,5,8482,8482,14,8596,8601,14,8986,8987,14,9096,9096,14,9193,9196,14,9199,9199,14,9201,9202,14,9208,9210,14,9642,9643,14,9664,9664,14,9728,9729,14,9732,9732,14,9735,9741,14,9743,9744,14,9746,9746,14,9750,9751,14,9753,9756,14,9758,9759,14,9761,9761,14,9764,9765,14,9767,9769,14,9771,9773,14,9775,9775,14,9784,9785,14,9787,9791,14,9793,9793,14,9795,9799,14,9812,9822,14,9824,9824,14,9827,9827,14,9829,9830,14,9832,9832,14,9851,9851,14,9854,9854,14,9856,9861,14,9874,9874,14,9876,9876,14,9878,9879,14,9881,9881,14,9883,9884,14,9888,9889,14,9895,9895,14,9898,9899,14,9904,9905,14,9917,9918,14,9924,9925,14,9928,9928,14,9934,9934,14,9936,9936,14,9938,9938,14,9940,9940,14,9961,9961,14,9963,9967,14,9970,9971,14,9973,9973,14,9975,9977,14,9979,9980,14,9982,9985,14,9987,9988,14,9992,9996,14,9998,9998,14,10000,10001,14,10004,10004,14,10013,10013,14,10024,10024,14,10052,10052,14,10060,10060,14,10067,10069,14,10083,10083,14,10085,10087,14,10145,10145,14,10175,10175,14,11013,11015,14,11088,11088,14,11503,11505,5,11744,11775,5,12334,12335,5,12349,12349,14,12951,12951,14,42607,42607,5,42612,42621,5,42736,42737,5,43014,43014,5,43043,43044,7,43047,43047,7,43136,43137,7,43204,43205,5,43263,43263,5,43335,43345,5,43360,43388,8,43395,43395,7,43444,43445,7,43450,43451,7,43454,43456,7,43561,43566,5,43569,43570,5,43573,43574,5,43596,43596,5,43644,43644,5,43698,43700,5,43710,43711,5,43755,43755,7,43758,43759,7,43766,43766,5,44005,44005,5,44008,44008,5,44012,44012,7,44032,44032,11,44060,44060,11,44088,44088,11,44116,44116,11,44144,44144,11,44172,44172,11,44200,44200,11,44228,44228,11,44256,44256,11,44284,44284,11,44312,44312,11,44340,44340,11,44368,44368,11,44396,44396,11,44424,44424,11,44452,44452,11,44480,44480,11,44508,44508,11,44536,44536,11,44564,44564,11,44592,44592,11,44620,44620,11,44648,44648,11,44676,44676,11,44704,44704,11,44732,44732,11,44760,44760,11,44788,44788,11,44816,44816,11,44844,44844,11,44872,44872,11,44900,44900,11,44928,44928,11,44956,44956,11,44984,44984,11,45012,45012,11,45040,45040,11,45068,45068,11,45096,45096,11,45124,45124,11,45152,45152,11,45180,45180,11,45208,45208,11,45236,45236,11,45264,45264,11,45292,45292,11,45320,45320,11,45348,45348,11,45376,45376,11,45404,45404,11,45432,45432,11,45460,45460,11,45488,45488,11,45516,45516,11,45544,45544,11,45572,45572,11,45600,45600,11,45628,45628,11,45656,45656,11,45684,45684,11,45712,45712,11,45740,45740,11,45768,45768,11,45796,45796,11,45824,45824,11,45852,45852,11,45880,45880,11,45908,45908,11,45936,45936,11,45964,45964,11,45992,45992,11,46020,46020,11,46048,46048,11,46076,46076,11,46104,46104,11,46132,46132,11,46160,46160,11,46188,46188,11,46216,46216,11,46244,46244,11,46272,46272,11,46300,46300,11,46328,46328,11,46356,46356,11,46384,46384,11,46412,46412,11,46440,46440,11,46468,46468,11,46496,46496,11,46524,46524,11,46552,46552,11,46580,46580,11,46608,46608,11,46636,46636,11,46664,46664,11,46692,46692,11,46720,46720,11,46748,46748,11,46776,46776,11,46804,46804,11,46832,46832,11,46860,46860,11,46888,46888,11,46916,46916,11,46944,46944,11,46972,46972,11,47000,47000,11,47028,47028,11,47056,47056,11,47084,47084,11,47112,47112,11,47140,47140,11,47168,47168,11,47196,47196,11,47224,47224,11,47252,47252,11,47280,47280,11,47308,47308,11,47336,47336,11,47364,47364,11,47392,47392,11,47420,47420,11,47448,47448,11,47476,47476,11,47504,47504,11,47532,47532,11,47560,47560,11,47588,47588,11,47616,47616,11,47644,47644,11,47672,47672,11,47700,47700,11,47728,47728,11,47756,47756,11,47784,47784,11,47812,47812,11,47840,47840,11,47868,47868,11,47896,47896,11,47924,47924,11,47952,47952,11,47980,47980,11,48008,48008,11,48036,48036,11,48064,48064,11,48092,48092,11,48120,48120,11,48148,48148,11,48176,48176,11,48204,48204,11,48232,48232,11,48260,48260,11,48288,48288,11,48316,48316,11,48344,48344,11,48372,48372,11,48400,48400,11,48428,48428,11,48456,48456,11,48484,48484,11,48512,48512,11,48540,48540,11,48568,48568,11,48596,48596,11,48624,48624,11,48652,48652,11,48680,48680,11,48708,48708,11,48736,48736,11,48764,48764,11,48792,48792,11,48820,48820,11,48848,48848,11,48876,48876,11,48904,48904,11,48932,48932,11,48960,48960,11,48988,48988,11,49016,49016,11,49044,49044,11,49072,49072,11,49100,49100,11,49128,49128,11,49156,49156,11,49184,49184,11,49212,49212,11,49240,49240,11,49268,49268,11,49296,49296,11,49324,49324,11,49352,49352,11,49380,49380,11,49408,49408,11,49436,49436,11,49464,49464,11,49492,49492,11,49520,49520,11,49548,49548,11,49576,49576,11,49604,49604,11,49632,49632,11,49660,49660,11,49688,49688,11,49716,49716,11,49744,49744,11,49772,49772,11,49800,49800,11,49828,49828,11,49856,49856,11,49884,49884,11,49912,49912,11,49940,49940,11,49968,49968,11,49996,49996,11,50024,50024,11,50052,50052,11,50080,50080,11,50108,50108,11,50136,50136,11,50164,50164,11,50192,50192,11,50220,50220,11,50248,50248,11,50276,50276,11,50304,50304,11,50332,50332,11,50360,50360,11,50388,50388,11,50416,50416,11,50444,50444,11,50472,50472,11,50500,50500,11,50528,50528,11,50556,50556,11,50584,50584,11,50612,50612,11,50640,50640,11,50668,50668,11,50696,50696,11,50724,50724,11,50752,50752,11,50780,50780,11,50808,50808,11,50836,50836,11,50864,50864,11,50892,50892,11,50920,50920,11,50948,50948,11,50976,50976,11,51004,51004,11,51032,51032,11,51060,51060,11,51088,51088,11,51116,51116,11,51144,51144,11,51172,51172,11,51200,51200,11,51228,51228,11,51256,51256,11,51284,51284,11,51312,51312,11,51340,51340,11,51368,51368,11,51396,51396,11,51424,51424,11,51452,51452,11,51480,51480,11,51508,51508,11,51536,51536,11,51564,51564,11,51592,51592,11,51620,51620,11,51648,51648,11,51676,51676,11,51704,51704,11,51732,51732,11,51760,51760,11,51788,51788,11,51816,51816,11,51844,51844,11,51872,51872,11,51900,51900,11,51928,51928,11,51956,51956,11,51984,51984,11,52012,52012,11,52040,52040,11,52068,52068,11,52096,52096,11,52124,52124,11,52152,52152,11,52180,52180,11,52208,52208,11,52236,52236,11,52264,52264,11,52292,52292,11,52320,52320,11,52348,52348,11,52376,52376,11,52404,52404,11,52432,52432,11,52460,52460,11,52488,52488,11,52516,52516,11,52544,52544,11,52572,52572,11,52600,52600,11,52628,52628,11,52656,52656,11,52684,52684,11,52712,52712,11,52740,52740,11,52768,52768,11,52796,52796,11,52824,52824,11,52852,52852,11,52880,52880,11,52908,52908,11,52936,52936,11,52964,52964,11,52992,52992,11,53020,53020,11,53048,53048,11,53076,53076,11,53104,53104,11,53132,53132,11,53160,53160,11,53188,53188,11,53216,53216,11,53244,53244,11,53272,53272,11,53300,53300,11,53328,53328,11,53356,53356,11,53384,53384,11,53412,53412,11,53440,53440,11,53468,53468,11,53496,53496,11,53524,53524,11,53552,53552,11,53580,53580,11,53608,53608,11,53636,53636,11,53664,53664,11,53692,53692,11,53720,53720,11,53748,53748,11,53776,53776,11,53804,53804,11,53832,53832,11,53860,53860,11,53888,53888,11,53916,53916,11,53944,53944,11,53972,53972,11,54000,54000,11,54028,54028,11,54056,54056,11,54084,54084,11,54112,54112,11,54140,54140,11,54168,54168,11,54196,54196,11,54224,54224,11,54252,54252,11,54280,54280,11,54308,54308,11,54336,54336,11,54364,54364,11,54392,54392,11,54420,54420,11,54448,54448,11,54476,54476,11,54504,54504,11,54532,54532,11,54560,54560,11,54588,54588,11,54616,54616,11,54644,54644,11,54672,54672,11,54700,54700,11,54728,54728,11,54756,54756,11,54784,54784,11,54812,54812,11,54840,54840,11,54868,54868,11,54896,54896,11,54924,54924,11,54952,54952,11,54980,54980,11,55008,55008,11,55036,55036,11,55064,55064,11,55092,55092,11,55120,55120,11,55148,55148,11,55176,55176,11,55216,55238,9,64286,64286,5,65056,65071,5,65438,65439,5,65529,65531,4,66272,66272,5,68097,68099,5,68108,68111,5,68159,68159,5,68900,68903,5,69446,69456,5,69632,69632,7,69634,69634,7,69744,69744,5,69759,69761,5,69808,69810,7,69815,69816,7,69821,69821,1,69837,69837,1,69927,69931,5,69933,69940,5,70003,70003,5,70018,70018,7,70070,70078,5,70082,70083,1,70094,70094,7,70188,70190,7,70194,70195,7,70197,70197,7,70206,70206,5,70368,70370,7,70400,70401,5,70459,70460,5,70463,70463,7,70465,70468,7,70475,70477,7,70498,70499,7,70512,70516,5,70712,70719,5,70722,70724,5,70726,70726,5,70832,70832,5,70835,70840,5,70842,70842,5,70845,70845,5,70847,70848,5,70850,70851,5,71088,71089,7,71096,71099,7,71102,71102,7,71132,71133,5,71219,71226,5,71229,71229,5,71231,71232,5,71340,71340,7,71342,71343,7,71350,71350,7,71453,71455,5,71462,71462,7,71724,71726,7,71736,71736,7,71984,71984,5,71991,71992,7,71997,71997,7,71999,71999,1,72001,72001,1,72003,72003,5,72148,72151,5,72156,72159,7,72164,72164,7,72243,72248,5,72250,72250,1,72263,72263,5,72279,72280,7,72324,72329,1,72343,72343,7,72751,72751,7,72760,72765,5,72767,72767,5,72873,72873,7,72881,72881,7,72884,72884,7,73009,73014,5,73020,73021,5,73030,73030,1,73098,73102,7,73107,73108,7,73110,73110,7,73459,73460,5,78896,78904,4,92976,92982,5,94033,94087,7,94180,94180,5,113821,113822,5,118528,118573,5,119141,119141,5,119143,119145,5,119150,119154,5,119163,119170,5,119210,119213,5,121344,121398,5,121461,121461,5,121499,121503,5,122880,122886,5,122907,122913,5,122918,122922,5,123566,123566,5,125136,125142,5,126976,126979,14,126981,127182,14,127184,127231,14,127279,127279,14,127344,127345,14,127374,127374,14,127405,127461,14,127489,127490,14,127514,127514,14,127538,127546,14,127561,127567,14,127570,127743,14,127757,127758,14,127760,127760,14,127762,127762,14,127766,127768,14,127770,127770,14,127772,127772,14,127775,127776,14,127778,127779,14,127789,127791,14,127794,127795,14,127798,127798,14,127819,127819,14,127824,127824,14,127868,127868,14,127870,127871,14,127892,127893,14,127896,127896,14,127900,127901,14,127904,127940,14,127942,127942,14,127944,127944,14,127946,127946,14,127951,127955,14,127968,127971,14,127973,127984,14,127987,127987,14,127989,127989,14,127991,127991,14,127995,127999,5,128008,128008,14,128012,128014,14,128017,128018,14,128020,128020,14,128022,128022,14,128042,128042,14,128063,128063,14,128065,128065,14,128101,128101,14,128108,128109,14,128173,128173,14,128182,128183,14,128236,128237,14,128239,128239,14,128245,128245,14,128248,128248,14,128253,128253,14,128255,128258,14,128260,128263,14,128265,128265,14,128277,128277,14,128300,128301,14,128326,128328,14,128331,128334,14,128336,128347,14,128360,128366,14,128369,128370,14,128378,128378,14,128391,128391,14,128394,128397,14,128400,128400,14,128405,128406,14,128420,128420,14,128422,128423,14,128425,128432,14,128435,128443,14,128445,128449,14,128453,128464,14,128468,128475,14,128479,128480,14,128482,128482,14,128484,128487,14,128489,128494,14,128496,128498,14,128500,128505,14,128507,128511,14,128513,128518,14,128521,128525,14,128527,128527,14,128529,128529,14,128533,128533,14,128535,128535,14,128537,128537,14]");
2590
2998
  }
2999
+ var CodePoint;
3000
+ (function(CodePoint2) {
3001
+ CodePoint2[CodePoint2["zwj"] = 8205] = "zwj";
3002
+ CodePoint2[CodePoint2["emojiVariantSelector"] = 65039] = "emojiVariantSelector";
3003
+ CodePoint2[CodePoint2["enclosingKeyCap"] = 8419] = "enclosingKeyCap";
3004
+ })(CodePoint || (CodePoint = {}));
2591
3005
  var AmbiguousCharacters = class _AmbiguousCharacters {
2592
3006
  static {
2593
3007
  this.ambiguousCharacterData = new Lazy(() => {
@@ -2652,6 +3066,15 @@ ${stackTraceFormattedLines.join("\n")}
2652
3066
  isAmbiguous(codePoint) {
2653
3067
  return this.confusableDictionary.has(codePoint);
2654
3068
  }
3069
+ containsAmbiguousCharacter(str) {
3070
+ for (let i = 0; i < str.length; i++) {
3071
+ const codePoint = str.codePointAt(i);
3072
+ if (typeof codePoint === "number" && this.isAmbiguous(codePoint)) {
3073
+ return true;
3074
+ }
3075
+ }
3076
+ return false;
3077
+ }
2655
3078
  getPrimaryConfusable(codePoint) {
2656
3079
  return this.confusableDictionary.get(codePoint);
2657
3080
  }
@@ -2675,6 +3098,15 @@ ${stackTraceFormattedLines.join("\n")}
2675
3098
  static isInvisibleCharacter(codePoint) {
2676
3099
  return _InvisibleCharacters.getData().has(codePoint);
2677
3100
  }
3101
+ static containsInvisibleCharacter(str) {
3102
+ for (let i = 0; i < str.length; i++) {
3103
+ const codePoint = str.codePointAt(i);
3104
+ if (typeof codePoint === "number" && _InvisibleCharacters.isInvisibleCharacter(codePoint)) {
3105
+ return true;
3106
+ }
3107
+ }
3108
+ return false;
3109
+ }
2678
3110
  static get codePoints() {
2679
3111
  return _InvisibleCharacters.getData();
2680
3112
  }
@@ -2682,13 +3114,21 @@ ${stackTraceFormattedLines.join("\n")}
2682
3114
 
2683
3115
  // node_modules/vscode/vscode/src/vs/base/common/worker/simpleWorker.js
2684
3116
  var INITIALIZE = "$initialize";
3117
+ var MessageType;
3118
+ (function(MessageType2) {
3119
+ MessageType2[MessageType2["Request"] = 0] = "Request";
3120
+ MessageType2[MessageType2["Reply"] = 1] = "Reply";
3121
+ MessageType2[MessageType2["SubscribeEvent"] = 2] = "SubscribeEvent";
3122
+ MessageType2[MessageType2["Event"] = 3] = "Event";
3123
+ MessageType2[MessageType2["UnsubscribeEvent"] = 4] = "UnsubscribeEvent";
3124
+ })(MessageType || (MessageType = {}));
2685
3125
  var RequestMessage = class {
2686
3126
  constructor(vsWorker, req, method, args) {
2687
3127
  this.vsWorker = vsWorker;
2688
3128
  this.req = req;
2689
3129
  this.method = method;
2690
3130
  this.args = args;
2691
- this.type = 0;
3131
+ this.type = MessageType.Request;
2692
3132
  }
2693
3133
  };
2694
3134
  var ReplyMessage = class {
@@ -2697,7 +3137,7 @@ ${stackTraceFormattedLines.join("\n")}
2697
3137
  this.seq = seq;
2698
3138
  this.res = res;
2699
3139
  this.err = err;
2700
- this.type = 1;
3140
+ this.type = MessageType.Reply;
2701
3141
  }
2702
3142
  };
2703
3143
  var SubscribeEventMessage = class {
@@ -2706,7 +3146,7 @@ ${stackTraceFormattedLines.join("\n")}
2706
3146
  this.req = req;
2707
3147
  this.eventName = eventName;
2708
3148
  this.arg = arg;
2709
- this.type = 2;
3149
+ this.type = MessageType.SubscribeEvent;
2710
3150
  }
2711
3151
  };
2712
3152
  var EventMessage = class {
@@ -2714,14 +3154,14 @@ ${stackTraceFormattedLines.join("\n")}
2714
3154
  this.vsWorker = vsWorker;
2715
3155
  this.req = req;
2716
3156
  this.event = event;
2717
- this.type = 3;
3157
+ this.type = MessageType.Event;
2718
3158
  }
2719
3159
  };
2720
3160
  var UnsubscribeEventMessage = class {
2721
3161
  constructor(vsWorker, req) {
2722
3162
  this.vsWorker = vsWorker;
2723
3163
  this.req = req;
2724
- this.type = 4;
3164
+ this.type = MessageType.UnsubscribeEvent;
2725
3165
  }
2726
3166
  };
2727
3167
  var SimpleWorkerProtocol = class {
@@ -2773,15 +3213,15 @@ ${stackTraceFormattedLines.join("\n")}
2773
3213
  }
2774
3214
  _handleMessage(msg) {
2775
3215
  switch (msg.type) {
2776
- case 1:
3216
+ case MessageType.Reply:
2777
3217
  return this._handleReplyMessage(msg);
2778
- case 0:
3218
+ case MessageType.Request:
2779
3219
  return this._handleRequestMessage(msg);
2780
- case 2:
3220
+ case MessageType.SubscribeEvent:
2781
3221
  return this._handleSubscribeEventMessage(msg);
2782
- case 3:
3222
+ case MessageType.Event:
2783
3223
  return this._handleEventMessage(msg);
2784
- case 4:
3224
+ case MessageType.UnsubscribeEvent:
2785
3225
  return this._handleUnsubscribeEventMessage(msg);
2786
3226
  }
2787
3227
  }
@@ -2841,13 +3281,13 @@ ${stackTraceFormattedLines.join("\n")}
2841
3281
  }
2842
3282
  _send(msg) {
2843
3283
  const transfer = [];
2844
- if (msg.type === 0) {
3284
+ if (msg.type === MessageType.Request) {
2845
3285
  for (let i = 0; i < msg.args.length; i++) {
2846
3286
  if (msg.args[i] instanceof ArrayBuffer) {
2847
3287
  transfer.push(msg.args[i]);
2848
3288
  }
2849
3289
  }
2850
- } else if (msg.type === 1) {
3290
+ } else if (msg.type === MessageType.Reply) {
2851
3291
  if (msg.res instanceof ArrayBuffer) {
2852
3292
  transfer.push(msg.res);
2853
3293
  }
@@ -3004,6 +3444,11 @@ ${stackTraceFormattedLines.join("\n")}
3004
3444
  }
3005
3445
  return hashVal;
3006
3446
  }
3447
+ var SHA1Constant;
3448
+ (function(SHA1Constant2) {
3449
+ SHA1Constant2[SHA1Constant2["BLOCK_SIZE"] = 64] = "BLOCK_SIZE";
3450
+ SHA1Constant2[SHA1Constant2["UNICODE_REPLACEMENT"] = 65533] = "UNICODE_REPLACEMENT";
3451
+ })(SHA1Constant || (SHA1Constant = {}));
3007
3452
  function leftRotate(value, bits, totalBits = 32) {
3008
3453
  const delta = totalBits - bits;
3009
3454
  const mask = ~((1 << delta) - 1);
@@ -3036,7 +3481,7 @@ ${stackTraceFormattedLines.join("\n")}
3036
3481
  this._h2 = 2562383102;
3037
3482
  this._h3 = 271733878;
3038
3483
  this._h4 = 3285377520;
3039
- this._buff = new Uint8Array(64 + 3);
3484
+ this._buff = new Uint8Array(SHA1Constant.BLOCK_SIZE + 3);
3040
3485
  this._buffDV = new DataView(this._buff.buffer);
3041
3486
  this._buffLen = 0;
3042
3487
  this._totalLen = 0;
@@ -3070,14 +3515,14 @@ ${stackTraceFormattedLines.join("\n")}
3070
3515
  offset++;
3071
3516
  codePoint = computeCodePoint(charCode, nextCharCode);
3072
3517
  } else {
3073
- codePoint = 65533;
3518
+ codePoint = SHA1Constant.UNICODE_REPLACEMENT;
3074
3519
  }
3075
3520
  } else {
3076
3521
  leftoverHighSurrogate = charCode;
3077
3522
  break;
3078
3523
  }
3079
3524
  } else if (isLowSurrogate(charCode)) {
3080
- codePoint = 65533;
3525
+ codePoint = SHA1Constant.UNICODE_REPLACEMENT;
3081
3526
  }
3082
3527
  buffLen = this._push(buff, buffLen, codePoint);
3083
3528
  offset++;
@@ -3106,13 +3551,13 @@ ${stackTraceFormattedLines.join("\n")}
3106
3551
  buff[buffLen++] = 128 | (codePoint & 4032) >>> 6;
3107
3552
  buff[buffLen++] = 128 | (codePoint & 63) >>> 0;
3108
3553
  }
3109
- if (buffLen >= 64) {
3554
+ if (buffLen >= SHA1Constant.BLOCK_SIZE) {
3110
3555
  this._step();
3111
- buffLen -= 64;
3112
- this._totalLen += 64;
3113
- buff[0] = buff[64 + 0];
3114
- buff[1] = buff[64 + 1];
3115
- buff[2] = buff[64 + 2];
3556
+ buffLen -= SHA1Constant.BLOCK_SIZE;
3557
+ this._totalLen += SHA1Constant.BLOCK_SIZE;
3558
+ buff[0] = buff[SHA1Constant.BLOCK_SIZE + 0];
3559
+ buff[1] = buff[SHA1Constant.BLOCK_SIZE + 1];
3560
+ buff[2] = buff[SHA1Constant.BLOCK_SIZE + 2];
3116
3561
  }
3117
3562
  return buffLen;
3118
3563
  }
@@ -3121,7 +3566,7 @@ ${stackTraceFormattedLines.join("\n")}
3121
3566
  this._finished = true;
3122
3567
  if (this._leftoverHighSurrogate) {
3123
3568
  this._leftoverHighSurrogate = 0;
3124
- this._buffLen = this._push(this._buff, this._buffLen, 65533);
3569
+ this._buffLen = this._push(this._buff, this._buffLen, SHA1Constant.UNICODE_REPLACEMENT);
3125
3570
  }
3126
3571
  this._totalLen += this._buffLen;
3127
3572
  this._wrapUp();
@@ -3221,11 +3666,15 @@ ${stackTraceFormattedLines.join("\n")}
3221
3666
  }
3222
3667
  }
3223
3668
  };
3669
+ var LocalConstants;
3670
+ (function(LocalConstants2) {
3671
+ LocalConstants2[LocalConstants2["MaxDifferencesHistory"] = 1447] = "MaxDifferencesHistory";
3672
+ })(LocalConstants || (LocalConstants = {}));
3224
3673
  var DiffChangeHelper = class {
3225
3674
  constructor() {
3226
3675
  this.m_changes = [];
3227
- this.m_originalStart = 1073741824;
3228
- this.m_modifiedStart = 1073741824;
3676
+ this.m_originalStart = Constants.MAX_SAFE_SMALL_INTEGER;
3677
+ this.m_modifiedStart = Constants.MAX_SAFE_SMALL_INTEGER;
3229
3678
  this.m_originalCount = 0;
3230
3679
  this.m_modifiedCount = 0;
3231
3680
  }
@@ -3240,8 +3689,8 @@ ${stackTraceFormattedLines.join("\n")}
3240
3689
  }
3241
3690
  this.m_originalCount = 0;
3242
3691
  this.m_modifiedCount = 0;
3243
- this.m_originalStart = 1073741824;
3244
- this.m_modifiedStart = 1073741824;
3692
+ this.m_originalStart = Constants.MAX_SAFE_SMALL_INTEGER;
3693
+ this.m_modifiedStart = Constants.MAX_SAFE_SMALL_INTEGER;
3245
3694
  }
3246
3695
  AddOriginalElement(originalIndex, modifiedIndex) {
3247
3696
  this.m_originalStart = Math.min(this.m_originalStart, originalIndex);
@@ -3414,7 +3863,7 @@ ${stackTraceFormattedLines.join("\n")}
3414
3863
  let diagonalMin = diagonalForwardStart;
3415
3864
  let diagonalMax = diagonalForwardEnd;
3416
3865
  let diagonalRelative = midOriginalArr[0] - midModifiedArr[0] - diagonalForwardOffset;
3417
- let lastOriginalIndex = -1073741824;
3866
+ let lastOriginalIndex = Constants.MIN_SAFE_SMALL_INTEGER;
3418
3867
  let historyIndex = this.m_forwardHistory.length - 1;
3419
3868
  do {
3420
3869
  const diagonal = diagonalRelative + diagonalForwardBase;
@@ -3466,7 +3915,7 @@ ${stackTraceFormattedLines.join("\n")}
3466
3915
  diagonalMin = diagonalReverseStart;
3467
3916
  diagonalMax = diagonalReverseEnd;
3468
3917
  diagonalRelative = midOriginalArr[0] - midModifiedArr[0] - diagonalReverseOffset;
3469
- lastOriginalIndex = 1073741824;
3918
+ lastOriginalIndex = Constants.MAX_SAFE_SMALL_INTEGER;
3470
3919
  historyIndex = deltaIsEven ? this.m_reverseHistory.length - 1 : this.m_reverseHistory.length - 2;
3471
3920
  do {
3472
3921
  const diagonal = diagonalRelative + diagonalReverseBase;
@@ -3549,7 +3998,7 @@ ${stackTraceFormattedLines.join("\n")}
3549
3998
  if (originalIndex >= reversePoints[diagonal]) {
3550
3999
  midOriginalArr[0] = originalIndex;
3551
4000
  midModifiedArr[0] = modifiedIndex;
3552
- if (tempOriginalIndex <= reversePoints[diagonal] && 1447 > 0 && numDifferences <= 1447 + 1) {
4001
+ if (tempOriginalIndex <= reversePoints[diagonal] && LocalConstants.MaxDifferencesHistory > 0 && numDifferences <= LocalConstants.MaxDifferencesHistory + 1) {
3553
4002
  return this.WALKTRACE(diagonalForwardBase, diagonalForwardStart, diagonalForwardEnd, diagonalForwardOffset, diagonalReverseBase, diagonalReverseStart, diagonalReverseEnd, diagonalReverseOffset, forwardPoints, reversePoints, originalIndex, originalEnd, midOriginalArr, modifiedIndex, modifiedEnd, midModifiedArr, deltaIsEven, quitEarlyArr);
3554
4003
  } else {
3555
4004
  return null;
@@ -3562,7 +4011,7 @@ ${stackTraceFormattedLines.join("\n")}
3562
4011
  quitEarlyArr[0] = true;
3563
4012
  midOriginalArr[0] = furthestOriginalIndex;
3564
4013
  midModifiedArr[0] = furthestModifiedIndex;
3565
- if (matchLengthOfLongest > 0 && 1447 > 0 && numDifferences <= 1447 + 1) {
4014
+ if (matchLengthOfLongest > 0 && LocalConstants.MaxDifferencesHistory > 0 && numDifferences <= LocalConstants.MaxDifferencesHistory + 1) {
3566
4015
  return this.WALKTRACE(diagonalForwardBase, diagonalForwardStart, diagonalForwardEnd, diagonalForwardOffset, diagonalReverseBase, diagonalReverseStart, diagonalReverseEnd, diagonalReverseOffset, forwardPoints, reversePoints, originalIndex, originalEnd, midOriginalArr, modifiedIndex, modifiedEnd, midModifiedArr, deltaIsEven, quitEarlyArr);
3567
4016
  } else {
3568
4017
  originalStart++;
@@ -3596,7 +4045,7 @@ ${stackTraceFormattedLines.join("\n")}
3596
4045
  if (originalIndex <= forwardPoints[diagonal]) {
3597
4046
  midOriginalArr[0] = originalIndex;
3598
4047
  midModifiedArr[0] = modifiedIndex;
3599
- if (tempOriginalIndex >= forwardPoints[diagonal] && 1447 > 0 && numDifferences <= 1447 + 1) {
4048
+ if (tempOriginalIndex >= forwardPoints[diagonal] && LocalConstants.MaxDifferencesHistory > 0 && numDifferences <= LocalConstants.MaxDifferencesHistory + 1) {
3600
4049
  return this.WALKTRACE(diagonalForwardBase, diagonalForwardStart, diagonalForwardEnd, diagonalForwardOffset, diagonalReverseBase, diagonalReverseStart, diagonalReverseEnd, diagonalReverseOffset, forwardPoints, reversePoints, originalIndex, originalEnd, midOriginalArr, modifiedIndex, modifiedEnd, midModifiedArr, deltaIsEven, quitEarlyArr);
3601
4050
  } else {
3602
4051
  return null;
@@ -3604,7 +4053,7 @@ ${stackTraceFormattedLines.join("\n")}
3604
4053
  }
3605
4054
  }
3606
4055
  }
3607
- if (numDifferences <= 1447) {
4056
+ if (numDifferences <= LocalConstants.MaxDifferencesHistory) {
3608
4057
  let temp = new Int32Array(diagonalForwardEnd - diagonalForwardStart + 2);
3609
4058
  temp[0] = diagonalForwardBase - diagonalForwardStart + 1;
3610
4059
  MyArray.Copy2(forwardPoints, diagonalForwardStart, temp, 1, diagonalForwardEnd - diagonalForwardStart + 1);
@@ -3842,6 +4291,29 @@ ${stackTraceFormattedLines.join("\n")}
3842
4291
  }
3843
4292
  };
3844
4293
 
4294
+ // node_modules/vscode/vscode/src/vs/base/common/marshallingIds.js
4295
+ var MarshalledId;
4296
+ (function(MarshalledId2) {
4297
+ MarshalledId2[MarshalledId2["Uri"] = 1] = "Uri";
4298
+ MarshalledId2[MarshalledId2["Regexp"] = 2] = "Regexp";
4299
+ MarshalledId2[MarshalledId2["ScmResource"] = 3] = "ScmResource";
4300
+ MarshalledId2[MarshalledId2["ScmResourceGroup"] = 4] = "ScmResourceGroup";
4301
+ MarshalledId2[MarshalledId2["ScmProvider"] = 5] = "ScmProvider";
4302
+ MarshalledId2[MarshalledId2["CommentController"] = 6] = "CommentController";
4303
+ MarshalledId2[MarshalledId2["CommentThread"] = 7] = "CommentThread";
4304
+ MarshalledId2[MarshalledId2["CommentThreadInstance"] = 8] = "CommentThreadInstance";
4305
+ MarshalledId2[MarshalledId2["CommentThreadReply"] = 9] = "CommentThreadReply";
4306
+ MarshalledId2[MarshalledId2["CommentNode"] = 10] = "CommentNode";
4307
+ MarshalledId2[MarshalledId2["CommentThreadNode"] = 11] = "CommentThreadNode";
4308
+ MarshalledId2[MarshalledId2["TimelineActionContext"] = 12] = "TimelineActionContext";
4309
+ MarshalledId2[MarshalledId2["NotebookCellActionContext"] = 13] = "NotebookCellActionContext";
4310
+ MarshalledId2[MarshalledId2["NotebookActionContext"] = 14] = "NotebookActionContext";
4311
+ MarshalledId2[MarshalledId2["TerminalContext"] = 15] = "TerminalContext";
4312
+ MarshalledId2[MarshalledId2["TestItemContext"] = 16] = "TestItemContext";
4313
+ MarshalledId2[MarshalledId2["Date"] = 17] = "Date";
4314
+ MarshalledId2[MarshalledId2["TestMessageMenuArgs"] = 18] = "TestMessageMenuArgs";
4315
+ })(MarshalledId || (MarshalledId = {}));
4316
+
3845
4317
  // node_modules/vscode/vscode/src/vs/base/common/process.js
3846
4318
  var safeProcess;
3847
4319
  var vscodeGlobal = globalThis.vscode;
@@ -5149,7 +5621,7 @@ ${stackTraceFormattedLines.join("\n")}
5149
5621
  }
5150
5622
  toJSON() {
5151
5623
  const res = {
5152
- $mid: 1
5624
+ $mid: MarshalledId.Uri
5153
5625
  };
5154
5626
  if (this._fsPath) {
5155
5627
  res.fsPath = this._fsPath;
@@ -5177,32 +5649,32 @@ ${stackTraceFormattedLines.join("\n")}
5177
5649
  }
5178
5650
  };
5179
5651
  var encodeTable = {
5180
- [58]: "%3A",
5181
- [47]: "%2F",
5182
- [63]: "%3F",
5183
- [35]: "%23",
5184
- [91]: "%5B",
5185
- [93]: "%5D",
5186
- [64]: "%40",
5187
- [33]: "%21",
5188
- [36]: "%24",
5189
- [38]: "%26",
5190
- [39]: "%27",
5191
- [40]: "%28",
5192
- [41]: "%29",
5193
- [42]: "%2A",
5194
- [43]: "%2B",
5195
- [44]: "%2C",
5196
- [59]: "%3B",
5197
- [61]: "%3D",
5198
- [32]: "%20"
5652
+ [CharCode.Colon]: "%3A",
5653
+ [CharCode.Slash]: "%2F",
5654
+ [CharCode.QuestionMark]: "%3F",
5655
+ [CharCode.Hash]: "%23",
5656
+ [CharCode.OpenSquareBracket]: "%5B",
5657
+ [CharCode.CloseSquareBracket]: "%5D",
5658
+ [CharCode.AtSign]: "%40",
5659
+ [CharCode.ExclamationMark]: "%21",
5660
+ [CharCode.DollarSign]: "%24",
5661
+ [CharCode.Ampersand]: "%26",
5662
+ [CharCode.SingleQuote]: "%27",
5663
+ [CharCode.OpenParen]: "%28",
5664
+ [CharCode.CloseParen]: "%29",
5665
+ [CharCode.Asterisk]: "%2A",
5666
+ [CharCode.Plus]: "%2B",
5667
+ [CharCode.Comma]: "%2C",
5668
+ [CharCode.Semicolon]: "%3B",
5669
+ [CharCode.Equals]: "%3D",
5670
+ [CharCode.Space]: "%20"
5199
5671
  };
5200
5672
  function encodeURIComponentFast(uriComponent, isPath, isAuthority) {
5201
5673
  let res = void 0;
5202
5674
  let nativeEncodePos = -1;
5203
5675
  for (let pos = 0; pos < uriComponent.length; pos++) {
5204
5676
  const code = uriComponent.charCodeAt(pos);
5205
- if (code >= 97 && code <= 122 || code >= 65 && code <= 90 || code >= 48 && code <= 57 || code === 45 || code === 46 || code === 95 || code === 126 || isPath && code === 47 || isAuthority && code === 91 || isAuthority && code === 93 || isAuthority && code === 58) {
5677
+ if (code >= CharCode.a && code <= CharCode.z || code >= CharCode.A && code <= CharCode.Z || code >= CharCode.Digit0 && code <= CharCode.Digit9 || code === CharCode.Dash || code === CharCode.Period || code === CharCode.Underline || code === CharCode.Tilde || isPath && code === CharCode.Slash || isAuthority && code === CharCode.OpenSquareBracket || isAuthority && code === CharCode.CloseSquareBracket || isAuthority && code === CharCode.Colon) {
5206
5678
  if (nativeEncodePos !== -1) {
5207
5679
  res += encodeURIComponent(uriComponent.substring(nativeEncodePos, pos));
5208
5680
  nativeEncodePos = -1;
@@ -5235,7 +5707,7 @@ ${stackTraceFormattedLines.join("\n")}
5235
5707
  let res = void 0;
5236
5708
  for (let pos = 0; pos < path.length; pos++) {
5237
5709
  const code = path.charCodeAt(pos);
5238
- if (code === 35 || code === 63) {
5710
+ if (code === CharCode.Hash || code === CharCode.QuestionMark) {
5239
5711
  if (res === void 0) {
5240
5712
  res = path.substr(0, pos);
5241
5713
  }
@@ -5252,7 +5724,7 @@ ${stackTraceFormattedLines.join("\n")}
5252
5724
  let value;
5253
5725
  if (uri.authority && uri.path.length > 1 && uri.scheme === "file") {
5254
5726
  value = `//${uri.authority}${uri.path}`;
5255
- } else if (uri.path.charCodeAt(0) === 47 && (uri.path.charCodeAt(1) >= 65 && uri.path.charCodeAt(1) <= 90 || uri.path.charCodeAt(1) >= 97 && uri.path.charCodeAt(1) <= 122) && uri.path.charCodeAt(2) === 58) {
5727
+ } else if (uri.path.charCodeAt(0) === CharCode.Slash && (uri.path.charCodeAt(1) >= CharCode.A && uri.path.charCodeAt(1) <= CharCode.Z || uri.path.charCodeAt(1) >= CharCode.a && uri.path.charCodeAt(1) <= CharCode.z) && uri.path.charCodeAt(2) === CharCode.Colon) {
5256
5728
  if (!keepDriveLetterCasing) {
5257
5729
  value = uri.path[1].toLowerCase() + uri.path.substr(2);
5258
5730
  } else {
@@ -5303,14 +5775,14 @@ ${stackTraceFormattedLines.join("\n")}
5303
5775
  }
5304
5776
  }
5305
5777
  if (path) {
5306
- if (path.length >= 3 && path.charCodeAt(0) === 47 && path.charCodeAt(2) === 58) {
5778
+ if (path.length >= 3 && path.charCodeAt(0) === CharCode.Slash && path.charCodeAt(2) === CharCode.Colon) {
5307
5779
  const code = path.charCodeAt(1);
5308
- if (code >= 65 && code <= 90) {
5780
+ if (code >= CharCode.A && code <= CharCode.Z) {
5309
5781
  path = `/${String.fromCharCode(code + 32)}:${path.substr(3)}`;
5310
5782
  }
5311
- } else if (path.length >= 2 && path.charCodeAt(1) === 58) {
5783
+ } else if (path.length >= 2 && path.charCodeAt(1) === CharCode.Colon) {
5312
5784
  const code = path.charCodeAt(0);
5313
- if (code >= 65 && code <= 90) {
5785
+ if (code >= CharCode.A && code <= CharCode.Z) {
5314
5786
  path = `${String.fromCharCode(code + 32)}:${path.substr(2)}`;
5315
5787
  }
5316
5788
  }
@@ -5710,26 +6182,6 @@ ${stackTraceFormattedLines.join("\n")}
5710
6182
  }
5711
6183
  };
5712
6184
 
5713
- // node_modules/vscode/vscode/src/vs/base/common/uint.js
5714
- function toUint8(v) {
5715
- if (v < 0) {
5716
- return 0;
5717
- }
5718
- if (v > 255) {
5719
- return 255;
5720
- }
5721
- return v | 0;
5722
- }
5723
- function toUint32(v) {
5724
- if (v < 0) {
5725
- return 0;
5726
- }
5727
- if (v > 4294967295) {
5728
- return 4294967295;
5729
- }
5730
- return v | 0;
5731
- }
5732
-
5733
6185
  // node_modules/vscode/vscode/src/vs/editor/common/model/prefixSumComputer.js
5734
6186
  var PrefixSumComputer = class {
5735
6187
  constructor(values) {
@@ -6087,8 +6539,31 @@ ${stackTraceFormattedLines.join("\n")}
6087
6539
  this._map.clear();
6088
6540
  }
6089
6541
  };
6542
+ var Boolean2;
6543
+ (function(Boolean3) {
6544
+ Boolean3[Boolean3["False"] = 0] = "False";
6545
+ Boolean3[Boolean3["True"] = 1] = "True";
6546
+ })(Boolean2 || (Boolean2 = {}));
6090
6547
 
6091
6548
  // node_modules/vscode/vscode/src/vs/editor/common/languages/linkComputer.js
6549
+ var State;
6550
+ (function(State2) {
6551
+ State2[State2["Invalid"] = 0] = "Invalid";
6552
+ State2[State2["Start"] = 1] = "Start";
6553
+ State2[State2["H"] = 2] = "H";
6554
+ State2[State2["HT"] = 3] = "HT";
6555
+ State2[State2["HTT"] = 4] = "HTT";
6556
+ State2[State2["HTTP"] = 5] = "HTTP";
6557
+ State2[State2["F"] = 6] = "F";
6558
+ State2[State2["FI"] = 7] = "FI";
6559
+ State2[State2["FIL"] = 8] = "FIL";
6560
+ State2[State2["BeforeColon"] = 9] = "BeforeColon";
6561
+ State2[State2["AfterColon"] = 10] = "AfterColon";
6562
+ State2[State2["AlmostThere"] = 11] = "AlmostThere";
6563
+ State2[State2["End"] = 12] = "End";
6564
+ State2[State2["Accept"] = 13] = "Accept";
6565
+ State2[State2["LastKnownState"] = 14] = "LastKnownState";
6566
+ })(State || (State = {}));
6092
6567
  var Uint8Matrix = class {
6093
6568
  constructor(rows, cols, defaultValue) {
6094
6569
  const data = new Uint8Array(rows * cols);
@@ -6109,7 +6584,7 @@ ${stackTraceFormattedLines.join("\n")}
6109
6584
  var StateMachine = class {
6110
6585
  constructor(edges) {
6111
6586
  let maxCharCode = 0;
6112
- let maxState = 0;
6587
+ let maxState = State.Invalid;
6113
6588
  for (let i = 0, len = edges.length; i < len; i++) {
6114
6589
  const [from, chCode, to] = edges[i];
6115
6590
  if (chCode > maxCharCode) {
@@ -6124,7 +6599,7 @@ ${stackTraceFormattedLines.join("\n")}
6124
6599
  }
6125
6600
  maxCharCode++;
6126
6601
  maxState++;
6127
- const states = new Uint8Matrix(maxState, maxCharCode, 0);
6602
+ const states = new Uint8Matrix(maxState, maxCharCode, State.Invalid);
6128
6603
  for (let i = 0, len = edges.length; i < len; i++) {
6129
6604
  const [from, chCode, to] = edges[i];
6130
6605
  states.set(from, chCode, to);
@@ -6134,7 +6609,7 @@ ${stackTraceFormattedLines.join("\n")}
6134
6609
  }
6135
6610
  nextState(currentState, chCode) {
6136
6611
  if (chCode < 0 || chCode >= this._maxCharCode) {
6137
- return 0;
6612
+ return State.Invalid;
6138
6613
  }
6139
6614
  return this._states.get(currentState, chCode);
6140
6615
  }
@@ -6143,43 +6618,49 @@ ${stackTraceFormattedLines.join("\n")}
6143
6618
  function getStateMachine() {
6144
6619
  if (_stateMachine === null) {
6145
6620
  _stateMachine = new StateMachine([
6146
- [1, 104, 2],
6147
- [1, 72, 2],
6148
- [1, 102, 6],
6149
- [1, 70, 6],
6150
- [2, 116, 3],
6151
- [2, 84, 3],
6152
- [3, 116, 4],
6153
- [3, 84, 4],
6154
- [4, 112, 5],
6155
- [4, 80, 5],
6156
- [5, 115, 9],
6157
- [5, 83, 9],
6158
- [5, 58, 10],
6159
- [6, 105, 7],
6160
- [6, 73, 7],
6161
- [7, 108, 8],
6162
- [7, 76, 8],
6163
- [8, 101, 9],
6164
- [8, 69, 9],
6165
- [9, 58, 10],
6166
- [10, 47, 11],
6167
- [11, 47, 12]
6621
+ [State.Start, CharCode.h, State.H],
6622
+ [State.Start, CharCode.H, State.H],
6623
+ [State.Start, CharCode.f, State.F],
6624
+ [State.Start, CharCode.F, State.F],
6625
+ [State.H, CharCode.t, State.HT],
6626
+ [State.H, CharCode.T, State.HT],
6627
+ [State.HT, CharCode.t, State.HTT],
6628
+ [State.HT, CharCode.T, State.HTT],
6629
+ [State.HTT, CharCode.p, State.HTTP],
6630
+ [State.HTT, CharCode.P, State.HTTP],
6631
+ [State.HTTP, CharCode.s, State.BeforeColon],
6632
+ [State.HTTP, CharCode.S, State.BeforeColon],
6633
+ [State.HTTP, CharCode.Colon, State.AfterColon],
6634
+ [State.F, CharCode.i, State.FI],
6635
+ [State.F, CharCode.I, State.FI],
6636
+ [State.FI, CharCode.l, State.FIL],
6637
+ [State.FI, CharCode.L, State.FIL],
6638
+ [State.FIL, CharCode.e, State.BeforeColon],
6639
+ [State.FIL, CharCode.E, State.BeforeColon],
6640
+ [State.BeforeColon, CharCode.Colon, State.AfterColon],
6641
+ [State.AfterColon, CharCode.Slash, State.AlmostThere],
6642
+ [State.AlmostThere, CharCode.Slash, State.End]
6168
6643
  ]);
6169
6644
  }
6170
6645
  return _stateMachine;
6171
6646
  }
6647
+ var CharacterClass;
6648
+ (function(CharacterClass2) {
6649
+ CharacterClass2[CharacterClass2["None"] = 0] = "None";
6650
+ CharacterClass2[CharacterClass2["ForceTermination"] = 1] = "ForceTermination";
6651
+ CharacterClass2[CharacterClass2["CannotEndIn"] = 2] = "CannotEndIn";
6652
+ })(CharacterClass || (CharacterClass = {}));
6172
6653
  var _classifier = null;
6173
6654
  function getClassifier() {
6174
6655
  if (_classifier === null) {
6175
- _classifier = new CharacterClassifier(0);
6656
+ _classifier = new CharacterClassifier(CharacterClass.None);
6176
6657
  const FORCE_TERMINATION_CHARACTERS = ` <>'"\u3001\u3002\uFF61\uFF64\uFF0C\uFF0E\uFF1A\uFF1B\u2018\u3008\u300C\u300E\u3014\uFF08\uFF3B\uFF5B\uFF62\uFF63\uFF5D\uFF3D\uFF09\u3015\u300F\u300D\u3009\u2019\uFF40\uFF5E\u2026`;
6177
6658
  for (let i = 0; i < FORCE_TERMINATION_CHARACTERS.length; i++) {
6178
- _classifier.set(FORCE_TERMINATION_CHARACTERS.charCodeAt(i), 1);
6659
+ _classifier.set(FORCE_TERMINATION_CHARACTERS.charCodeAt(i), CharacterClass.ForceTermination);
6179
6660
  }
6180
6661
  const CANNOT_END_WITH_CHARACTERS = ".,;:";
6181
6662
  for (let i = 0; i < CANNOT_END_WITH_CHARACTERS.length; i++) {
6182
- _classifier.set(CANNOT_END_WITH_CHARACTERS.charCodeAt(i), 2);
6663
+ _classifier.set(CANNOT_END_WITH_CHARACTERS.charCodeAt(i), CharacterClass.CannotEndIn);
6183
6664
  }
6184
6665
  }
6185
6666
  return _classifier;
@@ -6190,7 +6671,7 @@ ${stackTraceFormattedLines.join("\n")}
6190
6671
  do {
6191
6672
  const chCode = line.charCodeAt(lastIncludedCharIndex);
6192
6673
  const chClass = classifier.get(chCode);
6193
- if (chClass !== 2) {
6674
+ if (chClass !== CharacterClass.CannotEndIn) {
6194
6675
  break;
6195
6676
  }
6196
6677
  lastIncludedCharIndex--;
@@ -6198,7 +6679,7 @@ ${stackTraceFormattedLines.join("\n")}
6198
6679
  if (linkBeginIndex > 0) {
6199
6680
  const charCodeBeforeLink = line.charCodeAt(linkBeginIndex - 1);
6200
6681
  const lastCharCodeInLink = line.charCodeAt(lastIncludedCharIndex);
6201
- if (charCodeBeforeLink === 40 && lastCharCodeInLink === 41 || charCodeBeforeLink === 91 && lastCharCodeInLink === 93 || charCodeBeforeLink === 123 && lastCharCodeInLink === 125) {
6682
+ if (charCodeBeforeLink === CharCode.OpenParen && lastCharCodeInLink === CharCode.CloseParen || charCodeBeforeLink === CharCode.OpenSquareBracket && lastCharCodeInLink === CharCode.CloseSquareBracket || charCodeBeforeLink === CharCode.OpenCurlyBrace && lastCharCodeInLink === CharCode.CloseCurlyBrace) {
6202
6683
  lastIncludedCharIndex--;
6203
6684
  }
6204
6685
  }
@@ -6221,7 +6702,7 @@ ${stackTraceFormattedLines.join("\n")}
6221
6702
  let j = 0;
6222
6703
  let linkBeginIndex = 0;
6223
6704
  let linkBeginChCode = 0;
6224
- let state = 1;
6705
+ let state = State.Start;
6225
6706
  let hasOpenParens = false;
6226
6707
  let hasOpenSquareBracket = false;
6227
6708
  let inSquareBrackets = false;
@@ -6229,80 +6710,80 @@ ${stackTraceFormattedLines.join("\n")}
6229
6710
  while (j < len) {
6230
6711
  let resetStateMachine = false;
6231
6712
  const chCode = line.charCodeAt(j);
6232
- if (state === 13) {
6713
+ if (state === State.Accept) {
6233
6714
  let chClass;
6234
6715
  switch (chCode) {
6235
- case 40:
6716
+ case CharCode.OpenParen:
6236
6717
  hasOpenParens = true;
6237
- chClass = 0;
6718
+ chClass = CharacterClass.None;
6238
6719
  break;
6239
- case 41:
6240
- chClass = hasOpenParens ? 0 : 1;
6720
+ case CharCode.CloseParen:
6721
+ chClass = hasOpenParens ? CharacterClass.None : CharacterClass.ForceTermination;
6241
6722
  break;
6242
- case 91:
6723
+ case CharCode.OpenSquareBracket:
6243
6724
  inSquareBrackets = true;
6244
6725
  hasOpenSquareBracket = true;
6245
- chClass = 0;
6726
+ chClass = CharacterClass.None;
6246
6727
  break;
6247
- case 93:
6728
+ case CharCode.CloseSquareBracket:
6248
6729
  inSquareBrackets = false;
6249
- chClass = hasOpenSquareBracket ? 0 : 1;
6730
+ chClass = hasOpenSquareBracket ? CharacterClass.None : CharacterClass.ForceTermination;
6250
6731
  break;
6251
- case 123:
6732
+ case CharCode.OpenCurlyBrace:
6252
6733
  hasOpenCurlyBracket = true;
6253
- chClass = 0;
6734
+ chClass = CharacterClass.None;
6254
6735
  break;
6255
- case 125:
6256
- chClass = hasOpenCurlyBracket ? 0 : 1;
6736
+ case CharCode.CloseCurlyBrace:
6737
+ chClass = hasOpenCurlyBracket ? CharacterClass.None : CharacterClass.ForceTermination;
6257
6738
  break;
6258
- case 39:
6259
- case 34:
6260
- case 96:
6739
+ case CharCode.SingleQuote:
6740
+ case CharCode.DoubleQuote:
6741
+ case CharCode.BackTick:
6261
6742
  if (linkBeginChCode === chCode) {
6262
- chClass = 1;
6263
- } else if (linkBeginChCode === 39 || linkBeginChCode === 34 || linkBeginChCode === 96) {
6264
- chClass = 0;
6743
+ chClass = CharacterClass.ForceTermination;
6744
+ } else if (linkBeginChCode === CharCode.SingleQuote || linkBeginChCode === CharCode.DoubleQuote || linkBeginChCode === CharCode.BackTick) {
6745
+ chClass = CharacterClass.None;
6265
6746
  } else {
6266
- chClass = 1;
6747
+ chClass = CharacterClass.ForceTermination;
6267
6748
  }
6268
6749
  break;
6269
- case 42:
6270
- chClass = linkBeginChCode === 42 ? 1 : 0;
6750
+ case CharCode.Asterisk:
6751
+ chClass = linkBeginChCode === CharCode.Asterisk ? CharacterClass.ForceTermination : CharacterClass.None;
6271
6752
  break;
6272
- case 124:
6273
- chClass = linkBeginChCode === 124 ? 1 : 0;
6753
+ case CharCode.Pipe:
6754
+ chClass = linkBeginChCode === CharCode.Pipe ? CharacterClass.ForceTermination : CharacterClass.None;
6274
6755
  break;
6275
- case 32:
6276
- chClass = inSquareBrackets ? 0 : 1;
6756
+ case CharCode.Space:
6757
+ chClass = inSquareBrackets ? CharacterClass.None : CharacterClass.ForceTermination;
6277
6758
  break;
6278
6759
  default:
6279
6760
  chClass = classifier.get(chCode);
6280
6761
  }
6281
- if (chClass === 1) {
6762
+ if (chClass === CharacterClass.ForceTermination) {
6282
6763
  result.push(_LinkComputer._createLink(classifier, line, i, linkBeginIndex, j));
6283
6764
  resetStateMachine = true;
6284
6765
  }
6285
- } else if (state === 12) {
6766
+ } else if (state === State.End) {
6286
6767
  let chClass;
6287
- if (chCode === 91) {
6768
+ if (chCode === CharCode.OpenSquareBracket) {
6288
6769
  hasOpenSquareBracket = true;
6289
- chClass = 0;
6770
+ chClass = CharacterClass.None;
6290
6771
  } else {
6291
6772
  chClass = classifier.get(chCode);
6292
6773
  }
6293
- if (chClass === 1) {
6774
+ if (chClass === CharacterClass.ForceTermination) {
6294
6775
  resetStateMachine = true;
6295
6776
  } else {
6296
- state = 13;
6777
+ state = State.Accept;
6297
6778
  }
6298
6779
  } else {
6299
6780
  state = stateMachine.nextState(state, chCode);
6300
- if (state === 0) {
6781
+ if (state === State.Invalid) {
6301
6782
  resetStateMachine = true;
6302
6783
  }
6303
6784
  }
6304
6785
  if (resetStateMachine) {
6305
- state = 1;
6786
+ state = State.Start;
6306
6787
  hasOpenParens = false;
6307
6788
  hasOpenSquareBracket = false;
6308
6789
  hasOpenCurlyBracket = false;
@@ -6311,7 +6792,7 @@ ${stackTraceFormattedLines.join("\n")}
6311
6792
  }
6312
6793
  j++;
6313
6794
  }
6314
- if (state === 13) {
6795
+ if (state === State.Accept) {
6315
6796
  result.push(_LinkComputer._createLink(classifier, line, i, linkBeginIndex, len));
6316
6797
  }
6317
6798
  }
@@ -6407,6 +6888,341 @@ ${stackTraceFormattedLines.join("\n")}
6407
6888
  };
6408
6889
 
6409
6890
  // node_modules/vscode/vscode/src/vs/base/common/keyCodes.js
6891
+ var KeyCode;
6892
+ (function(KeyCode3) {
6893
+ KeyCode3[KeyCode3["DependsOnKbLayout"] = -1] = "DependsOnKbLayout";
6894
+ KeyCode3[KeyCode3["Unknown"] = 0] = "Unknown";
6895
+ KeyCode3[KeyCode3["Backspace"] = 1] = "Backspace";
6896
+ KeyCode3[KeyCode3["Tab"] = 2] = "Tab";
6897
+ KeyCode3[KeyCode3["Enter"] = 3] = "Enter";
6898
+ KeyCode3[KeyCode3["Shift"] = 4] = "Shift";
6899
+ KeyCode3[KeyCode3["Ctrl"] = 5] = "Ctrl";
6900
+ KeyCode3[KeyCode3["Alt"] = 6] = "Alt";
6901
+ KeyCode3[KeyCode3["PauseBreak"] = 7] = "PauseBreak";
6902
+ KeyCode3[KeyCode3["CapsLock"] = 8] = "CapsLock";
6903
+ KeyCode3[KeyCode3["Escape"] = 9] = "Escape";
6904
+ KeyCode3[KeyCode3["Space"] = 10] = "Space";
6905
+ KeyCode3[KeyCode3["PageUp"] = 11] = "PageUp";
6906
+ KeyCode3[KeyCode3["PageDown"] = 12] = "PageDown";
6907
+ KeyCode3[KeyCode3["End"] = 13] = "End";
6908
+ KeyCode3[KeyCode3["Home"] = 14] = "Home";
6909
+ KeyCode3[KeyCode3["LeftArrow"] = 15] = "LeftArrow";
6910
+ KeyCode3[KeyCode3["UpArrow"] = 16] = "UpArrow";
6911
+ KeyCode3[KeyCode3["RightArrow"] = 17] = "RightArrow";
6912
+ KeyCode3[KeyCode3["DownArrow"] = 18] = "DownArrow";
6913
+ KeyCode3[KeyCode3["Insert"] = 19] = "Insert";
6914
+ KeyCode3[KeyCode3["Delete"] = 20] = "Delete";
6915
+ KeyCode3[KeyCode3["Digit0"] = 21] = "Digit0";
6916
+ KeyCode3[KeyCode3["Digit1"] = 22] = "Digit1";
6917
+ KeyCode3[KeyCode3["Digit2"] = 23] = "Digit2";
6918
+ KeyCode3[KeyCode3["Digit3"] = 24] = "Digit3";
6919
+ KeyCode3[KeyCode3["Digit4"] = 25] = "Digit4";
6920
+ KeyCode3[KeyCode3["Digit5"] = 26] = "Digit5";
6921
+ KeyCode3[KeyCode3["Digit6"] = 27] = "Digit6";
6922
+ KeyCode3[KeyCode3["Digit7"] = 28] = "Digit7";
6923
+ KeyCode3[KeyCode3["Digit8"] = 29] = "Digit8";
6924
+ KeyCode3[KeyCode3["Digit9"] = 30] = "Digit9";
6925
+ KeyCode3[KeyCode3["KeyA"] = 31] = "KeyA";
6926
+ KeyCode3[KeyCode3["KeyB"] = 32] = "KeyB";
6927
+ KeyCode3[KeyCode3["KeyC"] = 33] = "KeyC";
6928
+ KeyCode3[KeyCode3["KeyD"] = 34] = "KeyD";
6929
+ KeyCode3[KeyCode3["KeyE"] = 35] = "KeyE";
6930
+ KeyCode3[KeyCode3["KeyF"] = 36] = "KeyF";
6931
+ KeyCode3[KeyCode3["KeyG"] = 37] = "KeyG";
6932
+ KeyCode3[KeyCode3["KeyH"] = 38] = "KeyH";
6933
+ KeyCode3[KeyCode3["KeyI"] = 39] = "KeyI";
6934
+ KeyCode3[KeyCode3["KeyJ"] = 40] = "KeyJ";
6935
+ KeyCode3[KeyCode3["KeyK"] = 41] = "KeyK";
6936
+ KeyCode3[KeyCode3["KeyL"] = 42] = "KeyL";
6937
+ KeyCode3[KeyCode3["KeyM"] = 43] = "KeyM";
6938
+ KeyCode3[KeyCode3["KeyN"] = 44] = "KeyN";
6939
+ KeyCode3[KeyCode3["KeyO"] = 45] = "KeyO";
6940
+ KeyCode3[KeyCode3["KeyP"] = 46] = "KeyP";
6941
+ KeyCode3[KeyCode3["KeyQ"] = 47] = "KeyQ";
6942
+ KeyCode3[KeyCode3["KeyR"] = 48] = "KeyR";
6943
+ KeyCode3[KeyCode3["KeyS"] = 49] = "KeyS";
6944
+ KeyCode3[KeyCode3["KeyT"] = 50] = "KeyT";
6945
+ KeyCode3[KeyCode3["KeyU"] = 51] = "KeyU";
6946
+ KeyCode3[KeyCode3["KeyV"] = 52] = "KeyV";
6947
+ KeyCode3[KeyCode3["KeyW"] = 53] = "KeyW";
6948
+ KeyCode3[KeyCode3["KeyX"] = 54] = "KeyX";
6949
+ KeyCode3[KeyCode3["KeyY"] = 55] = "KeyY";
6950
+ KeyCode3[KeyCode3["KeyZ"] = 56] = "KeyZ";
6951
+ KeyCode3[KeyCode3["Meta"] = 57] = "Meta";
6952
+ KeyCode3[KeyCode3["ContextMenu"] = 58] = "ContextMenu";
6953
+ KeyCode3[KeyCode3["F1"] = 59] = "F1";
6954
+ KeyCode3[KeyCode3["F2"] = 60] = "F2";
6955
+ KeyCode3[KeyCode3["F3"] = 61] = "F3";
6956
+ KeyCode3[KeyCode3["F4"] = 62] = "F4";
6957
+ KeyCode3[KeyCode3["F5"] = 63] = "F5";
6958
+ KeyCode3[KeyCode3["F6"] = 64] = "F6";
6959
+ KeyCode3[KeyCode3["F7"] = 65] = "F7";
6960
+ KeyCode3[KeyCode3["F8"] = 66] = "F8";
6961
+ KeyCode3[KeyCode3["F9"] = 67] = "F9";
6962
+ KeyCode3[KeyCode3["F10"] = 68] = "F10";
6963
+ KeyCode3[KeyCode3["F11"] = 69] = "F11";
6964
+ KeyCode3[KeyCode3["F12"] = 70] = "F12";
6965
+ KeyCode3[KeyCode3["F13"] = 71] = "F13";
6966
+ KeyCode3[KeyCode3["F14"] = 72] = "F14";
6967
+ KeyCode3[KeyCode3["F15"] = 73] = "F15";
6968
+ KeyCode3[KeyCode3["F16"] = 74] = "F16";
6969
+ KeyCode3[KeyCode3["F17"] = 75] = "F17";
6970
+ KeyCode3[KeyCode3["F18"] = 76] = "F18";
6971
+ KeyCode3[KeyCode3["F19"] = 77] = "F19";
6972
+ KeyCode3[KeyCode3["F20"] = 78] = "F20";
6973
+ KeyCode3[KeyCode3["F21"] = 79] = "F21";
6974
+ KeyCode3[KeyCode3["F22"] = 80] = "F22";
6975
+ KeyCode3[KeyCode3["F23"] = 81] = "F23";
6976
+ KeyCode3[KeyCode3["F24"] = 82] = "F24";
6977
+ KeyCode3[KeyCode3["NumLock"] = 83] = "NumLock";
6978
+ KeyCode3[KeyCode3["ScrollLock"] = 84] = "ScrollLock";
6979
+ KeyCode3[KeyCode3["Semicolon"] = 85] = "Semicolon";
6980
+ KeyCode3[KeyCode3["Equal"] = 86] = "Equal";
6981
+ KeyCode3[KeyCode3["Comma"] = 87] = "Comma";
6982
+ KeyCode3[KeyCode3["Minus"] = 88] = "Minus";
6983
+ KeyCode3[KeyCode3["Period"] = 89] = "Period";
6984
+ KeyCode3[KeyCode3["Slash"] = 90] = "Slash";
6985
+ KeyCode3[KeyCode3["Backquote"] = 91] = "Backquote";
6986
+ KeyCode3[KeyCode3["BracketLeft"] = 92] = "BracketLeft";
6987
+ KeyCode3[KeyCode3["Backslash"] = 93] = "Backslash";
6988
+ KeyCode3[KeyCode3["BracketRight"] = 94] = "BracketRight";
6989
+ KeyCode3[KeyCode3["Quote"] = 95] = "Quote";
6990
+ KeyCode3[KeyCode3["OEM_8"] = 96] = "OEM_8";
6991
+ KeyCode3[KeyCode3["IntlBackslash"] = 97] = "IntlBackslash";
6992
+ KeyCode3[KeyCode3["Numpad0"] = 98] = "Numpad0";
6993
+ KeyCode3[KeyCode3["Numpad1"] = 99] = "Numpad1";
6994
+ KeyCode3[KeyCode3["Numpad2"] = 100] = "Numpad2";
6995
+ KeyCode3[KeyCode3["Numpad3"] = 101] = "Numpad3";
6996
+ KeyCode3[KeyCode3["Numpad4"] = 102] = "Numpad4";
6997
+ KeyCode3[KeyCode3["Numpad5"] = 103] = "Numpad5";
6998
+ KeyCode3[KeyCode3["Numpad6"] = 104] = "Numpad6";
6999
+ KeyCode3[KeyCode3["Numpad7"] = 105] = "Numpad7";
7000
+ KeyCode3[KeyCode3["Numpad8"] = 106] = "Numpad8";
7001
+ KeyCode3[KeyCode3["Numpad9"] = 107] = "Numpad9";
7002
+ KeyCode3[KeyCode3["NumpadMultiply"] = 108] = "NumpadMultiply";
7003
+ KeyCode3[KeyCode3["NumpadAdd"] = 109] = "NumpadAdd";
7004
+ KeyCode3[KeyCode3["NUMPAD_SEPARATOR"] = 110] = "NUMPAD_SEPARATOR";
7005
+ KeyCode3[KeyCode3["NumpadSubtract"] = 111] = "NumpadSubtract";
7006
+ KeyCode3[KeyCode3["NumpadDecimal"] = 112] = "NumpadDecimal";
7007
+ KeyCode3[KeyCode3["NumpadDivide"] = 113] = "NumpadDivide";
7008
+ KeyCode3[KeyCode3["KEY_IN_COMPOSITION"] = 114] = "KEY_IN_COMPOSITION";
7009
+ KeyCode3[KeyCode3["ABNT_C1"] = 115] = "ABNT_C1";
7010
+ KeyCode3[KeyCode3["ABNT_C2"] = 116] = "ABNT_C2";
7011
+ KeyCode3[KeyCode3["AudioVolumeMute"] = 117] = "AudioVolumeMute";
7012
+ KeyCode3[KeyCode3["AudioVolumeUp"] = 118] = "AudioVolumeUp";
7013
+ KeyCode3[KeyCode3["AudioVolumeDown"] = 119] = "AudioVolumeDown";
7014
+ KeyCode3[KeyCode3["BrowserSearch"] = 120] = "BrowserSearch";
7015
+ KeyCode3[KeyCode3["BrowserHome"] = 121] = "BrowserHome";
7016
+ KeyCode3[KeyCode3["BrowserBack"] = 122] = "BrowserBack";
7017
+ KeyCode3[KeyCode3["BrowserForward"] = 123] = "BrowserForward";
7018
+ KeyCode3[KeyCode3["MediaTrackNext"] = 124] = "MediaTrackNext";
7019
+ KeyCode3[KeyCode3["MediaTrackPrevious"] = 125] = "MediaTrackPrevious";
7020
+ KeyCode3[KeyCode3["MediaStop"] = 126] = "MediaStop";
7021
+ KeyCode3[KeyCode3["MediaPlayPause"] = 127] = "MediaPlayPause";
7022
+ KeyCode3[KeyCode3["LaunchMediaPlayer"] = 128] = "LaunchMediaPlayer";
7023
+ KeyCode3[KeyCode3["LaunchMail"] = 129] = "LaunchMail";
7024
+ KeyCode3[KeyCode3["LaunchApp2"] = 130] = "LaunchApp2";
7025
+ KeyCode3[KeyCode3["Clear"] = 131] = "Clear";
7026
+ KeyCode3[KeyCode3["MAX_VALUE"] = 132] = "MAX_VALUE";
7027
+ })(KeyCode || (KeyCode = {}));
7028
+ var ScanCode;
7029
+ (function(ScanCode2) {
7030
+ ScanCode2[ScanCode2["DependsOnKbLayout"] = -1] = "DependsOnKbLayout";
7031
+ ScanCode2[ScanCode2["None"] = 0] = "None";
7032
+ ScanCode2[ScanCode2["Hyper"] = 1] = "Hyper";
7033
+ ScanCode2[ScanCode2["Super"] = 2] = "Super";
7034
+ ScanCode2[ScanCode2["Fn"] = 3] = "Fn";
7035
+ ScanCode2[ScanCode2["FnLock"] = 4] = "FnLock";
7036
+ ScanCode2[ScanCode2["Suspend"] = 5] = "Suspend";
7037
+ ScanCode2[ScanCode2["Resume"] = 6] = "Resume";
7038
+ ScanCode2[ScanCode2["Turbo"] = 7] = "Turbo";
7039
+ ScanCode2[ScanCode2["Sleep"] = 8] = "Sleep";
7040
+ ScanCode2[ScanCode2["WakeUp"] = 9] = "WakeUp";
7041
+ ScanCode2[ScanCode2["KeyA"] = 10] = "KeyA";
7042
+ ScanCode2[ScanCode2["KeyB"] = 11] = "KeyB";
7043
+ ScanCode2[ScanCode2["KeyC"] = 12] = "KeyC";
7044
+ ScanCode2[ScanCode2["KeyD"] = 13] = "KeyD";
7045
+ ScanCode2[ScanCode2["KeyE"] = 14] = "KeyE";
7046
+ ScanCode2[ScanCode2["KeyF"] = 15] = "KeyF";
7047
+ ScanCode2[ScanCode2["KeyG"] = 16] = "KeyG";
7048
+ ScanCode2[ScanCode2["KeyH"] = 17] = "KeyH";
7049
+ ScanCode2[ScanCode2["KeyI"] = 18] = "KeyI";
7050
+ ScanCode2[ScanCode2["KeyJ"] = 19] = "KeyJ";
7051
+ ScanCode2[ScanCode2["KeyK"] = 20] = "KeyK";
7052
+ ScanCode2[ScanCode2["KeyL"] = 21] = "KeyL";
7053
+ ScanCode2[ScanCode2["KeyM"] = 22] = "KeyM";
7054
+ ScanCode2[ScanCode2["KeyN"] = 23] = "KeyN";
7055
+ ScanCode2[ScanCode2["KeyO"] = 24] = "KeyO";
7056
+ ScanCode2[ScanCode2["KeyP"] = 25] = "KeyP";
7057
+ ScanCode2[ScanCode2["KeyQ"] = 26] = "KeyQ";
7058
+ ScanCode2[ScanCode2["KeyR"] = 27] = "KeyR";
7059
+ ScanCode2[ScanCode2["KeyS"] = 28] = "KeyS";
7060
+ ScanCode2[ScanCode2["KeyT"] = 29] = "KeyT";
7061
+ ScanCode2[ScanCode2["KeyU"] = 30] = "KeyU";
7062
+ ScanCode2[ScanCode2["KeyV"] = 31] = "KeyV";
7063
+ ScanCode2[ScanCode2["KeyW"] = 32] = "KeyW";
7064
+ ScanCode2[ScanCode2["KeyX"] = 33] = "KeyX";
7065
+ ScanCode2[ScanCode2["KeyY"] = 34] = "KeyY";
7066
+ ScanCode2[ScanCode2["KeyZ"] = 35] = "KeyZ";
7067
+ ScanCode2[ScanCode2["Digit1"] = 36] = "Digit1";
7068
+ ScanCode2[ScanCode2["Digit2"] = 37] = "Digit2";
7069
+ ScanCode2[ScanCode2["Digit3"] = 38] = "Digit3";
7070
+ ScanCode2[ScanCode2["Digit4"] = 39] = "Digit4";
7071
+ ScanCode2[ScanCode2["Digit5"] = 40] = "Digit5";
7072
+ ScanCode2[ScanCode2["Digit6"] = 41] = "Digit6";
7073
+ ScanCode2[ScanCode2["Digit7"] = 42] = "Digit7";
7074
+ ScanCode2[ScanCode2["Digit8"] = 43] = "Digit8";
7075
+ ScanCode2[ScanCode2["Digit9"] = 44] = "Digit9";
7076
+ ScanCode2[ScanCode2["Digit0"] = 45] = "Digit0";
7077
+ ScanCode2[ScanCode2["Enter"] = 46] = "Enter";
7078
+ ScanCode2[ScanCode2["Escape"] = 47] = "Escape";
7079
+ ScanCode2[ScanCode2["Backspace"] = 48] = "Backspace";
7080
+ ScanCode2[ScanCode2["Tab"] = 49] = "Tab";
7081
+ ScanCode2[ScanCode2["Space"] = 50] = "Space";
7082
+ ScanCode2[ScanCode2["Minus"] = 51] = "Minus";
7083
+ ScanCode2[ScanCode2["Equal"] = 52] = "Equal";
7084
+ ScanCode2[ScanCode2["BracketLeft"] = 53] = "BracketLeft";
7085
+ ScanCode2[ScanCode2["BracketRight"] = 54] = "BracketRight";
7086
+ ScanCode2[ScanCode2["Backslash"] = 55] = "Backslash";
7087
+ ScanCode2[ScanCode2["IntlHash"] = 56] = "IntlHash";
7088
+ ScanCode2[ScanCode2["Semicolon"] = 57] = "Semicolon";
7089
+ ScanCode2[ScanCode2["Quote"] = 58] = "Quote";
7090
+ ScanCode2[ScanCode2["Backquote"] = 59] = "Backquote";
7091
+ ScanCode2[ScanCode2["Comma"] = 60] = "Comma";
7092
+ ScanCode2[ScanCode2["Period"] = 61] = "Period";
7093
+ ScanCode2[ScanCode2["Slash"] = 62] = "Slash";
7094
+ ScanCode2[ScanCode2["CapsLock"] = 63] = "CapsLock";
7095
+ ScanCode2[ScanCode2["F1"] = 64] = "F1";
7096
+ ScanCode2[ScanCode2["F2"] = 65] = "F2";
7097
+ ScanCode2[ScanCode2["F3"] = 66] = "F3";
7098
+ ScanCode2[ScanCode2["F4"] = 67] = "F4";
7099
+ ScanCode2[ScanCode2["F5"] = 68] = "F5";
7100
+ ScanCode2[ScanCode2["F6"] = 69] = "F6";
7101
+ ScanCode2[ScanCode2["F7"] = 70] = "F7";
7102
+ ScanCode2[ScanCode2["F8"] = 71] = "F8";
7103
+ ScanCode2[ScanCode2["F9"] = 72] = "F9";
7104
+ ScanCode2[ScanCode2["F10"] = 73] = "F10";
7105
+ ScanCode2[ScanCode2["F11"] = 74] = "F11";
7106
+ ScanCode2[ScanCode2["F12"] = 75] = "F12";
7107
+ ScanCode2[ScanCode2["PrintScreen"] = 76] = "PrintScreen";
7108
+ ScanCode2[ScanCode2["ScrollLock"] = 77] = "ScrollLock";
7109
+ ScanCode2[ScanCode2["Pause"] = 78] = "Pause";
7110
+ ScanCode2[ScanCode2["Insert"] = 79] = "Insert";
7111
+ ScanCode2[ScanCode2["Home"] = 80] = "Home";
7112
+ ScanCode2[ScanCode2["PageUp"] = 81] = "PageUp";
7113
+ ScanCode2[ScanCode2["Delete"] = 82] = "Delete";
7114
+ ScanCode2[ScanCode2["End"] = 83] = "End";
7115
+ ScanCode2[ScanCode2["PageDown"] = 84] = "PageDown";
7116
+ ScanCode2[ScanCode2["ArrowRight"] = 85] = "ArrowRight";
7117
+ ScanCode2[ScanCode2["ArrowLeft"] = 86] = "ArrowLeft";
7118
+ ScanCode2[ScanCode2["ArrowDown"] = 87] = "ArrowDown";
7119
+ ScanCode2[ScanCode2["ArrowUp"] = 88] = "ArrowUp";
7120
+ ScanCode2[ScanCode2["NumLock"] = 89] = "NumLock";
7121
+ ScanCode2[ScanCode2["NumpadDivide"] = 90] = "NumpadDivide";
7122
+ ScanCode2[ScanCode2["NumpadMultiply"] = 91] = "NumpadMultiply";
7123
+ ScanCode2[ScanCode2["NumpadSubtract"] = 92] = "NumpadSubtract";
7124
+ ScanCode2[ScanCode2["NumpadAdd"] = 93] = "NumpadAdd";
7125
+ ScanCode2[ScanCode2["NumpadEnter"] = 94] = "NumpadEnter";
7126
+ ScanCode2[ScanCode2["Numpad1"] = 95] = "Numpad1";
7127
+ ScanCode2[ScanCode2["Numpad2"] = 96] = "Numpad2";
7128
+ ScanCode2[ScanCode2["Numpad3"] = 97] = "Numpad3";
7129
+ ScanCode2[ScanCode2["Numpad4"] = 98] = "Numpad4";
7130
+ ScanCode2[ScanCode2["Numpad5"] = 99] = "Numpad5";
7131
+ ScanCode2[ScanCode2["Numpad6"] = 100] = "Numpad6";
7132
+ ScanCode2[ScanCode2["Numpad7"] = 101] = "Numpad7";
7133
+ ScanCode2[ScanCode2["Numpad8"] = 102] = "Numpad8";
7134
+ ScanCode2[ScanCode2["Numpad9"] = 103] = "Numpad9";
7135
+ ScanCode2[ScanCode2["Numpad0"] = 104] = "Numpad0";
7136
+ ScanCode2[ScanCode2["NumpadDecimal"] = 105] = "NumpadDecimal";
7137
+ ScanCode2[ScanCode2["IntlBackslash"] = 106] = "IntlBackslash";
7138
+ ScanCode2[ScanCode2["ContextMenu"] = 107] = "ContextMenu";
7139
+ ScanCode2[ScanCode2["Power"] = 108] = "Power";
7140
+ ScanCode2[ScanCode2["NumpadEqual"] = 109] = "NumpadEqual";
7141
+ ScanCode2[ScanCode2["F13"] = 110] = "F13";
7142
+ ScanCode2[ScanCode2["F14"] = 111] = "F14";
7143
+ ScanCode2[ScanCode2["F15"] = 112] = "F15";
7144
+ ScanCode2[ScanCode2["F16"] = 113] = "F16";
7145
+ ScanCode2[ScanCode2["F17"] = 114] = "F17";
7146
+ ScanCode2[ScanCode2["F18"] = 115] = "F18";
7147
+ ScanCode2[ScanCode2["F19"] = 116] = "F19";
7148
+ ScanCode2[ScanCode2["F20"] = 117] = "F20";
7149
+ ScanCode2[ScanCode2["F21"] = 118] = "F21";
7150
+ ScanCode2[ScanCode2["F22"] = 119] = "F22";
7151
+ ScanCode2[ScanCode2["F23"] = 120] = "F23";
7152
+ ScanCode2[ScanCode2["F24"] = 121] = "F24";
7153
+ ScanCode2[ScanCode2["Open"] = 122] = "Open";
7154
+ ScanCode2[ScanCode2["Help"] = 123] = "Help";
7155
+ ScanCode2[ScanCode2["Select"] = 124] = "Select";
7156
+ ScanCode2[ScanCode2["Again"] = 125] = "Again";
7157
+ ScanCode2[ScanCode2["Undo"] = 126] = "Undo";
7158
+ ScanCode2[ScanCode2["Cut"] = 127] = "Cut";
7159
+ ScanCode2[ScanCode2["Copy"] = 128] = "Copy";
7160
+ ScanCode2[ScanCode2["Paste"] = 129] = "Paste";
7161
+ ScanCode2[ScanCode2["Find"] = 130] = "Find";
7162
+ ScanCode2[ScanCode2["AudioVolumeMute"] = 131] = "AudioVolumeMute";
7163
+ ScanCode2[ScanCode2["AudioVolumeUp"] = 132] = "AudioVolumeUp";
7164
+ ScanCode2[ScanCode2["AudioVolumeDown"] = 133] = "AudioVolumeDown";
7165
+ ScanCode2[ScanCode2["NumpadComma"] = 134] = "NumpadComma";
7166
+ ScanCode2[ScanCode2["IntlRo"] = 135] = "IntlRo";
7167
+ ScanCode2[ScanCode2["KanaMode"] = 136] = "KanaMode";
7168
+ ScanCode2[ScanCode2["IntlYen"] = 137] = "IntlYen";
7169
+ ScanCode2[ScanCode2["Convert"] = 138] = "Convert";
7170
+ ScanCode2[ScanCode2["NonConvert"] = 139] = "NonConvert";
7171
+ ScanCode2[ScanCode2["Lang1"] = 140] = "Lang1";
7172
+ ScanCode2[ScanCode2["Lang2"] = 141] = "Lang2";
7173
+ ScanCode2[ScanCode2["Lang3"] = 142] = "Lang3";
7174
+ ScanCode2[ScanCode2["Lang4"] = 143] = "Lang4";
7175
+ ScanCode2[ScanCode2["Lang5"] = 144] = "Lang5";
7176
+ ScanCode2[ScanCode2["Abort"] = 145] = "Abort";
7177
+ ScanCode2[ScanCode2["Props"] = 146] = "Props";
7178
+ ScanCode2[ScanCode2["NumpadParenLeft"] = 147] = "NumpadParenLeft";
7179
+ ScanCode2[ScanCode2["NumpadParenRight"] = 148] = "NumpadParenRight";
7180
+ ScanCode2[ScanCode2["NumpadBackspace"] = 149] = "NumpadBackspace";
7181
+ ScanCode2[ScanCode2["NumpadMemoryStore"] = 150] = "NumpadMemoryStore";
7182
+ ScanCode2[ScanCode2["NumpadMemoryRecall"] = 151] = "NumpadMemoryRecall";
7183
+ ScanCode2[ScanCode2["NumpadMemoryClear"] = 152] = "NumpadMemoryClear";
7184
+ ScanCode2[ScanCode2["NumpadMemoryAdd"] = 153] = "NumpadMemoryAdd";
7185
+ ScanCode2[ScanCode2["NumpadMemorySubtract"] = 154] = "NumpadMemorySubtract";
7186
+ ScanCode2[ScanCode2["NumpadClear"] = 155] = "NumpadClear";
7187
+ ScanCode2[ScanCode2["NumpadClearEntry"] = 156] = "NumpadClearEntry";
7188
+ ScanCode2[ScanCode2["ControlLeft"] = 157] = "ControlLeft";
7189
+ ScanCode2[ScanCode2["ShiftLeft"] = 158] = "ShiftLeft";
7190
+ ScanCode2[ScanCode2["AltLeft"] = 159] = "AltLeft";
7191
+ ScanCode2[ScanCode2["MetaLeft"] = 160] = "MetaLeft";
7192
+ ScanCode2[ScanCode2["ControlRight"] = 161] = "ControlRight";
7193
+ ScanCode2[ScanCode2["ShiftRight"] = 162] = "ShiftRight";
7194
+ ScanCode2[ScanCode2["AltRight"] = 163] = "AltRight";
7195
+ ScanCode2[ScanCode2["MetaRight"] = 164] = "MetaRight";
7196
+ ScanCode2[ScanCode2["BrightnessUp"] = 165] = "BrightnessUp";
7197
+ ScanCode2[ScanCode2["BrightnessDown"] = 166] = "BrightnessDown";
7198
+ ScanCode2[ScanCode2["MediaPlay"] = 167] = "MediaPlay";
7199
+ ScanCode2[ScanCode2["MediaRecord"] = 168] = "MediaRecord";
7200
+ ScanCode2[ScanCode2["MediaFastForward"] = 169] = "MediaFastForward";
7201
+ ScanCode2[ScanCode2["MediaRewind"] = 170] = "MediaRewind";
7202
+ ScanCode2[ScanCode2["MediaTrackNext"] = 171] = "MediaTrackNext";
7203
+ ScanCode2[ScanCode2["MediaTrackPrevious"] = 172] = "MediaTrackPrevious";
7204
+ ScanCode2[ScanCode2["MediaStop"] = 173] = "MediaStop";
7205
+ ScanCode2[ScanCode2["Eject"] = 174] = "Eject";
7206
+ ScanCode2[ScanCode2["MediaPlayPause"] = 175] = "MediaPlayPause";
7207
+ ScanCode2[ScanCode2["MediaSelect"] = 176] = "MediaSelect";
7208
+ ScanCode2[ScanCode2["LaunchMail"] = 177] = "LaunchMail";
7209
+ ScanCode2[ScanCode2["LaunchApp2"] = 178] = "LaunchApp2";
7210
+ ScanCode2[ScanCode2["LaunchApp1"] = 179] = "LaunchApp1";
7211
+ ScanCode2[ScanCode2["SelectTask"] = 180] = "SelectTask";
7212
+ ScanCode2[ScanCode2["LaunchScreenSaver"] = 181] = "LaunchScreenSaver";
7213
+ ScanCode2[ScanCode2["BrowserSearch"] = 182] = "BrowserSearch";
7214
+ ScanCode2[ScanCode2["BrowserHome"] = 183] = "BrowserHome";
7215
+ ScanCode2[ScanCode2["BrowserBack"] = 184] = "BrowserBack";
7216
+ ScanCode2[ScanCode2["BrowserForward"] = 185] = "BrowserForward";
7217
+ ScanCode2[ScanCode2["BrowserStop"] = 186] = "BrowserStop";
7218
+ ScanCode2[ScanCode2["BrowserRefresh"] = 187] = "BrowserRefresh";
7219
+ ScanCode2[ScanCode2["BrowserFavorites"] = 188] = "BrowserFavorites";
7220
+ ScanCode2[ScanCode2["ZoomToggle"] = 189] = "ZoomToggle";
7221
+ ScanCode2[ScanCode2["MailReply"] = 190] = "MailReply";
7222
+ ScanCode2[ScanCode2["MailForward"] = 191] = "MailForward";
7223
+ ScanCode2[ScanCode2["MailSend"] = 192] = "MailSend";
7224
+ ScanCode2[ScanCode2["MAX_VALUE"] = 193] = "MAX_VALUE";
7225
+ })(ScanCode || (ScanCode = {}));
6410
7226
  var KeyCodeStrMap = class {
6411
7227
  constructor() {
6412
7228
  this._keyCodeToStr = [];
@@ -6420,7 +7236,7 @@ ${stackTraceFormattedLines.join("\n")}
6420
7236
  return this._keyCodeToStr[keyCode];
6421
7237
  }
6422
7238
  strToKeyCode(str) {
6423
- return this._strToKeyCode[str.toLowerCase()] || 0;
7239
+ return this._strToKeyCode[str.toLowerCase()] || KeyCode.Unknown;
6424
7240
  }
6425
7241
  };
6426
7242
  var uiMap = new KeyCodeStrMap();
@@ -6433,244 +7249,244 @@ ${stackTraceFormattedLines.join("\n")}
6433
7249
  var scanCodeLowerCaseStrToInt = /* @__PURE__ */ Object.create(null);
6434
7250
  var IMMUTABLE_CODE_TO_KEY_CODE = [];
6435
7251
  var IMMUTABLE_KEY_CODE_TO_CODE = [];
6436
- for (let i = 0; i <= 193; i++) {
6437
- IMMUTABLE_CODE_TO_KEY_CODE[i] = -1;
7252
+ for (let i = 0; i <= ScanCode.MAX_VALUE; i++) {
7253
+ IMMUTABLE_CODE_TO_KEY_CODE[i] = KeyCode.DependsOnKbLayout;
6438
7254
  }
6439
- for (let i = 0; i <= 132; i++) {
6440
- IMMUTABLE_KEY_CODE_TO_CODE[i] = -1;
7255
+ for (let i = 0; i <= KeyCode.MAX_VALUE; i++) {
7256
+ IMMUTABLE_KEY_CODE_TO_CODE[i] = ScanCode.DependsOnKbLayout;
6441
7257
  }
6442
7258
  (function() {
6443
7259
  const empty = "";
6444
7260
  const mappings = [
6445
- [1, 0, "None", 0, "unknown", 0, "VK_UNKNOWN", empty, empty],
6446
- [1, 1, "Hyper", 0, empty, 0, empty, empty, empty],
6447
- [1, 2, "Super", 0, empty, 0, empty, empty, empty],
6448
- [1, 3, "Fn", 0, empty, 0, empty, empty, empty],
6449
- [1, 4, "FnLock", 0, empty, 0, empty, empty, empty],
6450
- [1, 5, "Suspend", 0, empty, 0, empty, empty, empty],
6451
- [1, 6, "Resume", 0, empty, 0, empty, empty, empty],
6452
- [1, 7, "Turbo", 0, empty, 0, empty, empty, empty],
6453
- [1, 8, "Sleep", 0, empty, 0, "VK_SLEEP", empty, empty],
6454
- [1, 9, "WakeUp", 0, empty, 0, empty, empty, empty],
6455
- [0, 10, "KeyA", 31, "A", 65, "VK_A", empty, empty],
6456
- [0, 11, "KeyB", 32, "B", 66, "VK_B", empty, empty],
6457
- [0, 12, "KeyC", 33, "C", 67, "VK_C", empty, empty],
6458
- [0, 13, "KeyD", 34, "D", 68, "VK_D", empty, empty],
6459
- [0, 14, "KeyE", 35, "E", 69, "VK_E", empty, empty],
6460
- [0, 15, "KeyF", 36, "F", 70, "VK_F", empty, empty],
6461
- [0, 16, "KeyG", 37, "G", 71, "VK_G", empty, empty],
6462
- [0, 17, "KeyH", 38, "H", 72, "VK_H", empty, empty],
6463
- [0, 18, "KeyI", 39, "I", 73, "VK_I", empty, empty],
6464
- [0, 19, "KeyJ", 40, "J", 74, "VK_J", empty, empty],
6465
- [0, 20, "KeyK", 41, "K", 75, "VK_K", empty, empty],
6466
- [0, 21, "KeyL", 42, "L", 76, "VK_L", empty, empty],
6467
- [0, 22, "KeyM", 43, "M", 77, "VK_M", empty, empty],
6468
- [0, 23, "KeyN", 44, "N", 78, "VK_N", empty, empty],
6469
- [0, 24, "KeyO", 45, "O", 79, "VK_O", empty, empty],
6470
- [0, 25, "KeyP", 46, "P", 80, "VK_P", empty, empty],
6471
- [0, 26, "KeyQ", 47, "Q", 81, "VK_Q", empty, empty],
6472
- [0, 27, "KeyR", 48, "R", 82, "VK_R", empty, empty],
6473
- [0, 28, "KeyS", 49, "S", 83, "VK_S", empty, empty],
6474
- [0, 29, "KeyT", 50, "T", 84, "VK_T", empty, empty],
6475
- [0, 30, "KeyU", 51, "U", 85, "VK_U", empty, empty],
6476
- [0, 31, "KeyV", 52, "V", 86, "VK_V", empty, empty],
6477
- [0, 32, "KeyW", 53, "W", 87, "VK_W", empty, empty],
6478
- [0, 33, "KeyX", 54, "X", 88, "VK_X", empty, empty],
6479
- [0, 34, "KeyY", 55, "Y", 89, "VK_Y", empty, empty],
6480
- [0, 35, "KeyZ", 56, "Z", 90, "VK_Z", empty, empty],
6481
- [0, 36, "Digit1", 22, "1", 49, "VK_1", empty, empty],
6482
- [0, 37, "Digit2", 23, "2", 50, "VK_2", empty, empty],
6483
- [0, 38, "Digit3", 24, "3", 51, "VK_3", empty, empty],
6484
- [0, 39, "Digit4", 25, "4", 52, "VK_4", empty, empty],
6485
- [0, 40, "Digit5", 26, "5", 53, "VK_5", empty, empty],
6486
- [0, 41, "Digit6", 27, "6", 54, "VK_6", empty, empty],
6487
- [0, 42, "Digit7", 28, "7", 55, "VK_7", empty, empty],
6488
- [0, 43, "Digit8", 29, "8", 56, "VK_8", empty, empty],
6489
- [0, 44, "Digit9", 30, "9", 57, "VK_9", empty, empty],
6490
- [0, 45, "Digit0", 21, "0", 48, "VK_0", empty, empty],
6491
- [1, 46, "Enter", 3, "Enter", 13, "VK_RETURN", empty, empty],
6492
- [1, 47, "Escape", 9, "Escape", 27, "VK_ESCAPE", empty, empty],
6493
- [1, 48, "Backspace", 1, "Backspace", 8, "VK_BACK", empty, empty],
6494
- [1, 49, "Tab", 2, "Tab", 9, "VK_TAB", empty, empty],
6495
- [1, 50, "Space", 10, "Space", 32, "VK_SPACE", empty, empty],
6496
- [0, 51, "Minus", 88, "-", 189, "VK_OEM_MINUS", "-", "OEM_MINUS"],
6497
- [0, 52, "Equal", 86, "=", 187, "VK_OEM_PLUS", "=", "OEM_PLUS"],
6498
- [0, 53, "BracketLeft", 92, "[", 219, "VK_OEM_4", "[", "OEM_4"],
6499
- [0, 54, "BracketRight", 94, "]", 221, "VK_OEM_6", "]", "OEM_6"],
6500
- [0, 55, "Backslash", 93, "\\", 220, "VK_OEM_5", "\\", "OEM_5"],
6501
- [0, 56, "IntlHash", 0, empty, 0, empty, empty, empty],
6502
- [0, 57, "Semicolon", 85, ";", 186, "VK_OEM_1", ";", "OEM_1"],
6503
- [0, 58, "Quote", 95, "'", 222, "VK_OEM_7", "'", "OEM_7"],
6504
- [0, 59, "Backquote", 91, "`", 192, "VK_OEM_3", "`", "OEM_3"],
6505
- [0, 60, "Comma", 87, ",", 188, "VK_OEM_COMMA", ",", "OEM_COMMA"],
6506
- [0, 61, "Period", 89, ".", 190, "VK_OEM_PERIOD", ".", "OEM_PERIOD"],
6507
- [0, 62, "Slash", 90, "/", 191, "VK_OEM_2", "/", "OEM_2"],
6508
- [1, 63, "CapsLock", 8, "CapsLock", 20, "VK_CAPITAL", empty, empty],
6509
- [1, 64, "F1", 59, "F1", 112, "VK_F1", empty, empty],
6510
- [1, 65, "F2", 60, "F2", 113, "VK_F2", empty, empty],
6511
- [1, 66, "F3", 61, "F3", 114, "VK_F3", empty, empty],
6512
- [1, 67, "F4", 62, "F4", 115, "VK_F4", empty, empty],
6513
- [1, 68, "F5", 63, "F5", 116, "VK_F5", empty, empty],
6514
- [1, 69, "F6", 64, "F6", 117, "VK_F6", empty, empty],
6515
- [1, 70, "F7", 65, "F7", 118, "VK_F7", empty, empty],
6516
- [1, 71, "F8", 66, "F8", 119, "VK_F8", empty, empty],
6517
- [1, 72, "F9", 67, "F9", 120, "VK_F9", empty, empty],
6518
- [1, 73, "F10", 68, "F10", 121, "VK_F10", empty, empty],
6519
- [1, 74, "F11", 69, "F11", 122, "VK_F11", empty, empty],
6520
- [1, 75, "F12", 70, "F12", 123, "VK_F12", empty, empty],
6521
- [1, 76, "PrintScreen", 0, empty, 0, empty, empty, empty],
6522
- [1, 77, "ScrollLock", 84, "ScrollLock", 145, "VK_SCROLL", empty, empty],
6523
- [1, 78, "Pause", 7, "PauseBreak", 19, "VK_PAUSE", empty, empty],
6524
- [1, 79, "Insert", 19, "Insert", 45, "VK_INSERT", empty, empty],
6525
- [1, 80, "Home", 14, "Home", 36, "VK_HOME", empty, empty],
6526
- [1, 81, "PageUp", 11, "PageUp", 33, "VK_PRIOR", empty, empty],
6527
- [1, 82, "Delete", 20, "Delete", 46, "VK_DELETE", empty, empty],
6528
- [1, 83, "End", 13, "End", 35, "VK_END", empty, empty],
6529
- [1, 84, "PageDown", 12, "PageDown", 34, "VK_NEXT", empty, empty],
6530
- [1, 85, "ArrowRight", 17, "RightArrow", 39, "VK_RIGHT", "Right", empty],
6531
- [1, 86, "ArrowLeft", 15, "LeftArrow", 37, "VK_LEFT", "Left", empty],
6532
- [1, 87, "ArrowDown", 18, "DownArrow", 40, "VK_DOWN", "Down", empty],
6533
- [1, 88, "ArrowUp", 16, "UpArrow", 38, "VK_UP", "Up", empty],
6534
- [1, 89, "NumLock", 83, "NumLock", 144, "VK_NUMLOCK", empty, empty],
6535
- [1, 90, "NumpadDivide", 113, "NumPad_Divide", 111, "VK_DIVIDE", empty, empty],
6536
- [1, 91, "NumpadMultiply", 108, "NumPad_Multiply", 106, "VK_MULTIPLY", empty, empty],
6537
- [1, 92, "NumpadSubtract", 111, "NumPad_Subtract", 109, "VK_SUBTRACT", empty, empty],
6538
- [1, 93, "NumpadAdd", 109, "NumPad_Add", 107, "VK_ADD", empty, empty],
6539
- [1, 94, "NumpadEnter", 3, empty, 0, empty, empty, empty],
6540
- [1, 95, "Numpad1", 99, "NumPad1", 97, "VK_NUMPAD1", empty, empty],
6541
- [1, 96, "Numpad2", 100, "NumPad2", 98, "VK_NUMPAD2", empty, empty],
6542
- [1, 97, "Numpad3", 101, "NumPad3", 99, "VK_NUMPAD3", empty, empty],
6543
- [1, 98, "Numpad4", 102, "NumPad4", 100, "VK_NUMPAD4", empty, empty],
6544
- [1, 99, "Numpad5", 103, "NumPad5", 101, "VK_NUMPAD5", empty, empty],
6545
- [1, 100, "Numpad6", 104, "NumPad6", 102, "VK_NUMPAD6", empty, empty],
6546
- [1, 101, "Numpad7", 105, "NumPad7", 103, "VK_NUMPAD7", empty, empty],
6547
- [1, 102, "Numpad8", 106, "NumPad8", 104, "VK_NUMPAD8", empty, empty],
6548
- [1, 103, "Numpad9", 107, "NumPad9", 105, "VK_NUMPAD9", empty, empty],
6549
- [1, 104, "Numpad0", 98, "NumPad0", 96, "VK_NUMPAD0", empty, empty],
6550
- [1, 105, "NumpadDecimal", 112, "NumPad_Decimal", 110, "VK_DECIMAL", empty, empty],
6551
- [0, 106, "IntlBackslash", 97, "OEM_102", 226, "VK_OEM_102", empty, empty],
6552
- [1, 107, "ContextMenu", 58, "ContextMenu", 93, empty, empty, empty],
6553
- [1, 108, "Power", 0, empty, 0, empty, empty, empty],
6554
- [1, 109, "NumpadEqual", 0, empty, 0, empty, empty, empty],
6555
- [1, 110, "F13", 71, "F13", 124, "VK_F13", empty, empty],
6556
- [1, 111, "F14", 72, "F14", 125, "VK_F14", empty, empty],
6557
- [1, 112, "F15", 73, "F15", 126, "VK_F15", empty, empty],
6558
- [1, 113, "F16", 74, "F16", 127, "VK_F16", empty, empty],
6559
- [1, 114, "F17", 75, "F17", 128, "VK_F17", empty, empty],
6560
- [1, 115, "F18", 76, "F18", 129, "VK_F18", empty, empty],
6561
- [1, 116, "F19", 77, "F19", 130, "VK_F19", empty, empty],
6562
- [1, 117, "F20", 78, "F20", 131, "VK_F20", empty, empty],
6563
- [1, 118, "F21", 79, "F21", 132, "VK_F21", empty, empty],
6564
- [1, 119, "F22", 80, "F22", 133, "VK_F22", empty, empty],
6565
- [1, 120, "F23", 81, "F23", 134, "VK_F23", empty, empty],
6566
- [1, 121, "F24", 82, "F24", 135, "VK_F24", empty, empty],
6567
- [1, 122, "Open", 0, empty, 0, empty, empty, empty],
6568
- [1, 123, "Help", 0, empty, 0, empty, empty, empty],
6569
- [1, 124, "Select", 0, empty, 0, empty, empty, empty],
6570
- [1, 125, "Again", 0, empty, 0, empty, empty, empty],
6571
- [1, 126, "Undo", 0, empty, 0, empty, empty, empty],
6572
- [1, 127, "Cut", 0, empty, 0, empty, empty, empty],
6573
- [1, 128, "Copy", 0, empty, 0, empty, empty, empty],
6574
- [1, 129, "Paste", 0, empty, 0, empty, empty, empty],
6575
- [1, 130, "Find", 0, empty, 0, empty, empty, empty],
6576
- [1, 131, "AudioVolumeMute", 117, "AudioVolumeMute", 173, "VK_VOLUME_MUTE", empty, empty],
6577
- [1, 132, "AudioVolumeUp", 118, "AudioVolumeUp", 175, "VK_VOLUME_UP", empty, empty],
6578
- [1, 133, "AudioVolumeDown", 119, "AudioVolumeDown", 174, "VK_VOLUME_DOWN", empty, empty],
6579
- [1, 134, "NumpadComma", 110, "NumPad_Separator", 108, "VK_SEPARATOR", empty, empty],
6580
- [0, 135, "IntlRo", 115, "ABNT_C1", 193, "VK_ABNT_C1", empty, empty],
6581
- [1, 136, "KanaMode", 0, empty, 0, empty, empty, empty],
6582
- [0, 137, "IntlYen", 0, empty, 0, empty, empty, empty],
6583
- [1, 138, "Convert", 0, empty, 0, empty, empty, empty],
6584
- [1, 139, "NonConvert", 0, empty, 0, empty, empty, empty],
6585
- [1, 140, "Lang1", 0, empty, 0, empty, empty, empty],
6586
- [1, 141, "Lang2", 0, empty, 0, empty, empty, empty],
6587
- [1, 142, "Lang3", 0, empty, 0, empty, empty, empty],
6588
- [1, 143, "Lang4", 0, empty, 0, empty, empty, empty],
6589
- [1, 144, "Lang5", 0, empty, 0, empty, empty, empty],
6590
- [1, 145, "Abort", 0, empty, 0, empty, empty, empty],
6591
- [1, 146, "Props", 0, empty, 0, empty, empty, empty],
6592
- [1, 147, "NumpadParenLeft", 0, empty, 0, empty, empty, empty],
6593
- [1, 148, "NumpadParenRight", 0, empty, 0, empty, empty, empty],
6594
- [1, 149, "NumpadBackspace", 0, empty, 0, empty, empty, empty],
6595
- [1, 150, "NumpadMemoryStore", 0, empty, 0, empty, empty, empty],
6596
- [1, 151, "NumpadMemoryRecall", 0, empty, 0, empty, empty, empty],
6597
- [1, 152, "NumpadMemoryClear", 0, empty, 0, empty, empty, empty],
6598
- [1, 153, "NumpadMemoryAdd", 0, empty, 0, empty, empty, empty],
6599
- [1, 154, "NumpadMemorySubtract", 0, empty, 0, empty, empty, empty],
6600
- [1, 155, "NumpadClear", 131, "Clear", 12, "VK_CLEAR", empty, empty],
6601
- [1, 156, "NumpadClearEntry", 0, empty, 0, empty, empty, empty],
6602
- [1, 0, empty, 5, "Ctrl", 17, "VK_CONTROL", empty, empty],
6603
- [1, 0, empty, 4, "Shift", 16, "VK_SHIFT", empty, empty],
6604
- [1, 0, empty, 6, "Alt", 18, "VK_MENU", empty, empty],
6605
- [1, 0, empty, 57, "Meta", 91, "VK_COMMAND", empty, empty],
6606
- [1, 157, "ControlLeft", 5, empty, 0, "VK_LCONTROL", empty, empty],
6607
- [1, 158, "ShiftLeft", 4, empty, 0, "VK_LSHIFT", empty, empty],
6608
- [1, 159, "AltLeft", 6, empty, 0, "VK_LMENU", empty, empty],
6609
- [1, 160, "MetaLeft", 57, empty, 0, "VK_LWIN", empty, empty],
6610
- [1, 161, "ControlRight", 5, empty, 0, "VK_RCONTROL", empty, empty],
6611
- [1, 162, "ShiftRight", 4, empty, 0, "VK_RSHIFT", empty, empty],
6612
- [1, 163, "AltRight", 6, empty, 0, "VK_RMENU", empty, empty],
6613
- [1, 164, "MetaRight", 57, empty, 0, "VK_RWIN", empty, empty],
6614
- [1, 165, "BrightnessUp", 0, empty, 0, empty, empty, empty],
6615
- [1, 166, "BrightnessDown", 0, empty, 0, empty, empty, empty],
6616
- [1, 167, "MediaPlay", 0, empty, 0, empty, empty, empty],
6617
- [1, 168, "MediaRecord", 0, empty, 0, empty, empty, empty],
6618
- [1, 169, "MediaFastForward", 0, empty, 0, empty, empty, empty],
6619
- [1, 170, "MediaRewind", 0, empty, 0, empty, empty, empty],
6620
- [1, 171, "MediaTrackNext", 124, "MediaTrackNext", 176, "VK_MEDIA_NEXT_TRACK", empty, empty],
6621
- [1, 172, "MediaTrackPrevious", 125, "MediaTrackPrevious", 177, "VK_MEDIA_PREV_TRACK", empty, empty],
6622
- [1, 173, "MediaStop", 126, "MediaStop", 178, "VK_MEDIA_STOP", empty, empty],
6623
- [1, 174, "Eject", 0, empty, 0, empty, empty, empty],
6624
- [1, 175, "MediaPlayPause", 127, "MediaPlayPause", 179, "VK_MEDIA_PLAY_PAUSE", empty, empty],
6625
- [1, 176, "MediaSelect", 128, "LaunchMediaPlayer", 181, "VK_MEDIA_LAUNCH_MEDIA_SELECT", empty, empty],
6626
- [1, 177, "LaunchMail", 129, "LaunchMail", 180, "VK_MEDIA_LAUNCH_MAIL", empty, empty],
6627
- [1, 178, "LaunchApp2", 130, "LaunchApp2", 183, "VK_MEDIA_LAUNCH_APP2", empty, empty],
6628
- [1, 179, "LaunchApp1", 0, empty, 0, "VK_MEDIA_LAUNCH_APP1", empty, empty],
6629
- [1, 180, "SelectTask", 0, empty, 0, empty, empty, empty],
6630
- [1, 181, "LaunchScreenSaver", 0, empty, 0, empty, empty, empty],
6631
- [1, 182, "BrowserSearch", 120, "BrowserSearch", 170, "VK_BROWSER_SEARCH", empty, empty],
6632
- [1, 183, "BrowserHome", 121, "BrowserHome", 172, "VK_BROWSER_HOME", empty, empty],
6633
- [1, 184, "BrowserBack", 122, "BrowserBack", 166, "VK_BROWSER_BACK", empty, empty],
6634
- [1, 185, "BrowserForward", 123, "BrowserForward", 167, "VK_BROWSER_FORWARD", empty, empty],
6635
- [1, 186, "BrowserStop", 0, empty, 0, "VK_BROWSER_STOP", empty, empty],
6636
- [1, 187, "BrowserRefresh", 0, empty, 0, "VK_BROWSER_REFRESH", empty, empty],
6637
- [1, 188, "BrowserFavorites", 0, empty, 0, "VK_BROWSER_FAVORITES", empty, empty],
6638
- [1, 189, "ZoomToggle", 0, empty, 0, empty, empty, empty],
6639
- [1, 190, "MailReply", 0, empty, 0, empty, empty, empty],
6640
- [1, 191, "MailForward", 0, empty, 0, empty, empty, empty],
6641
- [1, 192, "MailSend", 0, empty, 0, empty, empty, empty],
6642
- [1, 0, empty, 114, "KeyInComposition", 229, empty, empty, empty],
6643
- [1, 0, empty, 116, "ABNT_C2", 194, "VK_ABNT_C2", empty, empty],
6644
- [1, 0, empty, 96, "OEM_8", 223, "VK_OEM_8", empty, empty],
6645
- [1, 0, empty, 0, empty, 0, "VK_KANA", empty, empty],
6646
- [1, 0, empty, 0, empty, 0, "VK_HANGUL", empty, empty],
6647
- [1, 0, empty, 0, empty, 0, "VK_JUNJA", empty, empty],
6648
- [1, 0, empty, 0, empty, 0, "VK_FINAL", empty, empty],
6649
- [1, 0, empty, 0, empty, 0, "VK_HANJA", empty, empty],
6650
- [1, 0, empty, 0, empty, 0, "VK_KANJI", empty, empty],
6651
- [1, 0, empty, 0, empty, 0, "VK_CONVERT", empty, empty],
6652
- [1, 0, empty, 0, empty, 0, "VK_NONCONVERT", empty, empty],
6653
- [1, 0, empty, 0, empty, 0, "VK_ACCEPT", empty, empty],
6654
- [1, 0, empty, 0, empty, 0, "VK_MODECHANGE", empty, empty],
6655
- [1, 0, empty, 0, empty, 0, "VK_SELECT", empty, empty],
6656
- [1, 0, empty, 0, empty, 0, "VK_PRINT", empty, empty],
6657
- [1, 0, empty, 0, empty, 0, "VK_EXECUTE", empty, empty],
6658
- [1, 0, empty, 0, empty, 0, "VK_SNAPSHOT", empty, empty],
6659
- [1, 0, empty, 0, empty, 0, "VK_HELP", empty, empty],
6660
- [1, 0, empty, 0, empty, 0, "VK_APPS", empty, empty],
6661
- [1, 0, empty, 0, empty, 0, "VK_PROCESSKEY", empty, empty],
6662
- [1, 0, empty, 0, empty, 0, "VK_PACKET", empty, empty],
6663
- [1, 0, empty, 0, empty, 0, "VK_DBE_SBCSCHAR", empty, empty],
6664
- [1, 0, empty, 0, empty, 0, "VK_DBE_DBCSCHAR", empty, empty],
6665
- [1, 0, empty, 0, empty, 0, "VK_ATTN", empty, empty],
6666
- [1, 0, empty, 0, empty, 0, "VK_CRSEL", empty, empty],
6667
- [1, 0, empty, 0, empty, 0, "VK_EXSEL", empty, empty],
6668
- [1, 0, empty, 0, empty, 0, "VK_EREOF", empty, empty],
6669
- [1, 0, empty, 0, empty, 0, "VK_PLAY", empty, empty],
6670
- [1, 0, empty, 0, empty, 0, "VK_ZOOM", empty, empty],
6671
- [1, 0, empty, 0, empty, 0, "VK_NONAME", empty, empty],
6672
- [1, 0, empty, 0, empty, 0, "VK_PA1", empty, empty],
6673
- [1, 0, empty, 0, empty, 0, "VK_OEM_CLEAR", empty, empty]
7261
+ [1, ScanCode.None, "None", KeyCode.Unknown, "unknown", 0, "VK_UNKNOWN", empty, empty],
7262
+ [1, ScanCode.Hyper, "Hyper", KeyCode.Unknown, empty, 0, empty, empty, empty],
7263
+ [1, ScanCode.Super, "Super", KeyCode.Unknown, empty, 0, empty, empty, empty],
7264
+ [1, ScanCode.Fn, "Fn", KeyCode.Unknown, empty, 0, empty, empty, empty],
7265
+ [1, ScanCode.FnLock, "FnLock", KeyCode.Unknown, empty, 0, empty, empty, empty],
7266
+ [1, ScanCode.Suspend, "Suspend", KeyCode.Unknown, empty, 0, empty, empty, empty],
7267
+ [1, ScanCode.Resume, "Resume", KeyCode.Unknown, empty, 0, empty, empty, empty],
7268
+ [1, ScanCode.Turbo, "Turbo", KeyCode.Unknown, empty, 0, empty, empty, empty],
7269
+ [1, ScanCode.Sleep, "Sleep", KeyCode.Unknown, empty, 0, "VK_SLEEP", empty, empty],
7270
+ [1, ScanCode.WakeUp, "WakeUp", KeyCode.Unknown, empty, 0, empty, empty, empty],
7271
+ [0, ScanCode.KeyA, "KeyA", KeyCode.KeyA, "A", 65, "VK_A", empty, empty],
7272
+ [0, ScanCode.KeyB, "KeyB", KeyCode.KeyB, "B", 66, "VK_B", empty, empty],
7273
+ [0, ScanCode.KeyC, "KeyC", KeyCode.KeyC, "C", 67, "VK_C", empty, empty],
7274
+ [0, ScanCode.KeyD, "KeyD", KeyCode.KeyD, "D", 68, "VK_D", empty, empty],
7275
+ [0, ScanCode.KeyE, "KeyE", KeyCode.KeyE, "E", 69, "VK_E", empty, empty],
7276
+ [0, ScanCode.KeyF, "KeyF", KeyCode.KeyF, "F", 70, "VK_F", empty, empty],
7277
+ [0, ScanCode.KeyG, "KeyG", KeyCode.KeyG, "G", 71, "VK_G", empty, empty],
7278
+ [0, ScanCode.KeyH, "KeyH", KeyCode.KeyH, "H", 72, "VK_H", empty, empty],
7279
+ [0, ScanCode.KeyI, "KeyI", KeyCode.KeyI, "I", 73, "VK_I", empty, empty],
7280
+ [0, ScanCode.KeyJ, "KeyJ", KeyCode.KeyJ, "J", 74, "VK_J", empty, empty],
7281
+ [0, ScanCode.KeyK, "KeyK", KeyCode.KeyK, "K", 75, "VK_K", empty, empty],
7282
+ [0, ScanCode.KeyL, "KeyL", KeyCode.KeyL, "L", 76, "VK_L", empty, empty],
7283
+ [0, ScanCode.KeyM, "KeyM", KeyCode.KeyM, "M", 77, "VK_M", empty, empty],
7284
+ [0, ScanCode.KeyN, "KeyN", KeyCode.KeyN, "N", 78, "VK_N", empty, empty],
7285
+ [0, ScanCode.KeyO, "KeyO", KeyCode.KeyO, "O", 79, "VK_O", empty, empty],
7286
+ [0, ScanCode.KeyP, "KeyP", KeyCode.KeyP, "P", 80, "VK_P", empty, empty],
7287
+ [0, ScanCode.KeyQ, "KeyQ", KeyCode.KeyQ, "Q", 81, "VK_Q", empty, empty],
7288
+ [0, ScanCode.KeyR, "KeyR", KeyCode.KeyR, "R", 82, "VK_R", empty, empty],
7289
+ [0, ScanCode.KeyS, "KeyS", KeyCode.KeyS, "S", 83, "VK_S", empty, empty],
7290
+ [0, ScanCode.KeyT, "KeyT", KeyCode.KeyT, "T", 84, "VK_T", empty, empty],
7291
+ [0, ScanCode.KeyU, "KeyU", KeyCode.KeyU, "U", 85, "VK_U", empty, empty],
7292
+ [0, ScanCode.KeyV, "KeyV", KeyCode.KeyV, "V", 86, "VK_V", empty, empty],
7293
+ [0, ScanCode.KeyW, "KeyW", KeyCode.KeyW, "W", 87, "VK_W", empty, empty],
7294
+ [0, ScanCode.KeyX, "KeyX", KeyCode.KeyX, "X", 88, "VK_X", empty, empty],
7295
+ [0, ScanCode.KeyY, "KeyY", KeyCode.KeyY, "Y", 89, "VK_Y", empty, empty],
7296
+ [0, ScanCode.KeyZ, "KeyZ", KeyCode.KeyZ, "Z", 90, "VK_Z", empty, empty],
7297
+ [0, ScanCode.Digit1, "Digit1", KeyCode.Digit1, "1", 49, "VK_1", empty, empty],
7298
+ [0, ScanCode.Digit2, "Digit2", KeyCode.Digit2, "2", 50, "VK_2", empty, empty],
7299
+ [0, ScanCode.Digit3, "Digit3", KeyCode.Digit3, "3", 51, "VK_3", empty, empty],
7300
+ [0, ScanCode.Digit4, "Digit4", KeyCode.Digit4, "4", 52, "VK_4", empty, empty],
7301
+ [0, ScanCode.Digit5, "Digit5", KeyCode.Digit5, "5", 53, "VK_5", empty, empty],
7302
+ [0, ScanCode.Digit6, "Digit6", KeyCode.Digit6, "6", 54, "VK_6", empty, empty],
7303
+ [0, ScanCode.Digit7, "Digit7", KeyCode.Digit7, "7", 55, "VK_7", empty, empty],
7304
+ [0, ScanCode.Digit8, "Digit8", KeyCode.Digit8, "8", 56, "VK_8", empty, empty],
7305
+ [0, ScanCode.Digit9, "Digit9", KeyCode.Digit9, "9", 57, "VK_9", empty, empty],
7306
+ [0, ScanCode.Digit0, "Digit0", KeyCode.Digit0, "0", 48, "VK_0", empty, empty],
7307
+ [1, ScanCode.Enter, "Enter", KeyCode.Enter, "Enter", 13, "VK_RETURN", empty, empty],
7308
+ [1, ScanCode.Escape, "Escape", KeyCode.Escape, "Escape", 27, "VK_ESCAPE", empty, empty],
7309
+ [1, ScanCode.Backspace, "Backspace", KeyCode.Backspace, "Backspace", 8, "VK_BACK", empty, empty],
7310
+ [1, ScanCode.Tab, "Tab", KeyCode.Tab, "Tab", 9, "VK_TAB", empty, empty],
7311
+ [1, ScanCode.Space, "Space", KeyCode.Space, "Space", 32, "VK_SPACE", empty, empty],
7312
+ [0, ScanCode.Minus, "Minus", KeyCode.Minus, "-", 189, "VK_OEM_MINUS", "-", "OEM_MINUS"],
7313
+ [0, ScanCode.Equal, "Equal", KeyCode.Equal, "=", 187, "VK_OEM_PLUS", "=", "OEM_PLUS"],
7314
+ [0, ScanCode.BracketLeft, "BracketLeft", KeyCode.BracketLeft, "[", 219, "VK_OEM_4", "[", "OEM_4"],
7315
+ [0, ScanCode.BracketRight, "BracketRight", KeyCode.BracketRight, "]", 221, "VK_OEM_6", "]", "OEM_6"],
7316
+ [0, ScanCode.Backslash, "Backslash", KeyCode.Backslash, "\\", 220, "VK_OEM_5", "\\", "OEM_5"],
7317
+ [0, ScanCode.IntlHash, "IntlHash", KeyCode.Unknown, empty, 0, empty, empty, empty],
7318
+ [0, ScanCode.Semicolon, "Semicolon", KeyCode.Semicolon, ";", 186, "VK_OEM_1", ";", "OEM_1"],
7319
+ [0, ScanCode.Quote, "Quote", KeyCode.Quote, "'", 222, "VK_OEM_7", "'", "OEM_7"],
7320
+ [0, ScanCode.Backquote, "Backquote", KeyCode.Backquote, "`", 192, "VK_OEM_3", "`", "OEM_3"],
7321
+ [0, ScanCode.Comma, "Comma", KeyCode.Comma, ",", 188, "VK_OEM_COMMA", ",", "OEM_COMMA"],
7322
+ [0, ScanCode.Period, "Period", KeyCode.Period, ".", 190, "VK_OEM_PERIOD", ".", "OEM_PERIOD"],
7323
+ [0, ScanCode.Slash, "Slash", KeyCode.Slash, "/", 191, "VK_OEM_2", "/", "OEM_2"],
7324
+ [1, ScanCode.CapsLock, "CapsLock", KeyCode.CapsLock, "CapsLock", 20, "VK_CAPITAL", empty, empty],
7325
+ [1, ScanCode.F1, "F1", KeyCode.F1, "F1", 112, "VK_F1", empty, empty],
7326
+ [1, ScanCode.F2, "F2", KeyCode.F2, "F2", 113, "VK_F2", empty, empty],
7327
+ [1, ScanCode.F3, "F3", KeyCode.F3, "F3", 114, "VK_F3", empty, empty],
7328
+ [1, ScanCode.F4, "F4", KeyCode.F4, "F4", 115, "VK_F4", empty, empty],
7329
+ [1, ScanCode.F5, "F5", KeyCode.F5, "F5", 116, "VK_F5", empty, empty],
7330
+ [1, ScanCode.F6, "F6", KeyCode.F6, "F6", 117, "VK_F6", empty, empty],
7331
+ [1, ScanCode.F7, "F7", KeyCode.F7, "F7", 118, "VK_F7", empty, empty],
7332
+ [1, ScanCode.F8, "F8", KeyCode.F8, "F8", 119, "VK_F8", empty, empty],
7333
+ [1, ScanCode.F9, "F9", KeyCode.F9, "F9", 120, "VK_F9", empty, empty],
7334
+ [1, ScanCode.F10, "F10", KeyCode.F10, "F10", 121, "VK_F10", empty, empty],
7335
+ [1, ScanCode.F11, "F11", KeyCode.F11, "F11", 122, "VK_F11", empty, empty],
7336
+ [1, ScanCode.F12, "F12", KeyCode.F12, "F12", 123, "VK_F12", empty, empty],
7337
+ [1, ScanCode.PrintScreen, "PrintScreen", KeyCode.Unknown, empty, 0, empty, empty, empty],
7338
+ [1, ScanCode.ScrollLock, "ScrollLock", KeyCode.ScrollLock, "ScrollLock", 145, "VK_SCROLL", empty, empty],
7339
+ [1, ScanCode.Pause, "Pause", KeyCode.PauseBreak, "PauseBreak", 19, "VK_PAUSE", empty, empty],
7340
+ [1, ScanCode.Insert, "Insert", KeyCode.Insert, "Insert", 45, "VK_INSERT", empty, empty],
7341
+ [1, ScanCode.Home, "Home", KeyCode.Home, "Home", 36, "VK_HOME", empty, empty],
7342
+ [1, ScanCode.PageUp, "PageUp", KeyCode.PageUp, "PageUp", 33, "VK_PRIOR", empty, empty],
7343
+ [1, ScanCode.Delete, "Delete", KeyCode.Delete, "Delete", 46, "VK_DELETE", empty, empty],
7344
+ [1, ScanCode.End, "End", KeyCode.End, "End", 35, "VK_END", empty, empty],
7345
+ [1, ScanCode.PageDown, "PageDown", KeyCode.PageDown, "PageDown", 34, "VK_NEXT", empty, empty],
7346
+ [1, ScanCode.ArrowRight, "ArrowRight", KeyCode.RightArrow, "RightArrow", 39, "VK_RIGHT", "Right", empty],
7347
+ [1, ScanCode.ArrowLeft, "ArrowLeft", KeyCode.LeftArrow, "LeftArrow", 37, "VK_LEFT", "Left", empty],
7348
+ [1, ScanCode.ArrowDown, "ArrowDown", KeyCode.DownArrow, "DownArrow", 40, "VK_DOWN", "Down", empty],
7349
+ [1, ScanCode.ArrowUp, "ArrowUp", KeyCode.UpArrow, "UpArrow", 38, "VK_UP", "Up", empty],
7350
+ [1, ScanCode.NumLock, "NumLock", KeyCode.NumLock, "NumLock", 144, "VK_NUMLOCK", empty, empty],
7351
+ [1, ScanCode.NumpadDivide, "NumpadDivide", KeyCode.NumpadDivide, "NumPad_Divide", 111, "VK_DIVIDE", empty, empty],
7352
+ [1, ScanCode.NumpadMultiply, "NumpadMultiply", KeyCode.NumpadMultiply, "NumPad_Multiply", 106, "VK_MULTIPLY", empty, empty],
7353
+ [1, ScanCode.NumpadSubtract, "NumpadSubtract", KeyCode.NumpadSubtract, "NumPad_Subtract", 109, "VK_SUBTRACT", empty, empty],
7354
+ [1, ScanCode.NumpadAdd, "NumpadAdd", KeyCode.NumpadAdd, "NumPad_Add", 107, "VK_ADD", empty, empty],
7355
+ [1, ScanCode.NumpadEnter, "NumpadEnter", KeyCode.Enter, empty, 0, empty, empty, empty],
7356
+ [1, ScanCode.Numpad1, "Numpad1", KeyCode.Numpad1, "NumPad1", 97, "VK_NUMPAD1", empty, empty],
7357
+ [1, ScanCode.Numpad2, "Numpad2", KeyCode.Numpad2, "NumPad2", 98, "VK_NUMPAD2", empty, empty],
7358
+ [1, ScanCode.Numpad3, "Numpad3", KeyCode.Numpad3, "NumPad3", 99, "VK_NUMPAD3", empty, empty],
7359
+ [1, ScanCode.Numpad4, "Numpad4", KeyCode.Numpad4, "NumPad4", 100, "VK_NUMPAD4", empty, empty],
7360
+ [1, ScanCode.Numpad5, "Numpad5", KeyCode.Numpad5, "NumPad5", 101, "VK_NUMPAD5", empty, empty],
7361
+ [1, ScanCode.Numpad6, "Numpad6", KeyCode.Numpad6, "NumPad6", 102, "VK_NUMPAD6", empty, empty],
7362
+ [1, ScanCode.Numpad7, "Numpad7", KeyCode.Numpad7, "NumPad7", 103, "VK_NUMPAD7", empty, empty],
7363
+ [1, ScanCode.Numpad8, "Numpad8", KeyCode.Numpad8, "NumPad8", 104, "VK_NUMPAD8", empty, empty],
7364
+ [1, ScanCode.Numpad9, "Numpad9", KeyCode.Numpad9, "NumPad9", 105, "VK_NUMPAD9", empty, empty],
7365
+ [1, ScanCode.Numpad0, "Numpad0", KeyCode.Numpad0, "NumPad0", 96, "VK_NUMPAD0", empty, empty],
7366
+ [1, ScanCode.NumpadDecimal, "NumpadDecimal", KeyCode.NumpadDecimal, "NumPad_Decimal", 110, "VK_DECIMAL", empty, empty],
7367
+ [0, ScanCode.IntlBackslash, "IntlBackslash", KeyCode.IntlBackslash, "OEM_102", 226, "VK_OEM_102", empty, empty],
7368
+ [1, ScanCode.ContextMenu, "ContextMenu", KeyCode.ContextMenu, "ContextMenu", 93, empty, empty, empty],
7369
+ [1, ScanCode.Power, "Power", KeyCode.Unknown, empty, 0, empty, empty, empty],
7370
+ [1, ScanCode.NumpadEqual, "NumpadEqual", KeyCode.Unknown, empty, 0, empty, empty, empty],
7371
+ [1, ScanCode.F13, "F13", KeyCode.F13, "F13", 124, "VK_F13", empty, empty],
7372
+ [1, ScanCode.F14, "F14", KeyCode.F14, "F14", 125, "VK_F14", empty, empty],
7373
+ [1, ScanCode.F15, "F15", KeyCode.F15, "F15", 126, "VK_F15", empty, empty],
7374
+ [1, ScanCode.F16, "F16", KeyCode.F16, "F16", 127, "VK_F16", empty, empty],
7375
+ [1, ScanCode.F17, "F17", KeyCode.F17, "F17", 128, "VK_F17", empty, empty],
7376
+ [1, ScanCode.F18, "F18", KeyCode.F18, "F18", 129, "VK_F18", empty, empty],
7377
+ [1, ScanCode.F19, "F19", KeyCode.F19, "F19", 130, "VK_F19", empty, empty],
7378
+ [1, ScanCode.F20, "F20", KeyCode.F20, "F20", 131, "VK_F20", empty, empty],
7379
+ [1, ScanCode.F21, "F21", KeyCode.F21, "F21", 132, "VK_F21", empty, empty],
7380
+ [1, ScanCode.F22, "F22", KeyCode.F22, "F22", 133, "VK_F22", empty, empty],
7381
+ [1, ScanCode.F23, "F23", KeyCode.F23, "F23", 134, "VK_F23", empty, empty],
7382
+ [1, ScanCode.F24, "F24", KeyCode.F24, "F24", 135, "VK_F24", empty, empty],
7383
+ [1, ScanCode.Open, "Open", KeyCode.Unknown, empty, 0, empty, empty, empty],
7384
+ [1, ScanCode.Help, "Help", KeyCode.Unknown, empty, 0, empty, empty, empty],
7385
+ [1, ScanCode.Select, "Select", KeyCode.Unknown, empty, 0, empty, empty, empty],
7386
+ [1, ScanCode.Again, "Again", KeyCode.Unknown, empty, 0, empty, empty, empty],
7387
+ [1, ScanCode.Undo, "Undo", KeyCode.Unknown, empty, 0, empty, empty, empty],
7388
+ [1, ScanCode.Cut, "Cut", KeyCode.Unknown, empty, 0, empty, empty, empty],
7389
+ [1, ScanCode.Copy, "Copy", KeyCode.Unknown, empty, 0, empty, empty, empty],
7390
+ [1, ScanCode.Paste, "Paste", KeyCode.Unknown, empty, 0, empty, empty, empty],
7391
+ [1, ScanCode.Find, "Find", KeyCode.Unknown, empty, 0, empty, empty, empty],
7392
+ [1, ScanCode.AudioVolumeMute, "AudioVolumeMute", KeyCode.AudioVolumeMute, "AudioVolumeMute", 173, "VK_VOLUME_MUTE", empty, empty],
7393
+ [1, ScanCode.AudioVolumeUp, "AudioVolumeUp", KeyCode.AudioVolumeUp, "AudioVolumeUp", 175, "VK_VOLUME_UP", empty, empty],
7394
+ [1, ScanCode.AudioVolumeDown, "AudioVolumeDown", KeyCode.AudioVolumeDown, "AudioVolumeDown", 174, "VK_VOLUME_DOWN", empty, empty],
7395
+ [1, ScanCode.NumpadComma, "NumpadComma", KeyCode.NUMPAD_SEPARATOR, "NumPad_Separator", 108, "VK_SEPARATOR", empty, empty],
7396
+ [0, ScanCode.IntlRo, "IntlRo", KeyCode.ABNT_C1, "ABNT_C1", 193, "VK_ABNT_C1", empty, empty],
7397
+ [1, ScanCode.KanaMode, "KanaMode", KeyCode.Unknown, empty, 0, empty, empty, empty],
7398
+ [0, ScanCode.IntlYen, "IntlYen", KeyCode.Unknown, empty, 0, empty, empty, empty],
7399
+ [1, ScanCode.Convert, "Convert", KeyCode.Unknown, empty, 0, empty, empty, empty],
7400
+ [1, ScanCode.NonConvert, "NonConvert", KeyCode.Unknown, empty, 0, empty, empty, empty],
7401
+ [1, ScanCode.Lang1, "Lang1", KeyCode.Unknown, empty, 0, empty, empty, empty],
7402
+ [1, ScanCode.Lang2, "Lang2", KeyCode.Unknown, empty, 0, empty, empty, empty],
7403
+ [1, ScanCode.Lang3, "Lang3", KeyCode.Unknown, empty, 0, empty, empty, empty],
7404
+ [1, ScanCode.Lang4, "Lang4", KeyCode.Unknown, empty, 0, empty, empty, empty],
7405
+ [1, ScanCode.Lang5, "Lang5", KeyCode.Unknown, empty, 0, empty, empty, empty],
7406
+ [1, ScanCode.Abort, "Abort", KeyCode.Unknown, empty, 0, empty, empty, empty],
7407
+ [1, ScanCode.Props, "Props", KeyCode.Unknown, empty, 0, empty, empty, empty],
7408
+ [1, ScanCode.NumpadParenLeft, "NumpadParenLeft", KeyCode.Unknown, empty, 0, empty, empty, empty],
7409
+ [1, ScanCode.NumpadParenRight, "NumpadParenRight", KeyCode.Unknown, empty, 0, empty, empty, empty],
7410
+ [1, ScanCode.NumpadBackspace, "NumpadBackspace", KeyCode.Unknown, empty, 0, empty, empty, empty],
7411
+ [1, ScanCode.NumpadMemoryStore, "NumpadMemoryStore", KeyCode.Unknown, empty, 0, empty, empty, empty],
7412
+ [1, ScanCode.NumpadMemoryRecall, "NumpadMemoryRecall", KeyCode.Unknown, empty, 0, empty, empty, empty],
7413
+ [1, ScanCode.NumpadMemoryClear, "NumpadMemoryClear", KeyCode.Unknown, empty, 0, empty, empty, empty],
7414
+ [1, ScanCode.NumpadMemoryAdd, "NumpadMemoryAdd", KeyCode.Unknown, empty, 0, empty, empty, empty],
7415
+ [1, ScanCode.NumpadMemorySubtract, "NumpadMemorySubtract", KeyCode.Unknown, empty, 0, empty, empty, empty],
7416
+ [1, ScanCode.NumpadClear, "NumpadClear", KeyCode.Clear, "Clear", 12, "VK_CLEAR", empty, empty],
7417
+ [1, ScanCode.NumpadClearEntry, "NumpadClearEntry", KeyCode.Unknown, empty, 0, empty, empty, empty],
7418
+ [1, ScanCode.None, empty, KeyCode.Ctrl, "Ctrl", 17, "VK_CONTROL", empty, empty],
7419
+ [1, ScanCode.None, empty, KeyCode.Shift, "Shift", 16, "VK_SHIFT", empty, empty],
7420
+ [1, ScanCode.None, empty, KeyCode.Alt, "Alt", 18, "VK_MENU", empty, empty],
7421
+ [1, ScanCode.None, empty, KeyCode.Meta, "Meta", 91, "VK_COMMAND", empty, empty],
7422
+ [1, ScanCode.ControlLeft, "ControlLeft", KeyCode.Ctrl, empty, 0, "VK_LCONTROL", empty, empty],
7423
+ [1, ScanCode.ShiftLeft, "ShiftLeft", KeyCode.Shift, empty, 0, "VK_LSHIFT", empty, empty],
7424
+ [1, ScanCode.AltLeft, "AltLeft", KeyCode.Alt, empty, 0, "VK_LMENU", empty, empty],
7425
+ [1, ScanCode.MetaLeft, "MetaLeft", KeyCode.Meta, empty, 0, "VK_LWIN", empty, empty],
7426
+ [1, ScanCode.ControlRight, "ControlRight", KeyCode.Ctrl, empty, 0, "VK_RCONTROL", empty, empty],
7427
+ [1, ScanCode.ShiftRight, "ShiftRight", KeyCode.Shift, empty, 0, "VK_RSHIFT", empty, empty],
7428
+ [1, ScanCode.AltRight, "AltRight", KeyCode.Alt, empty, 0, "VK_RMENU", empty, empty],
7429
+ [1, ScanCode.MetaRight, "MetaRight", KeyCode.Meta, empty, 0, "VK_RWIN", empty, empty],
7430
+ [1, ScanCode.BrightnessUp, "BrightnessUp", KeyCode.Unknown, empty, 0, empty, empty, empty],
7431
+ [1, ScanCode.BrightnessDown, "BrightnessDown", KeyCode.Unknown, empty, 0, empty, empty, empty],
7432
+ [1, ScanCode.MediaPlay, "MediaPlay", KeyCode.Unknown, empty, 0, empty, empty, empty],
7433
+ [1, ScanCode.MediaRecord, "MediaRecord", KeyCode.Unknown, empty, 0, empty, empty, empty],
7434
+ [1, ScanCode.MediaFastForward, "MediaFastForward", KeyCode.Unknown, empty, 0, empty, empty, empty],
7435
+ [1, ScanCode.MediaRewind, "MediaRewind", KeyCode.Unknown, empty, 0, empty, empty, empty],
7436
+ [1, ScanCode.MediaTrackNext, "MediaTrackNext", KeyCode.MediaTrackNext, "MediaTrackNext", 176, "VK_MEDIA_NEXT_TRACK", empty, empty],
7437
+ [1, ScanCode.MediaTrackPrevious, "MediaTrackPrevious", KeyCode.MediaTrackPrevious, "MediaTrackPrevious", 177, "VK_MEDIA_PREV_TRACK", empty, empty],
7438
+ [1, ScanCode.MediaStop, "MediaStop", KeyCode.MediaStop, "MediaStop", 178, "VK_MEDIA_STOP", empty, empty],
7439
+ [1, ScanCode.Eject, "Eject", KeyCode.Unknown, empty, 0, empty, empty, empty],
7440
+ [1, ScanCode.MediaPlayPause, "MediaPlayPause", KeyCode.MediaPlayPause, "MediaPlayPause", 179, "VK_MEDIA_PLAY_PAUSE", empty, empty],
7441
+ [1, ScanCode.MediaSelect, "MediaSelect", KeyCode.LaunchMediaPlayer, "LaunchMediaPlayer", 181, "VK_MEDIA_LAUNCH_MEDIA_SELECT", empty, empty],
7442
+ [1, ScanCode.LaunchMail, "LaunchMail", KeyCode.LaunchMail, "LaunchMail", 180, "VK_MEDIA_LAUNCH_MAIL", empty, empty],
7443
+ [1, ScanCode.LaunchApp2, "LaunchApp2", KeyCode.LaunchApp2, "LaunchApp2", 183, "VK_MEDIA_LAUNCH_APP2", empty, empty],
7444
+ [1, ScanCode.LaunchApp1, "LaunchApp1", KeyCode.Unknown, empty, 0, "VK_MEDIA_LAUNCH_APP1", empty, empty],
7445
+ [1, ScanCode.SelectTask, "SelectTask", KeyCode.Unknown, empty, 0, empty, empty, empty],
7446
+ [1, ScanCode.LaunchScreenSaver, "LaunchScreenSaver", KeyCode.Unknown, empty, 0, empty, empty, empty],
7447
+ [1, ScanCode.BrowserSearch, "BrowserSearch", KeyCode.BrowserSearch, "BrowserSearch", 170, "VK_BROWSER_SEARCH", empty, empty],
7448
+ [1, ScanCode.BrowserHome, "BrowserHome", KeyCode.BrowserHome, "BrowserHome", 172, "VK_BROWSER_HOME", empty, empty],
7449
+ [1, ScanCode.BrowserBack, "BrowserBack", KeyCode.BrowserBack, "BrowserBack", 166, "VK_BROWSER_BACK", empty, empty],
7450
+ [1, ScanCode.BrowserForward, "BrowserForward", KeyCode.BrowserForward, "BrowserForward", 167, "VK_BROWSER_FORWARD", empty, empty],
7451
+ [1, ScanCode.BrowserStop, "BrowserStop", KeyCode.Unknown, empty, 0, "VK_BROWSER_STOP", empty, empty],
7452
+ [1, ScanCode.BrowserRefresh, "BrowserRefresh", KeyCode.Unknown, empty, 0, "VK_BROWSER_REFRESH", empty, empty],
7453
+ [1, ScanCode.BrowserFavorites, "BrowserFavorites", KeyCode.Unknown, empty, 0, "VK_BROWSER_FAVORITES", empty, empty],
7454
+ [1, ScanCode.ZoomToggle, "ZoomToggle", KeyCode.Unknown, empty, 0, empty, empty, empty],
7455
+ [1, ScanCode.MailReply, "MailReply", KeyCode.Unknown, empty, 0, empty, empty, empty],
7456
+ [1, ScanCode.MailForward, "MailForward", KeyCode.Unknown, empty, 0, empty, empty, empty],
7457
+ [1, ScanCode.MailSend, "MailSend", KeyCode.Unknown, empty, 0, empty, empty, empty],
7458
+ [1, ScanCode.None, empty, KeyCode.KEY_IN_COMPOSITION, "KeyInComposition", 229, empty, empty, empty],
7459
+ [1, ScanCode.None, empty, KeyCode.ABNT_C2, "ABNT_C2", 194, "VK_ABNT_C2", empty, empty],
7460
+ [1, ScanCode.None, empty, KeyCode.OEM_8, "OEM_8", 223, "VK_OEM_8", empty, empty],
7461
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_KANA", empty, empty],
7462
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_HANGUL", empty, empty],
7463
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_JUNJA", empty, empty],
7464
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_FINAL", empty, empty],
7465
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_HANJA", empty, empty],
7466
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_KANJI", empty, empty],
7467
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_CONVERT", empty, empty],
7468
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_NONCONVERT", empty, empty],
7469
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_ACCEPT", empty, empty],
7470
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_MODECHANGE", empty, empty],
7471
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_SELECT", empty, empty],
7472
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_PRINT", empty, empty],
7473
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_EXECUTE", empty, empty],
7474
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_SNAPSHOT", empty, empty],
7475
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_HELP", empty, empty],
7476
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_APPS", empty, empty],
7477
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_PROCESSKEY", empty, empty],
7478
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_PACKET", empty, empty],
7479
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_DBE_SBCSCHAR", empty, empty],
7480
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_DBE_DBCSCHAR", empty, empty],
7481
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_ATTN", empty, empty],
7482
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_CRSEL", empty, empty],
7483
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_EXSEL", empty, empty],
7484
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_EREOF", empty, empty],
7485
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_PLAY", empty, empty],
7486
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_ZOOM", empty, empty],
7487
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_NONAME", empty, empty],
7488
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_PA1", empty, empty],
7489
+ [1, ScanCode.None, empty, KeyCode.Unknown, empty, 0, "VK_OEM_CLEAR", empty, empty]
6674
7490
  ];
6675
7491
  const seenKeyCode = [];
6676
7492
  const seenScanCode = [];
@@ -6683,7 +7499,7 @@ ${stackTraceFormattedLines.join("\n")}
6683
7499
  scanCodeLowerCaseStrToInt[scanCodeStr.toLowerCase()] = scanCode;
6684
7500
  if (immutable) {
6685
7501
  IMMUTABLE_CODE_TO_KEY_CODE[scanCode] = keyCode;
6686
- if (keyCode !== 0 && keyCode !== 3 && keyCode !== 5 && keyCode !== 4 && keyCode !== 6 && keyCode !== 57) {
7502
+ if (keyCode !== KeyCode.Unknown && keyCode !== KeyCode.Enter && keyCode !== KeyCode.Ctrl && keyCode !== KeyCode.Shift && keyCode !== KeyCode.Alt && keyCode !== KeyCode.Meta) {
6687
7503
  IMMUTABLE_KEY_CODE_TO_CODE[keyCode] = scanCode;
6688
7504
  }
6689
7505
  }
@@ -6706,7 +7522,7 @@ ${stackTraceFormattedLines.join("\n")}
6706
7522
  NATIVE_WINDOWS_KEY_CODE_TO_KEY_CODE[vkey] = keyCode;
6707
7523
  }
6708
7524
  }
6709
- IMMUTABLE_KEY_CODE_TO_CODE[3] = 46;
7525
+ IMMUTABLE_KEY_CODE_TO_CODE[KeyCode.Enter] = ScanCode.Enter;
6710
7526
  })();
6711
7527
  var KeyCodeUtils;
6712
7528
  (function(KeyCodeUtils2) {
@@ -6731,29 +7547,41 @@ ${stackTraceFormattedLines.join("\n")}
6731
7547
  }
6732
7548
  KeyCodeUtils2.fromUserSettings = fromUserSettings;
6733
7549
  function toElectronAccelerator(keyCode) {
6734
- if (keyCode >= 98 && keyCode <= 113) {
7550
+ if (keyCode >= KeyCode.Numpad0 && keyCode <= KeyCode.NumpadDivide) {
6735
7551
  return null;
6736
7552
  }
6737
7553
  switch (keyCode) {
6738
- case 16:
7554
+ case KeyCode.UpArrow:
6739
7555
  return "Up";
6740
- case 18:
7556
+ case KeyCode.DownArrow:
6741
7557
  return "Down";
6742
- case 15:
7558
+ case KeyCode.LeftArrow:
6743
7559
  return "Left";
6744
- case 17:
7560
+ case KeyCode.RightArrow:
6745
7561
  return "Right";
6746
7562
  }
6747
7563
  return uiMap.keyCodeToStr(keyCode);
6748
7564
  }
6749
7565
  KeyCodeUtils2.toElectronAccelerator = toElectronAccelerator;
6750
7566
  })(KeyCodeUtils || (KeyCodeUtils = {}));
7567
+ var KeyMod$1;
7568
+ (function(KeyMod2) {
7569
+ KeyMod2[KeyMod2["CtrlCmd"] = 2048] = "CtrlCmd";
7570
+ KeyMod2[KeyMod2["Shift"] = 1024] = "Shift";
7571
+ KeyMod2[KeyMod2["Alt"] = 512] = "Alt";
7572
+ KeyMod2[KeyMod2["WinCtrl"] = 256] = "WinCtrl";
7573
+ })(KeyMod$1 || (KeyMod$1 = {}));
6751
7574
  function KeyChord(firstPart, secondPart) {
6752
7575
  const chordPart = (secondPart & 65535) << 16 >>> 0;
6753
7576
  return (firstPart | chordPart) >>> 0;
6754
7577
  }
6755
7578
 
6756
7579
  // node_modules/vscode/vscode/src/vs/editor/common/core/selection.js
7580
+ var SelectionDirection;
7581
+ (function(SelectionDirection3) {
7582
+ SelectionDirection3[SelectionDirection3["LTR"] = 0] = "LTR";
7583
+ SelectionDirection3[SelectionDirection3["RTL"] = 1] = "RTL";
7584
+ })(SelectionDirection || (SelectionDirection = {}));
6757
7585
  var Selection = class _Selection extends Range {
6758
7586
  constructor(selectionStartLineNumber, selectionStartColumn, positionLineNumber, positionColumn) {
6759
7587
  super(selectionStartLineNumber, selectionStartColumn, positionLineNumber, positionColumn);
@@ -6773,12 +7601,12 @@ ${stackTraceFormattedLines.join("\n")}
6773
7601
  }
6774
7602
  getDirection() {
6775
7603
  if (this.selectionStartLineNumber === this.startLineNumber && this.selectionStartColumn === this.startColumn) {
6776
- return 0;
7604
+ return SelectionDirection.LTR;
6777
7605
  }
6778
- return 1;
7606
+ return SelectionDirection.RTL;
6779
7607
  }
6780
7608
  setEndPosition(endLineNumber, endColumn) {
6781
- if (this.getDirection() === 0) {
7609
+ if (this.getDirection() === SelectionDirection.LTR) {
6782
7610
  return new _Selection(this.startLineNumber, this.startColumn, endLineNumber, endColumn);
6783
7611
  }
6784
7612
  return new _Selection(endLineNumber, endColumn, this.startLineNumber, this.startColumn);
@@ -6790,7 +7618,7 @@ ${stackTraceFormattedLines.join("\n")}
6790
7618
  return new Position(this.selectionStartLineNumber, this.selectionStartColumn);
6791
7619
  }
6792
7620
  setStartPosition(startLineNumber, startColumn) {
6793
- if (this.getDirection() === 0) {
7621
+ if (this.getDirection() === SelectionDirection.LTR) {
6794
7622
  return new _Selection(startLineNumber, startColumn, this.endLineNumber, this.endColumn);
6795
7623
  }
6796
7624
  return new _Selection(this.endLineNumber, this.endColumn, startLineNumber, startColumn);
@@ -6799,7 +7627,7 @@ ${stackTraceFormattedLines.join("\n")}
6799
7627
  return new _Selection(start.lineNumber, start.column, end.lineNumber, end.column);
6800
7628
  }
6801
7629
  static fromRange(range, direction) {
6802
- if (direction === 0) {
7630
+ if (direction === SelectionDirection.LTR) {
6803
7631
  return new _Selection(
6804
7632
  range.startLineNumber,
6805
7633
  range.startColumn,
@@ -6844,7 +7672,7 @@ ${stackTraceFormattedLines.join("\n")}
6844
7672
  return obj && typeof obj.selectionStartLineNumber === "number" && typeof obj.selectionStartColumn === "number" && typeof obj.positionLineNumber === "number" && typeof obj.positionColumn === "number";
6845
7673
  }
6846
7674
  static createWithDirection(startLineNumber, startColumn, endLineNumber, endColumn, direction) {
6847
- if (direction === 0) {
7675
+ if (direction === SelectionDirection.LTR) {
6848
7676
  return new _Selection(startLineNumber, startColumn, endLineNumber, endColumn);
6849
7677
  }
6850
7678
  return new _Selection(endLineNumber, endColumn, startLineNumber, startColumn);
@@ -7435,7 +8263,8 @@ ${stackTraceFormattedLines.join("\n")}
7435
8263
  foldVerticalFilled: register("fold-vertical-filled", 60465),
7436
8264
  goToSearch: register("go-to-search", 60466),
7437
8265
  percentage: register("percentage", 60467),
7438
- sortPercentage: register("sort-percentage", 60467)
8266
+ sortPercentage: register("sort-percentage", 60467),
8267
+ attach: register("attach", 60468)
7439
8268
  };
7440
8269
 
7441
8270
  // node_modules/vscode/vscode/src/vs/base/common/codicons.js
@@ -7474,6 +8303,60 @@ ${stackTraceFormattedLines.join("\n")}
7474
8303
  ...codiconsDerived
7475
8304
  };
7476
8305
 
8306
+ // node_modules/vscode/vscode/src/vs/editor/common/encodedTokenAttributes.js
8307
+ var LanguageId;
8308
+ (function(LanguageId2) {
8309
+ LanguageId2[LanguageId2["Null"] = 0] = "Null";
8310
+ LanguageId2[LanguageId2["PlainText"] = 1] = "PlainText";
8311
+ })(LanguageId || (LanguageId = {}));
8312
+ var FontStyle;
8313
+ (function(FontStyle2) {
8314
+ FontStyle2[FontStyle2["NotSet"] = -1] = "NotSet";
8315
+ FontStyle2[FontStyle2["None"] = 0] = "None";
8316
+ FontStyle2[FontStyle2["Italic"] = 1] = "Italic";
8317
+ FontStyle2[FontStyle2["Bold"] = 2] = "Bold";
8318
+ FontStyle2[FontStyle2["Underline"] = 4] = "Underline";
8319
+ FontStyle2[FontStyle2["Strikethrough"] = 8] = "Strikethrough";
8320
+ })(FontStyle || (FontStyle = {}));
8321
+ var ColorId;
8322
+ (function(ColorId2) {
8323
+ ColorId2[ColorId2["None"] = 0] = "None";
8324
+ ColorId2[ColorId2["DefaultForeground"] = 1] = "DefaultForeground";
8325
+ ColorId2[ColorId2["DefaultBackground"] = 2] = "DefaultBackground";
8326
+ })(ColorId || (ColorId = {}));
8327
+ var StandardTokenType;
8328
+ (function(StandardTokenType2) {
8329
+ StandardTokenType2[StandardTokenType2["Other"] = 0] = "Other";
8330
+ StandardTokenType2[StandardTokenType2["Comment"] = 1] = "Comment";
8331
+ StandardTokenType2[StandardTokenType2["String"] = 2] = "String";
8332
+ StandardTokenType2[StandardTokenType2["RegEx"] = 3] = "RegEx";
8333
+ })(StandardTokenType || (StandardTokenType = {}));
8334
+ var MetadataConsts;
8335
+ (function(MetadataConsts2) {
8336
+ MetadataConsts2[MetadataConsts2["LANGUAGEID_MASK"] = 255] = "LANGUAGEID_MASK";
8337
+ MetadataConsts2[MetadataConsts2["TOKEN_TYPE_MASK"] = 768] = "TOKEN_TYPE_MASK";
8338
+ MetadataConsts2[MetadataConsts2["BALANCED_BRACKETS_MASK"] = 1024] = "BALANCED_BRACKETS_MASK";
8339
+ MetadataConsts2[MetadataConsts2["FONT_STYLE_MASK"] = 30720] = "FONT_STYLE_MASK";
8340
+ MetadataConsts2[MetadataConsts2["FOREGROUND_MASK"] = 16744448] = "FOREGROUND_MASK";
8341
+ MetadataConsts2[MetadataConsts2["BACKGROUND_MASK"] = 4278190080] = "BACKGROUND_MASK";
8342
+ MetadataConsts2[MetadataConsts2["ITALIC_MASK"] = 2048] = "ITALIC_MASK";
8343
+ MetadataConsts2[MetadataConsts2["BOLD_MASK"] = 4096] = "BOLD_MASK";
8344
+ MetadataConsts2[MetadataConsts2["UNDERLINE_MASK"] = 8192] = "UNDERLINE_MASK";
8345
+ MetadataConsts2[MetadataConsts2["STRIKETHROUGH_MASK"] = 16384] = "STRIKETHROUGH_MASK";
8346
+ MetadataConsts2[MetadataConsts2["SEMANTIC_USE_ITALIC"] = 1] = "SEMANTIC_USE_ITALIC";
8347
+ MetadataConsts2[MetadataConsts2["SEMANTIC_USE_BOLD"] = 2] = "SEMANTIC_USE_BOLD";
8348
+ MetadataConsts2[MetadataConsts2["SEMANTIC_USE_UNDERLINE"] = 4] = "SEMANTIC_USE_UNDERLINE";
8349
+ MetadataConsts2[MetadataConsts2["SEMANTIC_USE_STRIKETHROUGH"] = 8] = "SEMANTIC_USE_STRIKETHROUGH";
8350
+ MetadataConsts2[MetadataConsts2["SEMANTIC_USE_FOREGROUND"] = 16] = "SEMANTIC_USE_FOREGROUND";
8351
+ MetadataConsts2[MetadataConsts2["SEMANTIC_USE_BACKGROUND"] = 32] = "SEMANTIC_USE_BACKGROUND";
8352
+ MetadataConsts2[MetadataConsts2["LANGUAGEID_OFFSET"] = 0] = "LANGUAGEID_OFFSET";
8353
+ MetadataConsts2[MetadataConsts2["TOKEN_TYPE_OFFSET"] = 8] = "TOKEN_TYPE_OFFSET";
8354
+ MetadataConsts2[MetadataConsts2["BALANCED_BRACKETS_OFFSET"] = 10] = "BALANCED_BRACKETS_OFFSET";
8355
+ MetadataConsts2[MetadataConsts2["FONT_STYLE_OFFSET"] = 11] = "FONT_STYLE_OFFSET";
8356
+ MetadataConsts2[MetadataConsts2["FOREGROUND_OFFSET"] = 15] = "FOREGROUND_OFFSET";
8357
+ MetadataConsts2[MetadataConsts2["BACKGROUND_OFFSET"] = 24] = "BACKGROUND_OFFSET";
8358
+ })(MetadataConsts || (MetadataConsts = {}));
8359
+
7477
8360
  // node_modules/vscode/vscode/src/vs/editor/common/tokenizationRegistry.js
7478
8361
  var TokenizationRegistry = class {
7479
8362
  constructor() {
@@ -7550,8 +8433,8 @@ ${stackTraceFormattedLines.join("\n")}
7550
8433
  return this._colorMap;
7551
8434
  }
7552
8435
  getDefaultBackground() {
7553
- if (this._colorMap && this._colorMap.length > 2) {
7554
- return this._colorMap[2];
8436
+ if (this._colorMap && this._colorMap.length > ColorId.DefaultBackground) {
8437
+ return this._colorMap[ColorId.DefaultBackground];
7555
8438
  }
7556
8439
  return null;
7557
8440
  }
@@ -7606,38 +8489,69 @@ ${stackTraceFormattedLines.join("\n")}
7606
8489
  HoverVerbosityAction3[HoverVerbosityAction3["Increase"] = 0] = "Increase";
7607
8490
  HoverVerbosityAction3[HoverVerbosityAction3["Decrease"] = 1] = "Decrease";
7608
8491
  })(HoverVerbosityAction || (HoverVerbosityAction = {}));
8492
+ var CompletionItemKind;
8493
+ (function(CompletionItemKind3) {
8494
+ CompletionItemKind3[CompletionItemKind3["Method"] = 0] = "Method";
8495
+ CompletionItemKind3[CompletionItemKind3["Function"] = 1] = "Function";
8496
+ CompletionItemKind3[CompletionItemKind3["Constructor"] = 2] = "Constructor";
8497
+ CompletionItemKind3[CompletionItemKind3["Field"] = 3] = "Field";
8498
+ CompletionItemKind3[CompletionItemKind3["Variable"] = 4] = "Variable";
8499
+ CompletionItemKind3[CompletionItemKind3["Class"] = 5] = "Class";
8500
+ CompletionItemKind3[CompletionItemKind3["Struct"] = 6] = "Struct";
8501
+ CompletionItemKind3[CompletionItemKind3["Interface"] = 7] = "Interface";
8502
+ CompletionItemKind3[CompletionItemKind3["Module"] = 8] = "Module";
8503
+ CompletionItemKind3[CompletionItemKind3["Property"] = 9] = "Property";
8504
+ CompletionItemKind3[CompletionItemKind3["Event"] = 10] = "Event";
8505
+ CompletionItemKind3[CompletionItemKind3["Operator"] = 11] = "Operator";
8506
+ CompletionItemKind3[CompletionItemKind3["Unit"] = 12] = "Unit";
8507
+ CompletionItemKind3[CompletionItemKind3["Value"] = 13] = "Value";
8508
+ CompletionItemKind3[CompletionItemKind3["Constant"] = 14] = "Constant";
8509
+ CompletionItemKind3[CompletionItemKind3["Enum"] = 15] = "Enum";
8510
+ CompletionItemKind3[CompletionItemKind3["EnumMember"] = 16] = "EnumMember";
8511
+ CompletionItemKind3[CompletionItemKind3["Keyword"] = 17] = "Keyword";
8512
+ CompletionItemKind3[CompletionItemKind3["Text"] = 18] = "Text";
8513
+ CompletionItemKind3[CompletionItemKind3["Color"] = 19] = "Color";
8514
+ CompletionItemKind3[CompletionItemKind3["File"] = 20] = "File";
8515
+ CompletionItemKind3[CompletionItemKind3["Reference"] = 21] = "Reference";
8516
+ CompletionItemKind3[CompletionItemKind3["Customcolor"] = 22] = "Customcolor";
8517
+ CompletionItemKind3[CompletionItemKind3["Folder"] = 23] = "Folder";
8518
+ CompletionItemKind3[CompletionItemKind3["TypeParameter"] = 24] = "TypeParameter";
8519
+ CompletionItemKind3[CompletionItemKind3["User"] = 25] = "User";
8520
+ CompletionItemKind3[CompletionItemKind3["Issue"] = 26] = "Issue";
8521
+ CompletionItemKind3[CompletionItemKind3["Snippet"] = 27] = "Snippet";
8522
+ })(CompletionItemKind || (CompletionItemKind = {}));
7609
8523
  var CompletionItemKinds;
7610
8524
  (function(CompletionItemKinds2) {
7611
8525
  const byKind = /* @__PURE__ */ new Map();
7612
- byKind.set(0, Codicon.symbolMethod);
7613
- byKind.set(1, Codicon.symbolFunction);
7614
- byKind.set(2, Codicon.symbolConstructor);
7615
- byKind.set(3, Codicon.symbolField);
7616
- byKind.set(4, Codicon.symbolVariable);
7617
- byKind.set(5, Codicon.symbolClass);
7618
- byKind.set(6, Codicon.symbolStruct);
7619
- byKind.set(7, Codicon.symbolInterface);
7620
- byKind.set(8, Codicon.symbolModule);
7621
- byKind.set(9, Codicon.symbolProperty);
7622
- byKind.set(10, Codicon.symbolEvent);
7623
- byKind.set(11, Codicon.symbolOperator);
7624
- byKind.set(12, Codicon.symbolUnit);
7625
- byKind.set(13, Codicon.symbolValue);
7626
- byKind.set(15, Codicon.symbolEnum);
7627
- byKind.set(14, Codicon.symbolConstant);
7628
- byKind.set(15, Codicon.symbolEnum);
7629
- byKind.set(16, Codicon.symbolEnumMember);
7630
- byKind.set(17, Codicon.symbolKeyword);
7631
- byKind.set(27, Codicon.symbolSnippet);
7632
- byKind.set(18, Codicon.symbolText);
7633
- byKind.set(19, Codicon.symbolColor);
7634
- byKind.set(20, Codicon.symbolFile);
7635
- byKind.set(21, Codicon.symbolReference);
7636
- byKind.set(22, Codicon.symbolCustomColor);
7637
- byKind.set(23, Codicon.symbolFolder);
7638
- byKind.set(24, Codicon.symbolTypeParameter);
7639
- byKind.set(25, Codicon.account);
7640
- byKind.set(26, Codicon.issues);
8526
+ byKind.set(CompletionItemKind.Method, Codicon.symbolMethod);
8527
+ byKind.set(CompletionItemKind.Function, Codicon.symbolFunction);
8528
+ byKind.set(CompletionItemKind.Constructor, Codicon.symbolConstructor);
8529
+ byKind.set(CompletionItemKind.Field, Codicon.symbolField);
8530
+ byKind.set(CompletionItemKind.Variable, Codicon.symbolVariable);
8531
+ byKind.set(CompletionItemKind.Class, Codicon.symbolClass);
8532
+ byKind.set(CompletionItemKind.Struct, Codicon.symbolStruct);
8533
+ byKind.set(CompletionItemKind.Interface, Codicon.symbolInterface);
8534
+ byKind.set(CompletionItemKind.Module, Codicon.symbolModule);
8535
+ byKind.set(CompletionItemKind.Property, Codicon.symbolProperty);
8536
+ byKind.set(CompletionItemKind.Event, Codicon.symbolEvent);
8537
+ byKind.set(CompletionItemKind.Operator, Codicon.symbolOperator);
8538
+ byKind.set(CompletionItemKind.Unit, Codicon.symbolUnit);
8539
+ byKind.set(CompletionItemKind.Value, Codicon.symbolValue);
8540
+ byKind.set(CompletionItemKind.Enum, Codicon.symbolEnum);
8541
+ byKind.set(CompletionItemKind.Constant, Codicon.symbolConstant);
8542
+ byKind.set(CompletionItemKind.Enum, Codicon.symbolEnum);
8543
+ byKind.set(CompletionItemKind.EnumMember, Codicon.symbolEnumMember);
8544
+ byKind.set(CompletionItemKind.Keyword, Codicon.symbolKeyword);
8545
+ byKind.set(CompletionItemKind.Snippet, Codicon.symbolSnippet);
8546
+ byKind.set(CompletionItemKind.Text, Codicon.symbolText);
8547
+ byKind.set(CompletionItemKind.Color, Codicon.symbolColor);
8548
+ byKind.set(CompletionItemKind.File, Codicon.symbolFile);
8549
+ byKind.set(CompletionItemKind.Reference, Codicon.symbolReference);
8550
+ byKind.set(CompletionItemKind.Customcolor, Codicon.symbolCustomColor);
8551
+ byKind.set(CompletionItemKind.Folder, Codicon.symbolFolder);
8552
+ byKind.set(CompletionItemKind.TypeParameter, Codicon.symbolTypeParameter);
8553
+ byKind.set(CompletionItemKind.User, Codicon.account);
8554
+ byKind.set(CompletionItemKind.Issue, Codicon.issues);
7641
8555
  function toIcon(kind) {
7642
8556
  let codicon = byKind.get(kind);
7643
8557
  if (!codicon) {
@@ -7648,50 +8562,77 @@ ${stackTraceFormattedLines.join("\n")}
7648
8562
  }
7649
8563
  CompletionItemKinds2.toIcon = toIcon;
7650
8564
  const data = /* @__PURE__ */ new Map();
7651
- data.set("method", 0);
7652
- data.set("function", 1);
7653
- data.set("constructor", 2);
7654
- data.set("field", 3);
7655
- data.set("variable", 4);
7656
- data.set("class", 5);
7657
- data.set("struct", 6);
7658
- data.set("interface", 7);
7659
- data.set("module", 8);
7660
- data.set("property", 9);
7661
- data.set("event", 10);
7662
- data.set("operator", 11);
7663
- data.set("unit", 12);
7664
- data.set("value", 13);
7665
- data.set("constant", 14);
7666
- data.set("enum", 15);
7667
- data.set("enum-member", 16);
7668
- data.set("enumMember", 16);
7669
- data.set("keyword", 17);
7670
- data.set("snippet", 27);
7671
- data.set("text", 18);
7672
- data.set("color", 19);
7673
- data.set("file", 20);
7674
- data.set("reference", 21);
7675
- data.set("customcolor", 22);
7676
- data.set("folder", 23);
7677
- data.set("type-parameter", 24);
7678
- data.set("typeParameter", 24);
7679
- data.set("account", 25);
7680
- data.set("issue", 26);
8565
+ data.set("method", CompletionItemKind.Method);
8566
+ data.set("function", CompletionItemKind.Function);
8567
+ data.set("constructor", CompletionItemKind.Constructor);
8568
+ data.set("field", CompletionItemKind.Field);
8569
+ data.set("variable", CompletionItemKind.Variable);
8570
+ data.set("class", CompletionItemKind.Class);
8571
+ data.set("struct", CompletionItemKind.Struct);
8572
+ data.set("interface", CompletionItemKind.Interface);
8573
+ data.set("module", CompletionItemKind.Module);
8574
+ data.set("property", CompletionItemKind.Property);
8575
+ data.set("event", CompletionItemKind.Event);
8576
+ data.set("operator", CompletionItemKind.Operator);
8577
+ data.set("unit", CompletionItemKind.Unit);
8578
+ data.set("value", CompletionItemKind.Value);
8579
+ data.set("constant", CompletionItemKind.Constant);
8580
+ data.set("enum", CompletionItemKind.Enum);
8581
+ data.set("enum-member", CompletionItemKind.EnumMember);
8582
+ data.set("enumMember", CompletionItemKind.EnumMember);
8583
+ data.set("keyword", CompletionItemKind.Keyword);
8584
+ data.set("snippet", CompletionItemKind.Snippet);
8585
+ data.set("text", CompletionItemKind.Text);
8586
+ data.set("color", CompletionItemKind.Color);
8587
+ data.set("file", CompletionItemKind.File);
8588
+ data.set("reference", CompletionItemKind.Reference);
8589
+ data.set("customcolor", CompletionItemKind.Customcolor);
8590
+ data.set("folder", CompletionItemKind.Folder);
8591
+ data.set("type-parameter", CompletionItemKind.TypeParameter);
8592
+ data.set("typeParameter", CompletionItemKind.TypeParameter);
8593
+ data.set("account", CompletionItemKind.User);
8594
+ data.set("issue", CompletionItemKind.Issue);
7681
8595
  function fromString(value, strict) {
7682
8596
  let res = data.get(value);
7683
8597
  if (typeof res === "undefined" && !strict) {
7684
- res = 9;
8598
+ res = CompletionItemKind.Property;
7685
8599
  }
7686
8600
  return res;
7687
8601
  }
7688
8602
  CompletionItemKinds2.fromString = fromString;
7689
8603
  })(CompletionItemKinds || (CompletionItemKinds = {}));
8604
+ var CompletionItemTag;
8605
+ (function(CompletionItemTag3) {
8606
+ CompletionItemTag3[CompletionItemTag3["Deprecated"] = 1] = "Deprecated";
8607
+ })(CompletionItemTag || (CompletionItemTag = {}));
8608
+ var CompletionItemInsertTextRule;
8609
+ (function(CompletionItemInsertTextRule3) {
8610
+ CompletionItemInsertTextRule3[CompletionItemInsertTextRule3["None"] = 0] = "None";
8611
+ CompletionItemInsertTextRule3[CompletionItemInsertTextRule3["KeepWhitespace"] = 1] = "KeepWhitespace";
8612
+ CompletionItemInsertTextRule3[CompletionItemInsertTextRule3["InsertAsSnippet"] = 4] = "InsertAsSnippet";
8613
+ })(CompletionItemInsertTextRule || (CompletionItemInsertTextRule = {}));
8614
+ var PartialAcceptTriggerKind;
8615
+ (function(PartialAcceptTriggerKind3) {
8616
+ PartialAcceptTriggerKind3[PartialAcceptTriggerKind3["Word"] = 0] = "Word";
8617
+ PartialAcceptTriggerKind3[PartialAcceptTriggerKind3["Line"] = 1] = "Line";
8618
+ PartialAcceptTriggerKind3[PartialAcceptTriggerKind3["Suggest"] = 2] = "Suggest";
8619
+ })(PartialAcceptTriggerKind || (PartialAcceptTriggerKind = {}));
8620
+ var CompletionTriggerKind;
8621
+ (function(CompletionTriggerKind3) {
8622
+ CompletionTriggerKind3[CompletionTriggerKind3["Invoke"] = 0] = "Invoke";
8623
+ CompletionTriggerKind3[CompletionTriggerKind3["TriggerCharacter"] = 1] = "TriggerCharacter";
8624
+ CompletionTriggerKind3[CompletionTriggerKind3["TriggerForIncompleteCompletions"] = 2] = "TriggerForIncompleteCompletions";
8625
+ })(CompletionTriggerKind || (CompletionTriggerKind = {}));
7690
8626
  var InlineCompletionTriggerKind;
7691
8627
  (function(InlineCompletionTriggerKind3) {
7692
8628
  InlineCompletionTriggerKind3[InlineCompletionTriggerKind3["Automatic"] = 0] = "Automatic";
7693
8629
  InlineCompletionTriggerKind3[InlineCompletionTriggerKind3["Explicit"] = 1] = "Explicit";
7694
8630
  })(InlineCompletionTriggerKind || (InlineCompletionTriggerKind = {}));
8631
+ var CodeActionTriggerType;
8632
+ (function(CodeActionTriggerType3) {
8633
+ CodeActionTriggerType3[CodeActionTriggerType3["Invoke"] = 1] = "Invoke";
8634
+ CodeActionTriggerType3[CodeActionTriggerType3["Auto"] = 2] = "Auto";
8635
+ })(CodeActionTriggerType || (CodeActionTriggerType = {}));
7695
8636
  var DocumentPasteTriggerKind;
7696
8637
  (function(DocumentPasteTriggerKind2) {
7697
8638
  DocumentPasteTriggerKind2[DocumentPasteTriggerKind2["Automatic"] = 0] = "Automatic";
@@ -7709,63 +8650,96 @@ ${stackTraceFormattedLines.join("\n")}
7709
8650
  DocumentHighlightKind3[DocumentHighlightKind3["Read"] = 1] = "Read";
7710
8651
  DocumentHighlightKind3[DocumentHighlightKind3["Write"] = 2] = "Write";
7711
8652
  })(DocumentHighlightKind || (DocumentHighlightKind = {}));
8653
+ var SymbolKind;
8654
+ (function(SymbolKind3) {
8655
+ SymbolKind3[SymbolKind3["File"] = 0] = "File";
8656
+ SymbolKind3[SymbolKind3["Module"] = 1] = "Module";
8657
+ SymbolKind3[SymbolKind3["Namespace"] = 2] = "Namespace";
8658
+ SymbolKind3[SymbolKind3["Package"] = 3] = "Package";
8659
+ SymbolKind3[SymbolKind3["Class"] = 4] = "Class";
8660
+ SymbolKind3[SymbolKind3["Method"] = 5] = "Method";
8661
+ SymbolKind3[SymbolKind3["Property"] = 6] = "Property";
8662
+ SymbolKind3[SymbolKind3["Field"] = 7] = "Field";
8663
+ SymbolKind3[SymbolKind3["Constructor"] = 8] = "Constructor";
8664
+ SymbolKind3[SymbolKind3["Enum"] = 9] = "Enum";
8665
+ SymbolKind3[SymbolKind3["Interface"] = 10] = "Interface";
8666
+ SymbolKind3[SymbolKind3["Function"] = 11] = "Function";
8667
+ SymbolKind3[SymbolKind3["Variable"] = 12] = "Variable";
8668
+ SymbolKind3[SymbolKind3["Constant"] = 13] = "Constant";
8669
+ SymbolKind3[SymbolKind3["String"] = 14] = "String";
8670
+ SymbolKind3[SymbolKind3["Number"] = 15] = "Number";
8671
+ SymbolKind3[SymbolKind3["Boolean"] = 16] = "Boolean";
8672
+ SymbolKind3[SymbolKind3["Array"] = 17] = "Array";
8673
+ SymbolKind3[SymbolKind3["Object"] = 18] = "Object";
8674
+ SymbolKind3[SymbolKind3["Key"] = 19] = "Key";
8675
+ SymbolKind3[SymbolKind3["Null"] = 20] = "Null";
8676
+ SymbolKind3[SymbolKind3["EnumMember"] = 21] = "EnumMember";
8677
+ SymbolKind3[SymbolKind3["Struct"] = 22] = "Struct";
8678
+ SymbolKind3[SymbolKind3["Event"] = 23] = "Event";
8679
+ SymbolKind3[SymbolKind3["Operator"] = 24] = "Operator";
8680
+ SymbolKind3[SymbolKind3["TypeParameter"] = 25] = "TypeParameter";
8681
+ })(SymbolKind || (SymbolKind = {}));
7712
8682
  var symbolKindNames = {
7713
- [17]: localizeWithPath(_moduleId, 0, "array"),
7714
- [16]: localizeWithPath(_moduleId, 1, "boolean"),
7715
- [4]: localizeWithPath(_moduleId, 2, "class"),
7716
- [13]: localizeWithPath(_moduleId, 3, "constant"),
7717
- [8]: localizeWithPath(_moduleId, 4, "constructor"),
7718
- [9]: localizeWithPath(_moduleId, 5, "enumeration"),
7719
- [21]: localizeWithPath(_moduleId, 6, "enumeration member"),
7720
- [23]: localizeWithPath(_moduleId, 7, "event"),
7721
- [7]: localizeWithPath(_moduleId, 8, "field"),
7722
- [0]: localizeWithPath(_moduleId, 9, "file"),
7723
- [11]: localizeWithPath(_moduleId, 10, "function"),
7724
- [10]: localizeWithPath(_moduleId, 11, "interface"),
7725
- [19]: localizeWithPath(_moduleId, 12, "key"),
7726
- [5]: localizeWithPath(_moduleId, 13, "method"),
7727
- [1]: localizeWithPath(_moduleId, 14, "module"),
7728
- [2]: localizeWithPath(_moduleId, 15, "namespace"),
7729
- [20]: localizeWithPath(_moduleId, 16, "null"),
7730
- [15]: localizeWithPath(_moduleId, 17, "number"),
7731
- [18]: localizeWithPath(_moduleId, 18, "object"),
7732
- [24]: localizeWithPath(_moduleId, 19, "operator"),
7733
- [3]: localizeWithPath(_moduleId, 20, "package"),
7734
- [6]: localizeWithPath(_moduleId, 21, "property"),
7735
- [14]: localizeWithPath(_moduleId, 22, "string"),
7736
- [22]: localizeWithPath(_moduleId, 23, "struct"),
7737
- [25]: localizeWithPath(_moduleId, 24, "type parameter"),
7738
- [12]: localizeWithPath(_moduleId, 25, "variable")
8683
+ [SymbolKind.Array]: localizeWithPath(_moduleId, 0, "array"),
8684
+ [SymbolKind.Boolean]: localizeWithPath(_moduleId, 1, "boolean"),
8685
+ [SymbolKind.Class]: localizeWithPath(_moduleId, 2, "class"),
8686
+ [SymbolKind.Constant]: localizeWithPath(_moduleId, 3, "constant"),
8687
+ [SymbolKind.Constructor]: localizeWithPath(_moduleId, 4, "constructor"),
8688
+ [SymbolKind.Enum]: localizeWithPath(_moduleId, 5, "enumeration"),
8689
+ [SymbolKind.EnumMember]: localizeWithPath(_moduleId, 6, "enumeration member"),
8690
+ [SymbolKind.Event]: localizeWithPath(_moduleId, 7, "event"),
8691
+ [SymbolKind.Field]: localizeWithPath(_moduleId, 8, "field"),
8692
+ [SymbolKind.File]: localizeWithPath(_moduleId, 9, "file"),
8693
+ [SymbolKind.Function]: localizeWithPath(_moduleId, 10, "function"),
8694
+ [SymbolKind.Interface]: localizeWithPath(_moduleId, 11, "interface"),
8695
+ [SymbolKind.Key]: localizeWithPath(_moduleId, 12, "key"),
8696
+ [SymbolKind.Method]: localizeWithPath(_moduleId, 13, "method"),
8697
+ [SymbolKind.Module]: localizeWithPath(_moduleId, 14, "module"),
8698
+ [SymbolKind.Namespace]: localizeWithPath(_moduleId, 15, "namespace"),
8699
+ [SymbolKind.Null]: localizeWithPath(_moduleId, 16, "null"),
8700
+ [SymbolKind.Number]: localizeWithPath(_moduleId, 17, "number"),
8701
+ [SymbolKind.Object]: localizeWithPath(_moduleId, 18, "object"),
8702
+ [SymbolKind.Operator]: localizeWithPath(_moduleId, 19, "operator"),
8703
+ [SymbolKind.Package]: localizeWithPath(_moduleId, 20, "package"),
8704
+ [SymbolKind.Property]: localizeWithPath(_moduleId, 21, "property"),
8705
+ [SymbolKind.String]: localizeWithPath(_moduleId, 22, "string"),
8706
+ [SymbolKind.Struct]: localizeWithPath(_moduleId, 23, "struct"),
8707
+ [SymbolKind.TypeParameter]: localizeWithPath(_moduleId, 24, "type parameter"),
8708
+ [SymbolKind.Variable]: localizeWithPath(_moduleId, 25, "variable")
7739
8709
  };
8710
+ var SymbolTag;
8711
+ (function(SymbolTag3) {
8712
+ SymbolTag3[SymbolTag3["Deprecated"] = 1] = "Deprecated";
8713
+ })(SymbolTag || (SymbolTag = {}));
7740
8714
  var SymbolKinds;
7741
8715
  (function(SymbolKinds2) {
7742
8716
  const byKind = /* @__PURE__ */ new Map();
7743
- byKind.set(0, Codicon.symbolFile);
7744
- byKind.set(1, Codicon.symbolModule);
7745
- byKind.set(2, Codicon.symbolNamespace);
7746
- byKind.set(3, Codicon.symbolPackage);
7747
- byKind.set(4, Codicon.symbolClass);
7748
- byKind.set(5, Codicon.symbolMethod);
7749
- byKind.set(6, Codicon.symbolProperty);
7750
- byKind.set(7, Codicon.symbolField);
7751
- byKind.set(8, Codicon.symbolConstructor);
7752
- byKind.set(9, Codicon.symbolEnum);
7753
- byKind.set(10, Codicon.symbolInterface);
7754
- byKind.set(11, Codicon.symbolFunction);
7755
- byKind.set(12, Codicon.symbolVariable);
7756
- byKind.set(13, Codicon.symbolConstant);
7757
- byKind.set(14, Codicon.symbolString);
7758
- byKind.set(15, Codicon.symbolNumber);
7759
- byKind.set(16, Codicon.symbolBoolean);
7760
- byKind.set(17, Codicon.symbolArray);
7761
- byKind.set(18, Codicon.symbolObject);
7762
- byKind.set(19, Codicon.symbolKey);
7763
- byKind.set(20, Codicon.symbolNull);
7764
- byKind.set(21, Codicon.symbolEnumMember);
7765
- byKind.set(22, Codicon.symbolStruct);
7766
- byKind.set(23, Codicon.symbolEvent);
7767
- byKind.set(24, Codicon.symbolOperator);
7768
- byKind.set(25, Codicon.symbolTypeParameter);
8717
+ byKind.set(SymbolKind.File, Codicon.symbolFile);
8718
+ byKind.set(SymbolKind.Module, Codicon.symbolModule);
8719
+ byKind.set(SymbolKind.Namespace, Codicon.symbolNamespace);
8720
+ byKind.set(SymbolKind.Package, Codicon.symbolPackage);
8721
+ byKind.set(SymbolKind.Class, Codicon.symbolClass);
8722
+ byKind.set(SymbolKind.Method, Codicon.symbolMethod);
8723
+ byKind.set(SymbolKind.Property, Codicon.symbolProperty);
8724
+ byKind.set(SymbolKind.Field, Codicon.symbolField);
8725
+ byKind.set(SymbolKind.Constructor, Codicon.symbolConstructor);
8726
+ byKind.set(SymbolKind.Enum, Codicon.symbolEnum);
8727
+ byKind.set(SymbolKind.Interface, Codicon.symbolInterface);
8728
+ byKind.set(SymbolKind.Function, Codicon.symbolFunction);
8729
+ byKind.set(SymbolKind.Variable, Codicon.symbolVariable);
8730
+ byKind.set(SymbolKind.Constant, Codicon.symbolConstant);
8731
+ byKind.set(SymbolKind.String, Codicon.symbolString);
8732
+ byKind.set(SymbolKind.Number, Codicon.symbolNumber);
8733
+ byKind.set(SymbolKind.Boolean, Codicon.symbolBoolean);
8734
+ byKind.set(SymbolKind.Array, Codicon.symbolArray);
8735
+ byKind.set(SymbolKind.Object, Codicon.symbolObject);
8736
+ byKind.set(SymbolKind.Key, Codicon.symbolKey);
8737
+ byKind.set(SymbolKind.Null, Codicon.symbolNull);
8738
+ byKind.set(SymbolKind.EnumMember, Codicon.symbolEnumMember);
8739
+ byKind.set(SymbolKind.Struct, Codicon.symbolStruct);
8740
+ byKind.set(SymbolKind.Event, Codicon.symbolEvent);
8741
+ byKind.set(SymbolKind.Operator, Codicon.symbolOperator);
8742
+ byKind.set(SymbolKind.TypeParameter, Codicon.symbolTypeParameter);
7769
8743
  function toIcon(kind) {
7770
8744
  let icon = byKind.get(kind);
7771
8745
  if (!icon) {
@@ -7866,58 +8840,58 @@ ${stackTraceFormattedLines.join("\n")}
7866
8840
  AccessibilitySupport2[AccessibilitySupport2["Disabled"] = 1] = "Disabled";
7867
8841
  AccessibilitySupport2[AccessibilitySupport2["Enabled"] = 2] = "Enabled";
7868
8842
  })(AccessibilitySupport || (AccessibilitySupport = {}));
7869
- var CodeActionTriggerType;
7870
- (function(CodeActionTriggerType2) {
7871
- CodeActionTriggerType2[CodeActionTriggerType2["Invoke"] = 1] = "Invoke";
7872
- CodeActionTriggerType2[CodeActionTriggerType2["Auto"] = 2] = "Auto";
7873
- })(CodeActionTriggerType || (CodeActionTriggerType = {}));
7874
- var CompletionItemInsertTextRule;
7875
- (function(CompletionItemInsertTextRule2) {
7876
- CompletionItemInsertTextRule2[CompletionItemInsertTextRule2["None"] = 0] = "None";
7877
- CompletionItemInsertTextRule2[CompletionItemInsertTextRule2["KeepWhitespace"] = 1] = "KeepWhitespace";
7878
- CompletionItemInsertTextRule2[CompletionItemInsertTextRule2["InsertAsSnippet"] = 4] = "InsertAsSnippet";
7879
- })(CompletionItemInsertTextRule || (CompletionItemInsertTextRule = {}));
7880
- var CompletionItemKind;
7881
- (function(CompletionItemKind2) {
7882
- CompletionItemKind2[CompletionItemKind2["Method"] = 0] = "Method";
7883
- CompletionItemKind2[CompletionItemKind2["Function"] = 1] = "Function";
7884
- CompletionItemKind2[CompletionItemKind2["Constructor"] = 2] = "Constructor";
7885
- CompletionItemKind2[CompletionItemKind2["Field"] = 3] = "Field";
7886
- CompletionItemKind2[CompletionItemKind2["Variable"] = 4] = "Variable";
7887
- CompletionItemKind2[CompletionItemKind2["Class"] = 5] = "Class";
7888
- CompletionItemKind2[CompletionItemKind2["Struct"] = 6] = "Struct";
7889
- CompletionItemKind2[CompletionItemKind2["Interface"] = 7] = "Interface";
7890
- CompletionItemKind2[CompletionItemKind2["Module"] = 8] = "Module";
7891
- CompletionItemKind2[CompletionItemKind2["Property"] = 9] = "Property";
7892
- CompletionItemKind2[CompletionItemKind2["Event"] = 10] = "Event";
7893
- CompletionItemKind2[CompletionItemKind2["Operator"] = 11] = "Operator";
7894
- CompletionItemKind2[CompletionItemKind2["Unit"] = 12] = "Unit";
7895
- CompletionItemKind2[CompletionItemKind2["Value"] = 13] = "Value";
7896
- CompletionItemKind2[CompletionItemKind2["Constant"] = 14] = "Constant";
7897
- CompletionItemKind2[CompletionItemKind2["Enum"] = 15] = "Enum";
7898
- CompletionItemKind2[CompletionItemKind2["EnumMember"] = 16] = "EnumMember";
7899
- CompletionItemKind2[CompletionItemKind2["Keyword"] = 17] = "Keyword";
7900
- CompletionItemKind2[CompletionItemKind2["Text"] = 18] = "Text";
7901
- CompletionItemKind2[CompletionItemKind2["Color"] = 19] = "Color";
7902
- CompletionItemKind2[CompletionItemKind2["File"] = 20] = "File";
7903
- CompletionItemKind2[CompletionItemKind2["Reference"] = 21] = "Reference";
7904
- CompletionItemKind2[CompletionItemKind2["Customcolor"] = 22] = "Customcolor";
7905
- CompletionItemKind2[CompletionItemKind2["Folder"] = 23] = "Folder";
7906
- CompletionItemKind2[CompletionItemKind2["TypeParameter"] = 24] = "TypeParameter";
7907
- CompletionItemKind2[CompletionItemKind2["User"] = 25] = "User";
7908
- CompletionItemKind2[CompletionItemKind2["Issue"] = 26] = "Issue";
7909
- CompletionItemKind2[CompletionItemKind2["Snippet"] = 27] = "Snippet";
7910
- })(CompletionItemKind || (CompletionItemKind = {}));
7911
- var CompletionItemTag;
7912
- (function(CompletionItemTag2) {
7913
- CompletionItemTag2[CompletionItemTag2["Deprecated"] = 1] = "Deprecated";
7914
- })(CompletionItemTag || (CompletionItemTag = {}));
7915
- var CompletionTriggerKind;
7916
- (function(CompletionTriggerKind2) {
7917
- CompletionTriggerKind2[CompletionTriggerKind2["Invoke"] = 0] = "Invoke";
7918
- CompletionTriggerKind2[CompletionTriggerKind2["TriggerCharacter"] = 1] = "TriggerCharacter";
7919
- CompletionTriggerKind2[CompletionTriggerKind2["TriggerForIncompleteCompletions"] = 2] = "TriggerForIncompleteCompletions";
7920
- })(CompletionTriggerKind || (CompletionTriggerKind = {}));
8843
+ var CodeActionTriggerType2;
8844
+ (function(CodeActionTriggerType3) {
8845
+ CodeActionTriggerType3[CodeActionTriggerType3["Invoke"] = 1] = "Invoke";
8846
+ CodeActionTriggerType3[CodeActionTriggerType3["Auto"] = 2] = "Auto";
8847
+ })(CodeActionTriggerType2 || (CodeActionTriggerType2 = {}));
8848
+ var CompletionItemInsertTextRule2;
8849
+ (function(CompletionItemInsertTextRule3) {
8850
+ CompletionItemInsertTextRule3[CompletionItemInsertTextRule3["None"] = 0] = "None";
8851
+ CompletionItemInsertTextRule3[CompletionItemInsertTextRule3["KeepWhitespace"] = 1] = "KeepWhitespace";
8852
+ CompletionItemInsertTextRule3[CompletionItemInsertTextRule3["InsertAsSnippet"] = 4] = "InsertAsSnippet";
8853
+ })(CompletionItemInsertTextRule2 || (CompletionItemInsertTextRule2 = {}));
8854
+ var CompletionItemKind2;
8855
+ (function(CompletionItemKind3) {
8856
+ CompletionItemKind3[CompletionItemKind3["Method"] = 0] = "Method";
8857
+ CompletionItemKind3[CompletionItemKind3["Function"] = 1] = "Function";
8858
+ CompletionItemKind3[CompletionItemKind3["Constructor"] = 2] = "Constructor";
8859
+ CompletionItemKind3[CompletionItemKind3["Field"] = 3] = "Field";
8860
+ CompletionItemKind3[CompletionItemKind3["Variable"] = 4] = "Variable";
8861
+ CompletionItemKind3[CompletionItemKind3["Class"] = 5] = "Class";
8862
+ CompletionItemKind3[CompletionItemKind3["Struct"] = 6] = "Struct";
8863
+ CompletionItemKind3[CompletionItemKind3["Interface"] = 7] = "Interface";
8864
+ CompletionItemKind3[CompletionItemKind3["Module"] = 8] = "Module";
8865
+ CompletionItemKind3[CompletionItemKind3["Property"] = 9] = "Property";
8866
+ CompletionItemKind3[CompletionItemKind3["Event"] = 10] = "Event";
8867
+ CompletionItemKind3[CompletionItemKind3["Operator"] = 11] = "Operator";
8868
+ CompletionItemKind3[CompletionItemKind3["Unit"] = 12] = "Unit";
8869
+ CompletionItemKind3[CompletionItemKind3["Value"] = 13] = "Value";
8870
+ CompletionItemKind3[CompletionItemKind3["Constant"] = 14] = "Constant";
8871
+ CompletionItemKind3[CompletionItemKind3["Enum"] = 15] = "Enum";
8872
+ CompletionItemKind3[CompletionItemKind3["EnumMember"] = 16] = "EnumMember";
8873
+ CompletionItemKind3[CompletionItemKind3["Keyword"] = 17] = "Keyword";
8874
+ CompletionItemKind3[CompletionItemKind3["Text"] = 18] = "Text";
8875
+ CompletionItemKind3[CompletionItemKind3["Color"] = 19] = "Color";
8876
+ CompletionItemKind3[CompletionItemKind3["File"] = 20] = "File";
8877
+ CompletionItemKind3[CompletionItemKind3["Reference"] = 21] = "Reference";
8878
+ CompletionItemKind3[CompletionItemKind3["Customcolor"] = 22] = "Customcolor";
8879
+ CompletionItemKind3[CompletionItemKind3["Folder"] = 23] = "Folder";
8880
+ CompletionItemKind3[CompletionItemKind3["TypeParameter"] = 24] = "TypeParameter";
8881
+ CompletionItemKind3[CompletionItemKind3["User"] = 25] = "User";
8882
+ CompletionItemKind3[CompletionItemKind3["Issue"] = 26] = "Issue";
8883
+ CompletionItemKind3[CompletionItemKind3["Snippet"] = 27] = "Snippet";
8884
+ })(CompletionItemKind2 || (CompletionItemKind2 = {}));
8885
+ var CompletionItemTag2;
8886
+ (function(CompletionItemTag3) {
8887
+ CompletionItemTag3[CompletionItemTag3["Deprecated"] = 1] = "Deprecated";
8888
+ })(CompletionItemTag2 || (CompletionItemTag2 = {}));
8889
+ var CompletionTriggerKind2;
8890
+ (function(CompletionTriggerKind3) {
8891
+ CompletionTriggerKind3[CompletionTriggerKind3["Invoke"] = 0] = "Invoke";
8892
+ CompletionTriggerKind3[CompletionTriggerKind3["TriggerCharacter"] = 1] = "TriggerCharacter";
8893
+ CompletionTriggerKind3[CompletionTriggerKind3["TriggerForIncompleteCompletions"] = 2] = "TriggerForIncompleteCompletions";
8894
+ })(CompletionTriggerKind2 || (CompletionTriggerKind2 = {}));
7921
8895
  var ContentWidgetPositionPreference;
7922
8896
  (function(ContentWidgetPositionPreference2) {
7923
8897
  ContentWidgetPositionPreference2[ContentWidgetPositionPreference2["EXACT"] = 0] = "EXACT";
@@ -7935,9 +8909,9 @@ ${stackTraceFormattedLines.join("\n")}
7935
8909
  CursorChangeReason2[CursorChangeReason2["Redo"] = 6] = "Redo";
7936
8910
  })(CursorChangeReason || (CursorChangeReason = {}));
7937
8911
  var DefaultEndOfLine;
7938
- (function(DefaultEndOfLine2) {
7939
- DefaultEndOfLine2[DefaultEndOfLine2["LF"] = 1] = "LF";
7940
- DefaultEndOfLine2[DefaultEndOfLine2["CRLF"] = 2] = "CRLF";
8912
+ (function(DefaultEndOfLine3) {
8913
+ DefaultEndOfLine3[DefaultEndOfLine3["LF"] = 1] = "LF";
8914
+ DefaultEndOfLine3[DefaultEndOfLine3["CRLF"] = 2] = "CRLF";
7941
8915
  })(DefaultEndOfLine || (DefaultEndOfLine = {}));
7942
8916
  var DocumentHighlightKind2;
7943
8917
  (function(DocumentHighlightKind3) {
@@ -8107,15 +9081,15 @@ ${stackTraceFormattedLines.join("\n")}
8107
9081
  EditorOption2[EditorOption2["inlineCompletionsAccessibilityVerbose"] = 149] = "inlineCompletionsAccessibilityVerbose";
8108
9082
  })(EditorOption || (EditorOption = {}));
8109
9083
  var EndOfLinePreference;
8110
- (function(EndOfLinePreference2) {
8111
- EndOfLinePreference2[EndOfLinePreference2["TextDefined"] = 0] = "TextDefined";
8112
- EndOfLinePreference2[EndOfLinePreference2["LF"] = 1] = "LF";
8113
- EndOfLinePreference2[EndOfLinePreference2["CRLF"] = 2] = "CRLF";
9084
+ (function(EndOfLinePreference3) {
9085
+ EndOfLinePreference3[EndOfLinePreference3["TextDefined"] = 0] = "TextDefined";
9086
+ EndOfLinePreference3[EndOfLinePreference3["LF"] = 1] = "LF";
9087
+ EndOfLinePreference3[EndOfLinePreference3["CRLF"] = 2] = "CRLF";
8114
9088
  })(EndOfLinePreference || (EndOfLinePreference = {}));
8115
9089
  var EndOfLineSequence;
8116
- (function(EndOfLineSequence2) {
8117
- EndOfLineSequence2[EndOfLineSequence2["LF"] = 0] = "LF";
8118
- EndOfLineSequence2[EndOfLineSequence2["CRLF"] = 1] = "CRLF";
9090
+ (function(EndOfLineSequence3) {
9091
+ EndOfLineSequence3[EndOfLineSequence3["LF"] = 0] = "LF";
9092
+ EndOfLineSequence3[EndOfLineSequence3["CRLF"] = 1] = "CRLF";
8119
9093
  })(EndOfLineSequence || (EndOfLineSequence = {}));
8120
9094
  var GlyphMarginLane;
8121
9095
  (function(GlyphMarginLane3) {
@@ -8157,143 +9131,143 @@ ${stackTraceFormattedLines.join("\n")}
8157
9131
  InlineEditTriggerKind3[InlineEditTriggerKind3["Invoke"] = 0] = "Invoke";
8158
9132
  InlineEditTriggerKind3[InlineEditTriggerKind3["Automatic"] = 1] = "Automatic";
8159
9133
  })(InlineEditTriggerKind2 || (InlineEditTriggerKind2 = {}));
8160
- var KeyCode;
8161
- (function(KeyCode2) {
8162
- KeyCode2[KeyCode2["DependsOnKbLayout"] = -1] = "DependsOnKbLayout";
8163
- KeyCode2[KeyCode2["Unknown"] = 0] = "Unknown";
8164
- KeyCode2[KeyCode2["Backspace"] = 1] = "Backspace";
8165
- KeyCode2[KeyCode2["Tab"] = 2] = "Tab";
8166
- KeyCode2[KeyCode2["Enter"] = 3] = "Enter";
8167
- KeyCode2[KeyCode2["Shift"] = 4] = "Shift";
8168
- KeyCode2[KeyCode2["Ctrl"] = 5] = "Ctrl";
8169
- KeyCode2[KeyCode2["Alt"] = 6] = "Alt";
8170
- KeyCode2[KeyCode2["PauseBreak"] = 7] = "PauseBreak";
8171
- KeyCode2[KeyCode2["CapsLock"] = 8] = "CapsLock";
8172
- KeyCode2[KeyCode2["Escape"] = 9] = "Escape";
8173
- KeyCode2[KeyCode2["Space"] = 10] = "Space";
8174
- KeyCode2[KeyCode2["PageUp"] = 11] = "PageUp";
8175
- KeyCode2[KeyCode2["PageDown"] = 12] = "PageDown";
8176
- KeyCode2[KeyCode2["End"] = 13] = "End";
8177
- KeyCode2[KeyCode2["Home"] = 14] = "Home";
8178
- KeyCode2[KeyCode2["LeftArrow"] = 15] = "LeftArrow";
8179
- KeyCode2[KeyCode2["UpArrow"] = 16] = "UpArrow";
8180
- KeyCode2[KeyCode2["RightArrow"] = 17] = "RightArrow";
8181
- KeyCode2[KeyCode2["DownArrow"] = 18] = "DownArrow";
8182
- KeyCode2[KeyCode2["Insert"] = 19] = "Insert";
8183
- KeyCode2[KeyCode2["Delete"] = 20] = "Delete";
8184
- KeyCode2[KeyCode2["Digit0"] = 21] = "Digit0";
8185
- KeyCode2[KeyCode2["Digit1"] = 22] = "Digit1";
8186
- KeyCode2[KeyCode2["Digit2"] = 23] = "Digit2";
8187
- KeyCode2[KeyCode2["Digit3"] = 24] = "Digit3";
8188
- KeyCode2[KeyCode2["Digit4"] = 25] = "Digit4";
8189
- KeyCode2[KeyCode2["Digit5"] = 26] = "Digit5";
8190
- KeyCode2[KeyCode2["Digit6"] = 27] = "Digit6";
8191
- KeyCode2[KeyCode2["Digit7"] = 28] = "Digit7";
8192
- KeyCode2[KeyCode2["Digit8"] = 29] = "Digit8";
8193
- KeyCode2[KeyCode2["Digit9"] = 30] = "Digit9";
8194
- KeyCode2[KeyCode2["KeyA"] = 31] = "KeyA";
8195
- KeyCode2[KeyCode2["KeyB"] = 32] = "KeyB";
8196
- KeyCode2[KeyCode2["KeyC"] = 33] = "KeyC";
8197
- KeyCode2[KeyCode2["KeyD"] = 34] = "KeyD";
8198
- KeyCode2[KeyCode2["KeyE"] = 35] = "KeyE";
8199
- KeyCode2[KeyCode2["KeyF"] = 36] = "KeyF";
8200
- KeyCode2[KeyCode2["KeyG"] = 37] = "KeyG";
8201
- KeyCode2[KeyCode2["KeyH"] = 38] = "KeyH";
8202
- KeyCode2[KeyCode2["KeyI"] = 39] = "KeyI";
8203
- KeyCode2[KeyCode2["KeyJ"] = 40] = "KeyJ";
8204
- KeyCode2[KeyCode2["KeyK"] = 41] = "KeyK";
8205
- KeyCode2[KeyCode2["KeyL"] = 42] = "KeyL";
8206
- KeyCode2[KeyCode2["KeyM"] = 43] = "KeyM";
8207
- KeyCode2[KeyCode2["KeyN"] = 44] = "KeyN";
8208
- KeyCode2[KeyCode2["KeyO"] = 45] = "KeyO";
8209
- KeyCode2[KeyCode2["KeyP"] = 46] = "KeyP";
8210
- KeyCode2[KeyCode2["KeyQ"] = 47] = "KeyQ";
8211
- KeyCode2[KeyCode2["KeyR"] = 48] = "KeyR";
8212
- KeyCode2[KeyCode2["KeyS"] = 49] = "KeyS";
8213
- KeyCode2[KeyCode2["KeyT"] = 50] = "KeyT";
8214
- KeyCode2[KeyCode2["KeyU"] = 51] = "KeyU";
8215
- KeyCode2[KeyCode2["KeyV"] = 52] = "KeyV";
8216
- KeyCode2[KeyCode2["KeyW"] = 53] = "KeyW";
8217
- KeyCode2[KeyCode2["KeyX"] = 54] = "KeyX";
8218
- KeyCode2[KeyCode2["KeyY"] = 55] = "KeyY";
8219
- KeyCode2[KeyCode2["KeyZ"] = 56] = "KeyZ";
8220
- KeyCode2[KeyCode2["Meta"] = 57] = "Meta";
8221
- KeyCode2[KeyCode2["ContextMenu"] = 58] = "ContextMenu";
8222
- KeyCode2[KeyCode2["F1"] = 59] = "F1";
8223
- KeyCode2[KeyCode2["F2"] = 60] = "F2";
8224
- KeyCode2[KeyCode2["F3"] = 61] = "F3";
8225
- KeyCode2[KeyCode2["F4"] = 62] = "F4";
8226
- KeyCode2[KeyCode2["F5"] = 63] = "F5";
8227
- KeyCode2[KeyCode2["F6"] = 64] = "F6";
8228
- KeyCode2[KeyCode2["F7"] = 65] = "F7";
8229
- KeyCode2[KeyCode2["F8"] = 66] = "F8";
8230
- KeyCode2[KeyCode2["F9"] = 67] = "F9";
8231
- KeyCode2[KeyCode2["F10"] = 68] = "F10";
8232
- KeyCode2[KeyCode2["F11"] = 69] = "F11";
8233
- KeyCode2[KeyCode2["F12"] = 70] = "F12";
8234
- KeyCode2[KeyCode2["F13"] = 71] = "F13";
8235
- KeyCode2[KeyCode2["F14"] = 72] = "F14";
8236
- KeyCode2[KeyCode2["F15"] = 73] = "F15";
8237
- KeyCode2[KeyCode2["F16"] = 74] = "F16";
8238
- KeyCode2[KeyCode2["F17"] = 75] = "F17";
8239
- KeyCode2[KeyCode2["F18"] = 76] = "F18";
8240
- KeyCode2[KeyCode2["F19"] = 77] = "F19";
8241
- KeyCode2[KeyCode2["F20"] = 78] = "F20";
8242
- KeyCode2[KeyCode2["F21"] = 79] = "F21";
8243
- KeyCode2[KeyCode2["F22"] = 80] = "F22";
8244
- KeyCode2[KeyCode2["F23"] = 81] = "F23";
8245
- KeyCode2[KeyCode2["F24"] = 82] = "F24";
8246
- KeyCode2[KeyCode2["NumLock"] = 83] = "NumLock";
8247
- KeyCode2[KeyCode2["ScrollLock"] = 84] = "ScrollLock";
8248
- KeyCode2[KeyCode2["Semicolon"] = 85] = "Semicolon";
8249
- KeyCode2[KeyCode2["Equal"] = 86] = "Equal";
8250
- KeyCode2[KeyCode2["Comma"] = 87] = "Comma";
8251
- KeyCode2[KeyCode2["Minus"] = 88] = "Minus";
8252
- KeyCode2[KeyCode2["Period"] = 89] = "Period";
8253
- KeyCode2[KeyCode2["Slash"] = 90] = "Slash";
8254
- KeyCode2[KeyCode2["Backquote"] = 91] = "Backquote";
8255
- KeyCode2[KeyCode2["BracketLeft"] = 92] = "BracketLeft";
8256
- KeyCode2[KeyCode2["Backslash"] = 93] = "Backslash";
8257
- KeyCode2[KeyCode2["BracketRight"] = 94] = "BracketRight";
8258
- KeyCode2[KeyCode2["Quote"] = 95] = "Quote";
8259
- KeyCode2[KeyCode2["OEM_8"] = 96] = "OEM_8";
8260
- KeyCode2[KeyCode2["IntlBackslash"] = 97] = "IntlBackslash";
8261
- KeyCode2[KeyCode2["Numpad0"] = 98] = "Numpad0";
8262
- KeyCode2[KeyCode2["Numpad1"] = 99] = "Numpad1";
8263
- KeyCode2[KeyCode2["Numpad2"] = 100] = "Numpad2";
8264
- KeyCode2[KeyCode2["Numpad3"] = 101] = "Numpad3";
8265
- KeyCode2[KeyCode2["Numpad4"] = 102] = "Numpad4";
8266
- KeyCode2[KeyCode2["Numpad5"] = 103] = "Numpad5";
8267
- KeyCode2[KeyCode2["Numpad6"] = 104] = "Numpad6";
8268
- KeyCode2[KeyCode2["Numpad7"] = 105] = "Numpad7";
8269
- KeyCode2[KeyCode2["Numpad8"] = 106] = "Numpad8";
8270
- KeyCode2[KeyCode2["Numpad9"] = 107] = "Numpad9";
8271
- KeyCode2[KeyCode2["NumpadMultiply"] = 108] = "NumpadMultiply";
8272
- KeyCode2[KeyCode2["NumpadAdd"] = 109] = "NumpadAdd";
8273
- KeyCode2[KeyCode2["NUMPAD_SEPARATOR"] = 110] = "NUMPAD_SEPARATOR";
8274
- KeyCode2[KeyCode2["NumpadSubtract"] = 111] = "NumpadSubtract";
8275
- KeyCode2[KeyCode2["NumpadDecimal"] = 112] = "NumpadDecimal";
8276
- KeyCode2[KeyCode2["NumpadDivide"] = 113] = "NumpadDivide";
8277
- KeyCode2[KeyCode2["KEY_IN_COMPOSITION"] = 114] = "KEY_IN_COMPOSITION";
8278
- KeyCode2[KeyCode2["ABNT_C1"] = 115] = "ABNT_C1";
8279
- KeyCode2[KeyCode2["ABNT_C2"] = 116] = "ABNT_C2";
8280
- KeyCode2[KeyCode2["AudioVolumeMute"] = 117] = "AudioVolumeMute";
8281
- KeyCode2[KeyCode2["AudioVolumeUp"] = 118] = "AudioVolumeUp";
8282
- KeyCode2[KeyCode2["AudioVolumeDown"] = 119] = "AudioVolumeDown";
8283
- KeyCode2[KeyCode2["BrowserSearch"] = 120] = "BrowserSearch";
8284
- KeyCode2[KeyCode2["BrowserHome"] = 121] = "BrowserHome";
8285
- KeyCode2[KeyCode2["BrowserBack"] = 122] = "BrowserBack";
8286
- KeyCode2[KeyCode2["BrowserForward"] = 123] = "BrowserForward";
8287
- KeyCode2[KeyCode2["MediaTrackNext"] = 124] = "MediaTrackNext";
8288
- KeyCode2[KeyCode2["MediaTrackPrevious"] = 125] = "MediaTrackPrevious";
8289
- KeyCode2[KeyCode2["MediaStop"] = 126] = "MediaStop";
8290
- KeyCode2[KeyCode2["MediaPlayPause"] = 127] = "MediaPlayPause";
8291
- KeyCode2[KeyCode2["LaunchMediaPlayer"] = 128] = "LaunchMediaPlayer";
8292
- KeyCode2[KeyCode2["LaunchMail"] = 129] = "LaunchMail";
8293
- KeyCode2[KeyCode2["LaunchApp2"] = 130] = "LaunchApp2";
8294
- KeyCode2[KeyCode2["Clear"] = 131] = "Clear";
8295
- KeyCode2[KeyCode2["MAX_VALUE"] = 132] = "MAX_VALUE";
8296
- })(KeyCode || (KeyCode = {}));
9134
+ var KeyCode2;
9135
+ (function(KeyCode3) {
9136
+ KeyCode3[KeyCode3["DependsOnKbLayout"] = -1] = "DependsOnKbLayout";
9137
+ KeyCode3[KeyCode3["Unknown"] = 0] = "Unknown";
9138
+ KeyCode3[KeyCode3["Backspace"] = 1] = "Backspace";
9139
+ KeyCode3[KeyCode3["Tab"] = 2] = "Tab";
9140
+ KeyCode3[KeyCode3["Enter"] = 3] = "Enter";
9141
+ KeyCode3[KeyCode3["Shift"] = 4] = "Shift";
9142
+ KeyCode3[KeyCode3["Ctrl"] = 5] = "Ctrl";
9143
+ KeyCode3[KeyCode3["Alt"] = 6] = "Alt";
9144
+ KeyCode3[KeyCode3["PauseBreak"] = 7] = "PauseBreak";
9145
+ KeyCode3[KeyCode3["CapsLock"] = 8] = "CapsLock";
9146
+ KeyCode3[KeyCode3["Escape"] = 9] = "Escape";
9147
+ KeyCode3[KeyCode3["Space"] = 10] = "Space";
9148
+ KeyCode3[KeyCode3["PageUp"] = 11] = "PageUp";
9149
+ KeyCode3[KeyCode3["PageDown"] = 12] = "PageDown";
9150
+ KeyCode3[KeyCode3["End"] = 13] = "End";
9151
+ KeyCode3[KeyCode3["Home"] = 14] = "Home";
9152
+ KeyCode3[KeyCode3["LeftArrow"] = 15] = "LeftArrow";
9153
+ KeyCode3[KeyCode3["UpArrow"] = 16] = "UpArrow";
9154
+ KeyCode3[KeyCode3["RightArrow"] = 17] = "RightArrow";
9155
+ KeyCode3[KeyCode3["DownArrow"] = 18] = "DownArrow";
9156
+ KeyCode3[KeyCode3["Insert"] = 19] = "Insert";
9157
+ KeyCode3[KeyCode3["Delete"] = 20] = "Delete";
9158
+ KeyCode3[KeyCode3["Digit0"] = 21] = "Digit0";
9159
+ KeyCode3[KeyCode3["Digit1"] = 22] = "Digit1";
9160
+ KeyCode3[KeyCode3["Digit2"] = 23] = "Digit2";
9161
+ KeyCode3[KeyCode3["Digit3"] = 24] = "Digit3";
9162
+ KeyCode3[KeyCode3["Digit4"] = 25] = "Digit4";
9163
+ KeyCode3[KeyCode3["Digit5"] = 26] = "Digit5";
9164
+ KeyCode3[KeyCode3["Digit6"] = 27] = "Digit6";
9165
+ KeyCode3[KeyCode3["Digit7"] = 28] = "Digit7";
9166
+ KeyCode3[KeyCode3["Digit8"] = 29] = "Digit8";
9167
+ KeyCode3[KeyCode3["Digit9"] = 30] = "Digit9";
9168
+ KeyCode3[KeyCode3["KeyA"] = 31] = "KeyA";
9169
+ KeyCode3[KeyCode3["KeyB"] = 32] = "KeyB";
9170
+ KeyCode3[KeyCode3["KeyC"] = 33] = "KeyC";
9171
+ KeyCode3[KeyCode3["KeyD"] = 34] = "KeyD";
9172
+ KeyCode3[KeyCode3["KeyE"] = 35] = "KeyE";
9173
+ KeyCode3[KeyCode3["KeyF"] = 36] = "KeyF";
9174
+ KeyCode3[KeyCode3["KeyG"] = 37] = "KeyG";
9175
+ KeyCode3[KeyCode3["KeyH"] = 38] = "KeyH";
9176
+ KeyCode3[KeyCode3["KeyI"] = 39] = "KeyI";
9177
+ KeyCode3[KeyCode3["KeyJ"] = 40] = "KeyJ";
9178
+ KeyCode3[KeyCode3["KeyK"] = 41] = "KeyK";
9179
+ KeyCode3[KeyCode3["KeyL"] = 42] = "KeyL";
9180
+ KeyCode3[KeyCode3["KeyM"] = 43] = "KeyM";
9181
+ KeyCode3[KeyCode3["KeyN"] = 44] = "KeyN";
9182
+ KeyCode3[KeyCode3["KeyO"] = 45] = "KeyO";
9183
+ KeyCode3[KeyCode3["KeyP"] = 46] = "KeyP";
9184
+ KeyCode3[KeyCode3["KeyQ"] = 47] = "KeyQ";
9185
+ KeyCode3[KeyCode3["KeyR"] = 48] = "KeyR";
9186
+ KeyCode3[KeyCode3["KeyS"] = 49] = "KeyS";
9187
+ KeyCode3[KeyCode3["KeyT"] = 50] = "KeyT";
9188
+ KeyCode3[KeyCode3["KeyU"] = 51] = "KeyU";
9189
+ KeyCode3[KeyCode3["KeyV"] = 52] = "KeyV";
9190
+ KeyCode3[KeyCode3["KeyW"] = 53] = "KeyW";
9191
+ KeyCode3[KeyCode3["KeyX"] = 54] = "KeyX";
9192
+ KeyCode3[KeyCode3["KeyY"] = 55] = "KeyY";
9193
+ KeyCode3[KeyCode3["KeyZ"] = 56] = "KeyZ";
9194
+ KeyCode3[KeyCode3["Meta"] = 57] = "Meta";
9195
+ KeyCode3[KeyCode3["ContextMenu"] = 58] = "ContextMenu";
9196
+ KeyCode3[KeyCode3["F1"] = 59] = "F1";
9197
+ KeyCode3[KeyCode3["F2"] = 60] = "F2";
9198
+ KeyCode3[KeyCode3["F3"] = 61] = "F3";
9199
+ KeyCode3[KeyCode3["F4"] = 62] = "F4";
9200
+ KeyCode3[KeyCode3["F5"] = 63] = "F5";
9201
+ KeyCode3[KeyCode3["F6"] = 64] = "F6";
9202
+ KeyCode3[KeyCode3["F7"] = 65] = "F7";
9203
+ KeyCode3[KeyCode3["F8"] = 66] = "F8";
9204
+ KeyCode3[KeyCode3["F9"] = 67] = "F9";
9205
+ KeyCode3[KeyCode3["F10"] = 68] = "F10";
9206
+ KeyCode3[KeyCode3["F11"] = 69] = "F11";
9207
+ KeyCode3[KeyCode3["F12"] = 70] = "F12";
9208
+ KeyCode3[KeyCode3["F13"] = 71] = "F13";
9209
+ KeyCode3[KeyCode3["F14"] = 72] = "F14";
9210
+ KeyCode3[KeyCode3["F15"] = 73] = "F15";
9211
+ KeyCode3[KeyCode3["F16"] = 74] = "F16";
9212
+ KeyCode3[KeyCode3["F17"] = 75] = "F17";
9213
+ KeyCode3[KeyCode3["F18"] = 76] = "F18";
9214
+ KeyCode3[KeyCode3["F19"] = 77] = "F19";
9215
+ KeyCode3[KeyCode3["F20"] = 78] = "F20";
9216
+ KeyCode3[KeyCode3["F21"] = 79] = "F21";
9217
+ KeyCode3[KeyCode3["F22"] = 80] = "F22";
9218
+ KeyCode3[KeyCode3["F23"] = 81] = "F23";
9219
+ KeyCode3[KeyCode3["F24"] = 82] = "F24";
9220
+ KeyCode3[KeyCode3["NumLock"] = 83] = "NumLock";
9221
+ KeyCode3[KeyCode3["ScrollLock"] = 84] = "ScrollLock";
9222
+ KeyCode3[KeyCode3["Semicolon"] = 85] = "Semicolon";
9223
+ KeyCode3[KeyCode3["Equal"] = 86] = "Equal";
9224
+ KeyCode3[KeyCode3["Comma"] = 87] = "Comma";
9225
+ KeyCode3[KeyCode3["Minus"] = 88] = "Minus";
9226
+ KeyCode3[KeyCode3["Period"] = 89] = "Period";
9227
+ KeyCode3[KeyCode3["Slash"] = 90] = "Slash";
9228
+ KeyCode3[KeyCode3["Backquote"] = 91] = "Backquote";
9229
+ KeyCode3[KeyCode3["BracketLeft"] = 92] = "BracketLeft";
9230
+ KeyCode3[KeyCode3["Backslash"] = 93] = "Backslash";
9231
+ KeyCode3[KeyCode3["BracketRight"] = 94] = "BracketRight";
9232
+ KeyCode3[KeyCode3["Quote"] = 95] = "Quote";
9233
+ KeyCode3[KeyCode3["OEM_8"] = 96] = "OEM_8";
9234
+ KeyCode3[KeyCode3["IntlBackslash"] = 97] = "IntlBackslash";
9235
+ KeyCode3[KeyCode3["Numpad0"] = 98] = "Numpad0";
9236
+ KeyCode3[KeyCode3["Numpad1"] = 99] = "Numpad1";
9237
+ KeyCode3[KeyCode3["Numpad2"] = 100] = "Numpad2";
9238
+ KeyCode3[KeyCode3["Numpad3"] = 101] = "Numpad3";
9239
+ KeyCode3[KeyCode3["Numpad4"] = 102] = "Numpad4";
9240
+ KeyCode3[KeyCode3["Numpad5"] = 103] = "Numpad5";
9241
+ KeyCode3[KeyCode3["Numpad6"] = 104] = "Numpad6";
9242
+ KeyCode3[KeyCode3["Numpad7"] = 105] = "Numpad7";
9243
+ KeyCode3[KeyCode3["Numpad8"] = 106] = "Numpad8";
9244
+ KeyCode3[KeyCode3["Numpad9"] = 107] = "Numpad9";
9245
+ KeyCode3[KeyCode3["NumpadMultiply"] = 108] = "NumpadMultiply";
9246
+ KeyCode3[KeyCode3["NumpadAdd"] = 109] = "NumpadAdd";
9247
+ KeyCode3[KeyCode3["NUMPAD_SEPARATOR"] = 110] = "NUMPAD_SEPARATOR";
9248
+ KeyCode3[KeyCode3["NumpadSubtract"] = 111] = "NumpadSubtract";
9249
+ KeyCode3[KeyCode3["NumpadDecimal"] = 112] = "NumpadDecimal";
9250
+ KeyCode3[KeyCode3["NumpadDivide"] = 113] = "NumpadDivide";
9251
+ KeyCode3[KeyCode3["KEY_IN_COMPOSITION"] = 114] = "KEY_IN_COMPOSITION";
9252
+ KeyCode3[KeyCode3["ABNT_C1"] = 115] = "ABNT_C1";
9253
+ KeyCode3[KeyCode3["ABNT_C2"] = 116] = "ABNT_C2";
9254
+ KeyCode3[KeyCode3["AudioVolumeMute"] = 117] = "AudioVolumeMute";
9255
+ KeyCode3[KeyCode3["AudioVolumeUp"] = 118] = "AudioVolumeUp";
9256
+ KeyCode3[KeyCode3["AudioVolumeDown"] = 119] = "AudioVolumeDown";
9257
+ KeyCode3[KeyCode3["BrowserSearch"] = 120] = "BrowserSearch";
9258
+ KeyCode3[KeyCode3["BrowserHome"] = 121] = "BrowserHome";
9259
+ KeyCode3[KeyCode3["BrowserBack"] = 122] = "BrowserBack";
9260
+ KeyCode3[KeyCode3["BrowserForward"] = 123] = "BrowserForward";
9261
+ KeyCode3[KeyCode3["MediaTrackNext"] = 124] = "MediaTrackNext";
9262
+ KeyCode3[KeyCode3["MediaTrackPrevious"] = 125] = "MediaTrackPrevious";
9263
+ KeyCode3[KeyCode3["MediaStop"] = 126] = "MediaStop";
9264
+ KeyCode3[KeyCode3["MediaPlayPause"] = 127] = "MediaPlayPause";
9265
+ KeyCode3[KeyCode3["LaunchMediaPlayer"] = 128] = "LaunchMediaPlayer";
9266
+ KeyCode3[KeyCode3["LaunchMail"] = 129] = "LaunchMail";
9267
+ KeyCode3[KeyCode3["LaunchApp2"] = 130] = "LaunchApp2";
9268
+ KeyCode3[KeyCode3["Clear"] = 131] = "Clear";
9269
+ KeyCode3[KeyCode3["MAX_VALUE"] = 132] = "MAX_VALUE";
9270
+ })(KeyCode2 || (KeyCode2 = {}));
8297
9271
  var MarkerSeverity;
8298
9272
  (function(MarkerSeverity2) {
8299
9273
  MarkerSeverity2[MarkerSeverity2["Hint"] = 1] = "Hint";
@@ -8307,14 +9281,14 @@ ${stackTraceFormattedLines.join("\n")}
8307
9281
  MarkerTag2[MarkerTag2["Deprecated"] = 2] = "Deprecated";
8308
9282
  })(MarkerTag || (MarkerTag = {}));
8309
9283
  var MinimapPosition;
8310
- (function(MinimapPosition2) {
8311
- MinimapPosition2[MinimapPosition2["Inline"] = 1] = "Inline";
8312
- MinimapPosition2[MinimapPosition2["Gutter"] = 2] = "Gutter";
9284
+ (function(MinimapPosition3) {
9285
+ MinimapPosition3[MinimapPosition3["Inline"] = 1] = "Inline";
9286
+ MinimapPosition3[MinimapPosition3["Gutter"] = 2] = "Gutter";
8313
9287
  })(MinimapPosition || (MinimapPosition = {}));
8314
9288
  var MinimapSectionHeaderStyle;
8315
- (function(MinimapSectionHeaderStyle2) {
8316
- MinimapSectionHeaderStyle2[MinimapSectionHeaderStyle2["Normal"] = 1] = "Normal";
8317
- MinimapSectionHeaderStyle2[MinimapSectionHeaderStyle2["Underlined"] = 2] = "Underlined";
9289
+ (function(MinimapSectionHeaderStyle3) {
9290
+ MinimapSectionHeaderStyle3[MinimapSectionHeaderStyle3["Normal"] = 1] = "Normal";
9291
+ MinimapSectionHeaderStyle3[MinimapSectionHeaderStyle3["Underlined"] = 2] = "Underlined";
8318
9292
  })(MinimapSectionHeaderStyle || (MinimapSectionHeaderStyle = {}));
8319
9293
  var MouseTargetType;
8320
9294
  (function(MouseTargetType2) {
@@ -8355,19 +9329,19 @@ ${stackTraceFormattedLines.join("\n")}
8355
9329
  OverviewRulerLane3[OverviewRulerLane3["Right"] = 4] = "Right";
8356
9330
  OverviewRulerLane3[OverviewRulerLane3["Full"] = 7] = "Full";
8357
9331
  })(OverviewRulerLane || (OverviewRulerLane = {}));
8358
- var PartialAcceptTriggerKind;
8359
- (function(PartialAcceptTriggerKind2) {
8360
- PartialAcceptTriggerKind2[PartialAcceptTriggerKind2["Word"] = 0] = "Word";
8361
- PartialAcceptTriggerKind2[PartialAcceptTriggerKind2["Line"] = 1] = "Line";
8362
- PartialAcceptTriggerKind2[PartialAcceptTriggerKind2["Suggest"] = 2] = "Suggest";
8363
- })(PartialAcceptTriggerKind || (PartialAcceptTriggerKind = {}));
9332
+ var PartialAcceptTriggerKind2;
9333
+ (function(PartialAcceptTriggerKind3) {
9334
+ PartialAcceptTriggerKind3[PartialAcceptTriggerKind3["Word"] = 0] = "Word";
9335
+ PartialAcceptTriggerKind3[PartialAcceptTriggerKind3["Line"] = 1] = "Line";
9336
+ PartialAcceptTriggerKind3[PartialAcceptTriggerKind3["Suggest"] = 2] = "Suggest";
9337
+ })(PartialAcceptTriggerKind2 || (PartialAcceptTriggerKind2 = {}));
8364
9338
  var PositionAffinity;
8365
- (function(PositionAffinity2) {
8366
- PositionAffinity2[PositionAffinity2["Left"] = 0] = "Left";
8367
- PositionAffinity2[PositionAffinity2["Right"] = 1] = "Right";
8368
- PositionAffinity2[PositionAffinity2["None"] = 2] = "None";
8369
- PositionAffinity2[PositionAffinity2["LeftOfInjectedText"] = 3] = "LeftOfInjectedText";
8370
- PositionAffinity2[PositionAffinity2["RightOfInjectedText"] = 4] = "RightOfInjectedText";
9339
+ (function(PositionAffinity3) {
9340
+ PositionAffinity3[PositionAffinity3["Left"] = 0] = "Left";
9341
+ PositionAffinity3[PositionAffinity3["Right"] = 1] = "Right";
9342
+ PositionAffinity3[PositionAffinity3["None"] = 2] = "None";
9343
+ PositionAffinity3[PositionAffinity3["LeftOfInjectedText"] = 3] = "LeftOfInjectedText";
9344
+ PositionAffinity3[PositionAffinity3["RightOfInjectedText"] = 4] = "RightOfInjectedText";
8371
9345
  })(PositionAffinity || (PositionAffinity = {}));
8372
9346
  var RenderLineNumbersType;
8373
9347
  (function(RenderLineNumbersType2) {
@@ -8394,11 +9368,11 @@ ${stackTraceFormattedLines.join("\n")}
8394
9368
  ScrollbarVisibility2[ScrollbarVisibility2["Hidden"] = 2] = "Hidden";
8395
9369
  ScrollbarVisibility2[ScrollbarVisibility2["Visible"] = 3] = "Visible";
8396
9370
  })(ScrollbarVisibility || (ScrollbarVisibility = {}));
8397
- var SelectionDirection;
8398
- (function(SelectionDirection2) {
8399
- SelectionDirection2[SelectionDirection2["LTR"] = 0] = "LTR";
8400
- SelectionDirection2[SelectionDirection2["RTL"] = 1] = "RTL";
8401
- })(SelectionDirection || (SelectionDirection = {}));
9371
+ var SelectionDirection2;
9372
+ (function(SelectionDirection3) {
9373
+ SelectionDirection3[SelectionDirection3["LTR"] = 0] = "LTR";
9374
+ SelectionDirection3[SelectionDirection3["RTL"] = 1] = "RTL";
9375
+ })(SelectionDirection2 || (SelectionDirection2 = {}));
8402
9376
  var ShowLightbulbIconMode;
8403
9377
  (function(ShowLightbulbIconMode2) {
8404
9378
  ShowLightbulbIconMode2["Off"] = "off";
@@ -8411,39 +9385,39 @@ ${stackTraceFormattedLines.join("\n")}
8411
9385
  SignatureHelpTriggerKind3[SignatureHelpTriggerKind3["TriggerCharacter"] = 2] = "TriggerCharacter";
8412
9386
  SignatureHelpTriggerKind3[SignatureHelpTriggerKind3["ContentChange"] = 3] = "ContentChange";
8413
9387
  })(SignatureHelpTriggerKind2 || (SignatureHelpTriggerKind2 = {}));
8414
- var SymbolKind;
8415
- (function(SymbolKind2) {
8416
- SymbolKind2[SymbolKind2["File"] = 0] = "File";
8417
- SymbolKind2[SymbolKind2["Module"] = 1] = "Module";
8418
- SymbolKind2[SymbolKind2["Namespace"] = 2] = "Namespace";
8419
- SymbolKind2[SymbolKind2["Package"] = 3] = "Package";
8420
- SymbolKind2[SymbolKind2["Class"] = 4] = "Class";
8421
- SymbolKind2[SymbolKind2["Method"] = 5] = "Method";
8422
- SymbolKind2[SymbolKind2["Property"] = 6] = "Property";
8423
- SymbolKind2[SymbolKind2["Field"] = 7] = "Field";
8424
- SymbolKind2[SymbolKind2["Constructor"] = 8] = "Constructor";
8425
- SymbolKind2[SymbolKind2["Enum"] = 9] = "Enum";
8426
- SymbolKind2[SymbolKind2["Interface"] = 10] = "Interface";
8427
- SymbolKind2[SymbolKind2["Function"] = 11] = "Function";
8428
- SymbolKind2[SymbolKind2["Variable"] = 12] = "Variable";
8429
- SymbolKind2[SymbolKind2["Constant"] = 13] = "Constant";
8430
- SymbolKind2[SymbolKind2["String"] = 14] = "String";
8431
- SymbolKind2[SymbolKind2["Number"] = 15] = "Number";
8432
- SymbolKind2[SymbolKind2["Boolean"] = 16] = "Boolean";
8433
- SymbolKind2[SymbolKind2["Array"] = 17] = "Array";
8434
- SymbolKind2[SymbolKind2["Object"] = 18] = "Object";
8435
- SymbolKind2[SymbolKind2["Key"] = 19] = "Key";
8436
- SymbolKind2[SymbolKind2["Null"] = 20] = "Null";
8437
- SymbolKind2[SymbolKind2["EnumMember"] = 21] = "EnumMember";
8438
- SymbolKind2[SymbolKind2["Struct"] = 22] = "Struct";
8439
- SymbolKind2[SymbolKind2["Event"] = 23] = "Event";
8440
- SymbolKind2[SymbolKind2["Operator"] = 24] = "Operator";
8441
- SymbolKind2[SymbolKind2["TypeParameter"] = 25] = "TypeParameter";
8442
- })(SymbolKind || (SymbolKind = {}));
8443
- var SymbolTag;
8444
- (function(SymbolTag2) {
8445
- SymbolTag2[SymbolTag2["Deprecated"] = 1] = "Deprecated";
8446
- })(SymbolTag || (SymbolTag = {}));
9388
+ var SymbolKind2;
9389
+ (function(SymbolKind3) {
9390
+ SymbolKind3[SymbolKind3["File"] = 0] = "File";
9391
+ SymbolKind3[SymbolKind3["Module"] = 1] = "Module";
9392
+ SymbolKind3[SymbolKind3["Namespace"] = 2] = "Namespace";
9393
+ SymbolKind3[SymbolKind3["Package"] = 3] = "Package";
9394
+ SymbolKind3[SymbolKind3["Class"] = 4] = "Class";
9395
+ SymbolKind3[SymbolKind3["Method"] = 5] = "Method";
9396
+ SymbolKind3[SymbolKind3["Property"] = 6] = "Property";
9397
+ SymbolKind3[SymbolKind3["Field"] = 7] = "Field";
9398
+ SymbolKind3[SymbolKind3["Constructor"] = 8] = "Constructor";
9399
+ SymbolKind3[SymbolKind3["Enum"] = 9] = "Enum";
9400
+ SymbolKind3[SymbolKind3["Interface"] = 10] = "Interface";
9401
+ SymbolKind3[SymbolKind3["Function"] = 11] = "Function";
9402
+ SymbolKind3[SymbolKind3["Variable"] = 12] = "Variable";
9403
+ SymbolKind3[SymbolKind3["Constant"] = 13] = "Constant";
9404
+ SymbolKind3[SymbolKind3["String"] = 14] = "String";
9405
+ SymbolKind3[SymbolKind3["Number"] = 15] = "Number";
9406
+ SymbolKind3[SymbolKind3["Boolean"] = 16] = "Boolean";
9407
+ SymbolKind3[SymbolKind3["Array"] = 17] = "Array";
9408
+ SymbolKind3[SymbolKind3["Object"] = 18] = "Object";
9409
+ SymbolKind3[SymbolKind3["Key"] = 19] = "Key";
9410
+ SymbolKind3[SymbolKind3["Null"] = 20] = "Null";
9411
+ SymbolKind3[SymbolKind3["EnumMember"] = 21] = "EnumMember";
9412
+ SymbolKind3[SymbolKind3["Struct"] = 22] = "Struct";
9413
+ SymbolKind3[SymbolKind3["Event"] = 23] = "Event";
9414
+ SymbolKind3[SymbolKind3["Operator"] = 24] = "Operator";
9415
+ SymbolKind3[SymbolKind3["TypeParameter"] = 25] = "TypeParameter";
9416
+ })(SymbolKind2 || (SymbolKind2 = {}));
9417
+ var SymbolTag2;
9418
+ (function(SymbolTag3) {
9419
+ SymbolTag3[SymbolTag3["Deprecated"] = 1] = "Deprecated";
9420
+ })(SymbolTag2 || (SymbolTag2 = {}));
8447
9421
  var TextEditorCursorBlinkingStyle;
8448
9422
  (function(TextEditorCursorBlinkingStyle2) {
8449
9423
  TextEditorCursorBlinkingStyle2[TextEditorCursorBlinkingStyle2["Hidden"] = 0] = "Hidden";
@@ -8463,11 +9437,11 @@ ${stackTraceFormattedLines.join("\n")}
8463
9437
  TextEditorCursorStyle2[TextEditorCursorStyle2["UnderlineThin"] = 6] = "UnderlineThin";
8464
9438
  })(TextEditorCursorStyle || (TextEditorCursorStyle = {}));
8465
9439
  var TrackedRangeStickiness;
8466
- (function(TrackedRangeStickiness2) {
8467
- TrackedRangeStickiness2[TrackedRangeStickiness2["AlwaysGrowsWhenTypingAtEdges"] = 0] = "AlwaysGrowsWhenTypingAtEdges";
8468
- TrackedRangeStickiness2[TrackedRangeStickiness2["NeverGrowsWhenTypingAtEdges"] = 1] = "NeverGrowsWhenTypingAtEdges";
8469
- TrackedRangeStickiness2[TrackedRangeStickiness2["GrowsOnlyWhenTypingBefore"] = 2] = "GrowsOnlyWhenTypingBefore";
8470
- TrackedRangeStickiness2[TrackedRangeStickiness2["GrowsOnlyWhenTypingAfter"] = 3] = "GrowsOnlyWhenTypingAfter";
9440
+ (function(TrackedRangeStickiness3) {
9441
+ TrackedRangeStickiness3[TrackedRangeStickiness3["AlwaysGrowsWhenTypingAtEdges"] = 0] = "AlwaysGrowsWhenTypingAtEdges";
9442
+ TrackedRangeStickiness3[TrackedRangeStickiness3["NeverGrowsWhenTypingAtEdges"] = 1] = "NeverGrowsWhenTypingAtEdges";
9443
+ TrackedRangeStickiness3[TrackedRangeStickiness3["GrowsOnlyWhenTypingBefore"] = 2] = "GrowsOnlyWhenTypingBefore";
9444
+ TrackedRangeStickiness3[TrackedRangeStickiness3["GrowsOnlyWhenTypingAfter"] = 3] = "GrowsOnlyWhenTypingAfter";
8471
9445
  })(TrackedRangeStickiness || (TrackedRangeStickiness = {}));
8472
9446
  var WrappingIndent;
8473
9447
  (function(WrappingIndent2) {
@@ -8480,16 +9454,16 @@ ${stackTraceFormattedLines.join("\n")}
8480
9454
  // node_modules/vscode/vscode/src/vs/editor/common/services/editorBaseApi.js
8481
9455
  var KeyMod = class {
8482
9456
  static {
8483
- this.CtrlCmd = 2048;
9457
+ this.CtrlCmd = KeyMod$1.CtrlCmd;
8484
9458
  }
8485
9459
  static {
8486
- this.Shift = 1024;
9460
+ this.Shift = KeyMod$1.Shift;
8487
9461
  }
8488
9462
  static {
8489
- this.Alt = 512;
9463
+ this.Alt = KeyMod$1.Alt;
8490
9464
  }
8491
9465
  static {
8492
- this.WinCtrl = 256;
9466
+ this.WinCtrl = KeyMod$1.WinCtrl;
8493
9467
  }
8494
9468
  static chord(firstPart, secondPart) {
8495
9469
  return KeyChord(firstPart, secondPart);
@@ -8501,12 +9475,12 @@ ${stackTraceFormattedLines.join("\n")}
8501
9475
  languages: void 0,
8502
9476
  CancellationTokenSource,
8503
9477
  Emitter,
8504
- KeyCode,
9478
+ KeyCode: KeyCode2,
8505
9479
  KeyMod,
8506
9480
  Position,
8507
9481
  Range,
8508
9482
  Selection,
8509
- SelectionDirection,
9483
+ SelectionDirection: SelectionDirection2,
8510
9484
  MarkerSeverity,
8511
9485
  MarkerTag,
8512
9486
  Uri: URI,
@@ -8515,6 +9489,12 @@ ${stackTraceFormattedLines.join("\n")}
8515
9489
  }
8516
9490
 
8517
9491
  // node_modules/vscode/vscode/src/vs/editor/common/core/wordCharacterClassifier.js
9492
+ var WordCharacterClass;
9493
+ (function(WordCharacterClass2) {
9494
+ WordCharacterClass2[WordCharacterClass2["Regular"] = 0] = "Regular";
9495
+ WordCharacterClass2[WordCharacterClass2["Whitespace"] = 1] = "Whitespace";
9496
+ WordCharacterClass2[WordCharacterClass2["WordSeparator"] = 2] = "WordSeparator";
9497
+ })(WordCharacterClass || (WordCharacterClass = {}));
8518
9498
  var wordClassifierCache = new LRUCache(10);
8519
9499
 
8520
9500
  // node_modules/vscode/vscode/src/vs/editor/common/model.js
@@ -8531,6 +9511,16 @@ ${stackTraceFormattedLines.join("\n")}
8531
9511
  GlyphMarginLane3[GlyphMarginLane3["Center"] = 2] = "Center";
8532
9512
  GlyphMarginLane3[GlyphMarginLane3["Right"] = 3] = "Right";
8533
9513
  })(GlyphMarginLane2 || (GlyphMarginLane2 = {}));
9514
+ var MinimapPosition2;
9515
+ (function(MinimapPosition3) {
9516
+ MinimapPosition3[MinimapPosition3["Inline"] = 1] = "Inline";
9517
+ MinimapPosition3[MinimapPosition3["Gutter"] = 2] = "Gutter";
9518
+ })(MinimapPosition2 || (MinimapPosition2 = {}));
9519
+ var MinimapSectionHeaderStyle2;
9520
+ (function(MinimapSectionHeaderStyle3) {
9521
+ MinimapSectionHeaderStyle3[MinimapSectionHeaderStyle3["Normal"] = 1] = "Normal";
9522
+ MinimapSectionHeaderStyle3[MinimapSectionHeaderStyle3["Underlined"] = 2] = "Underlined";
9523
+ })(MinimapSectionHeaderStyle2 || (MinimapSectionHeaderStyle2 = {}));
8534
9524
  var InjectedTextCursorStops2;
8535
9525
  (function(InjectedTextCursorStops3) {
8536
9526
  InjectedTextCursorStops3[InjectedTextCursorStops3["Both"] = 0] = "Both";
@@ -8538,6 +9528,41 @@ ${stackTraceFormattedLines.join("\n")}
8538
9528
  InjectedTextCursorStops3[InjectedTextCursorStops3["Left"] = 2] = "Left";
8539
9529
  InjectedTextCursorStops3[InjectedTextCursorStops3["None"] = 3] = "None";
8540
9530
  })(InjectedTextCursorStops2 || (InjectedTextCursorStops2 = {}));
9531
+ var EndOfLinePreference2;
9532
+ (function(EndOfLinePreference3) {
9533
+ EndOfLinePreference3[EndOfLinePreference3["TextDefined"] = 0] = "TextDefined";
9534
+ EndOfLinePreference3[EndOfLinePreference3["LF"] = 1] = "LF";
9535
+ EndOfLinePreference3[EndOfLinePreference3["CRLF"] = 2] = "CRLF";
9536
+ })(EndOfLinePreference2 || (EndOfLinePreference2 = {}));
9537
+ var DefaultEndOfLine2;
9538
+ (function(DefaultEndOfLine3) {
9539
+ DefaultEndOfLine3[DefaultEndOfLine3["LF"] = 1] = "LF";
9540
+ DefaultEndOfLine3[DefaultEndOfLine3["CRLF"] = 2] = "CRLF";
9541
+ })(DefaultEndOfLine2 || (DefaultEndOfLine2 = {}));
9542
+ var EndOfLineSequence2;
9543
+ (function(EndOfLineSequence3) {
9544
+ EndOfLineSequence3[EndOfLineSequence3["LF"] = 0] = "LF";
9545
+ EndOfLineSequence3[EndOfLineSequence3["CRLF"] = 1] = "CRLF";
9546
+ })(EndOfLineSequence2 || (EndOfLineSequence2 = {}));
9547
+ var TrackedRangeStickiness2;
9548
+ (function(TrackedRangeStickiness3) {
9549
+ TrackedRangeStickiness3[TrackedRangeStickiness3["AlwaysGrowsWhenTypingAtEdges"] = 0] = "AlwaysGrowsWhenTypingAtEdges";
9550
+ TrackedRangeStickiness3[TrackedRangeStickiness3["NeverGrowsWhenTypingAtEdges"] = 1] = "NeverGrowsWhenTypingAtEdges";
9551
+ TrackedRangeStickiness3[TrackedRangeStickiness3["GrowsOnlyWhenTypingBefore"] = 2] = "GrowsOnlyWhenTypingBefore";
9552
+ TrackedRangeStickiness3[TrackedRangeStickiness3["GrowsOnlyWhenTypingAfter"] = 3] = "GrowsOnlyWhenTypingAfter";
9553
+ })(TrackedRangeStickiness2 || (TrackedRangeStickiness2 = {}));
9554
+ var PositionAffinity2;
9555
+ (function(PositionAffinity3) {
9556
+ PositionAffinity3[PositionAffinity3["Left"] = 0] = "Left";
9557
+ PositionAffinity3[PositionAffinity3["Right"] = 1] = "Right";
9558
+ PositionAffinity3[PositionAffinity3["None"] = 2] = "None";
9559
+ PositionAffinity3[PositionAffinity3["LeftOfInjectedText"] = 3] = "LeftOfInjectedText";
9560
+ PositionAffinity3[PositionAffinity3["RightOfInjectedText"] = 4] = "RightOfInjectedText";
9561
+ })(PositionAffinity2 || (PositionAffinity2 = {}));
9562
+ var ModelConstants;
9563
+ (function(ModelConstants2) {
9564
+ ModelConstants2[ModelConstants2["FIRST_LINE_DETECTION_LENGTH_LIMIT"] = 1e3] = "FIRST_LINE_DETECTION_LENGTH_LIMIT";
9565
+ })(ModelConstants || (ModelConstants = {}));
8541
9566
 
8542
9567
  // node_modules/vscode/vscode/src/vs/editor/common/model/textModelSearch.js
8543
9568
  function leftIsWordBounday(wordSeparators, text, textLength, matchStartIndex, matchLength) {
@@ -8545,15 +9570,15 @@ ${stackTraceFormattedLines.join("\n")}
8545
9570
  return true;
8546
9571
  }
8547
9572
  const charBefore = text.charCodeAt(matchStartIndex - 1);
8548
- if (wordSeparators.get(charBefore) !== 0) {
9573
+ if (wordSeparators.get(charBefore) !== WordCharacterClass.Regular) {
8549
9574
  return true;
8550
9575
  }
8551
- if (charBefore === 13 || charBefore === 10) {
9576
+ if (charBefore === CharCode.CarriageReturn || charBefore === CharCode.LineFeed) {
8552
9577
  return true;
8553
9578
  }
8554
9579
  if (matchLength > 0) {
8555
9580
  const firstCharInMatch = text.charCodeAt(matchStartIndex);
8556
- if (wordSeparators.get(firstCharInMatch) !== 0) {
9581
+ if (wordSeparators.get(firstCharInMatch) !== WordCharacterClass.Regular) {
8557
9582
  return true;
8558
9583
  }
8559
9584
  }
@@ -8564,15 +9589,15 @@ ${stackTraceFormattedLines.join("\n")}
8564
9589
  return true;
8565
9590
  }
8566
9591
  const charAfter = text.charCodeAt(matchStartIndex + matchLength);
8567
- if (wordSeparators.get(charAfter) !== 0) {
9592
+ if (wordSeparators.get(charAfter) !== WordCharacterClass.Regular) {
8568
9593
  return true;
8569
9594
  }
8570
- if (charAfter === 13 || charAfter === 10) {
9595
+ if (charAfter === CharCode.CarriageReturn || charAfter === CharCode.LineFeed) {
8571
9596
  return true;
8572
9597
  }
8573
9598
  if (matchLength > 0) {
8574
9599
  const lastCharInMatch = text.charCodeAt(matchStartIndex + matchLength - 1);
8575
- if (wordSeparators.get(lastCharInMatch) !== 0) {
9600
+ if (wordSeparators.get(lastCharInMatch) !== WordCharacterClass.Regular) {
8576
9601
  return true;
8577
9602
  }
8578
9603
  }
@@ -8699,12 +9724,12 @@ ${stackTraceFormattedLines.join("\n")}
8699
9724
  word = null;
8700
9725
  }
8701
9726
  const highlightReason = codePointHighlighter.shouldHighlightNonBasicASCII(str, word ? word.word : null);
8702
- if (highlightReason !== 0) {
8703
- if (highlightReason === 3) {
9727
+ if (highlightReason !== SimpleHighlightReason.None) {
9728
+ if (highlightReason === SimpleHighlightReason.Ambiguous) {
8704
9729
  ambiguousCharacterCount++;
8705
- } else if (highlightReason === 2) {
9730
+ } else if (highlightReason === SimpleHighlightReason.Invisible) {
8706
9731
  invisibleCharacterCount++;
8707
- } else if (highlightReason === 1) {
9732
+ } else if (highlightReason === SimpleHighlightReason.NonBasicASCII) {
8708
9733
  nonBasicAsciiCharacterCount++;
8709
9734
  } else {
8710
9735
  assertNever();
@@ -8731,18 +9756,18 @@ ${stackTraceFormattedLines.join("\n")}
8731
9756
  const codePointHighlighter = new CodePointHighlighter(options);
8732
9757
  const reason = codePointHighlighter.shouldHighlightNonBasicASCII(char, null);
8733
9758
  switch (reason) {
8734
- case 0:
9759
+ case SimpleHighlightReason.None:
8735
9760
  return null;
8736
- case 2:
8737
- return { kind: 1 };
8738
- case 3: {
9761
+ case SimpleHighlightReason.Invisible:
9762
+ return { kind: UnicodeHighlighterReasonKind.Invisible };
9763
+ case SimpleHighlightReason.Ambiguous: {
8739
9764
  const codePoint = char.codePointAt(0);
8740
9765
  const primaryConfusable = codePointHighlighter.ambiguousCharacters.getPrimaryConfusable(codePoint);
8741
9766
  const notAmbiguousInLocales = AmbiguousCharacters.getLocales().filter((l) => !AmbiguousCharacters.getInstance(/* @__PURE__ */ new Set([...options.allowedLocales, l])).isAmbiguous(codePoint));
8742
- return { kind: 0, confusableWith: String.fromCodePoint(primaryConfusable), notAmbiguousInLocales };
9767
+ return { kind: UnicodeHighlighterReasonKind.Ambiguous, confusableWith: String.fromCodePoint(primaryConfusable), notAmbiguousInLocales };
8743
9768
  }
8744
- case 1:
8745
- return { kind: 2 };
9769
+ case SimpleHighlightReason.NonBasicASCII:
9770
+ return { kind: UnicodeHighlighterReasonKind.NonBasicAscii };
8746
9771
  }
8747
9772
  }
8748
9773
  };
@@ -8750,6 +9775,12 @@ ${stackTraceFormattedLines.join("\n")}
8750
9775
  const src = `[${escapeRegExpCharacters(codePoints.map((i) => String.fromCodePoint(i)).join(""))}]`;
8751
9776
  return src;
8752
9777
  }
9778
+ var UnicodeHighlighterReasonKind;
9779
+ (function(UnicodeHighlighterReasonKind2) {
9780
+ UnicodeHighlighterReasonKind2[UnicodeHighlighterReasonKind2["Ambiguous"] = 0] = "Ambiguous";
9781
+ UnicodeHighlighterReasonKind2[UnicodeHighlighterReasonKind2["Invisible"] = 1] = "Invisible";
9782
+ UnicodeHighlighterReasonKind2[UnicodeHighlighterReasonKind2["NonBasicAscii"] = 2] = "NonBasicAscii";
9783
+ })(UnicodeHighlighterReasonKind || (UnicodeHighlighterReasonKind = {}));
8753
9784
  var CodePointHighlighter = class {
8754
9785
  constructor(options) {
8755
9786
  this.options = options;
@@ -8781,10 +9812,10 @@ ${stackTraceFormattedLines.join("\n")}
8781
9812
  shouldHighlightNonBasicASCII(character, wordContext) {
8782
9813
  const codePoint = character.codePointAt(0);
8783
9814
  if (this.allowedCodePoints.has(codePoint)) {
8784
- return 0;
9815
+ return SimpleHighlightReason.None;
8785
9816
  }
8786
9817
  if (this.options.nonBasicASCII) {
8787
- return 1;
9818
+ return SimpleHighlightReason.NonBasicASCII;
8788
9819
  }
8789
9820
  let hasBasicASCIICharacters = false;
8790
9821
  let hasNonConfusableNonBasicAsciiCharacter = false;
@@ -8799,24 +9830,31 @@ ${stackTraceFormattedLines.join("\n")}
8799
9830
  }
8800
9831
  }
8801
9832
  if (!hasBasicASCIICharacters && hasNonConfusableNonBasicAsciiCharacter) {
8802
- return 0;
9833
+ return SimpleHighlightReason.None;
8803
9834
  }
8804
9835
  if (this.options.invisibleCharacters) {
8805
9836
  if (!isAllowedInvisibleCharacter(character) && InvisibleCharacters.isInvisibleCharacter(codePoint)) {
8806
- return 2;
9837
+ return SimpleHighlightReason.Invisible;
8807
9838
  }
8808
9839
  }
8809
9840
  if (this.options.ambiguousCharacters) {
8810
9841
  if (this.ambiguousCharacters.isAmbiguous(codePoint)) {
8811
- return 3;
9842
+ return SimpleHighlightReason.Ambiguous;
8812
9843
  }
8813
9844
  }
8814
- return 0;
9845
+ return SimpleHighlightReason.None;
8815
9846
  }
8816
9847
  };
8817
9848
  function isAllowedInvisibleCharacter(character) {
8818
9849
  return character === " " || character === "\n" || character === " ";
8819
9850
  }
9851
+ var SimpleHighlightReason;
9852
+ (function(SimpleHighlightReason2) {
9853
+ SimpleHighlightReason2[SimpleHighlightReason2["None"] = 0] = "None";
9854
+ SimpleHighlightReason2[SimpleHighlightReason2["NonBasicASCII"] = 1] = "NonBasicASCII";
9855
+ SimpleHighlightReason2[SimpleHighlightReason2["Invisible"] = 2] = "Invisible";
9856
+ SimpleHighlightReason2[SimpleHighlightReason2["Ambiguous"] = 3] = "Ambiguous";
9857
+ })(SimpleHighlightReason || (SimpleHighlightReason = {}));
8820
9858
 
8821
9859
  // node_modules/vscode/vscode/src/vs/editor/common/diff/linesDiffComputer.js
8822
9860
  var LinesDiff = class {
@@ -9025,32 +10063,6 @@ ${stackTraceFormattedLines.join("\n")}
9025
10063
  static deserialize(lineRange) {
9026
10064
  return new _LineRange(lineRange[0], lineRange[1]);
9027
10065
  }
9028
- static invert(range, model) {
9029
- if (range.isEmpty) {
9030
- return [];
9031
- }
9032
- const result = [];
9033
- if (range.startLineNumber > 1) {
9034
- result.push(new _LineRange(1, range.startLineNumber));
9035
- }
9036
- if (range.endLineNumberExclusive < model.getLineCount() + 1) {
9037
- result.push(new _LineRange(range.endLineNumberExclusive, model.getLineCount() + 1));
9038
- }
9039
- return result.filter((r) => !r.isEmpty);
9040
- }
9041
- static asRange(lineRange, model) {
9042
- return lineRange.isEmpty ? new Range(
9043
- lineRange.startLineNumber,
9044
- 1,
9045
- lineRange.startLineNumber,
9046
- model.getLineLength(lineRange.startLineNumber)
9047
- ) : new Range(
9048
- lineRange.startLineNumber,
9049
- 1,
9050
- lineRange.endLineNumberExclusive - 1,
9051
- model.getLineLength(lineRange.endLineNumberExclusive - 1)
9052
- );
9053
- }
9054
10066
  constructor(startLineNumber, endLineNumberExclusive) {
9055
10067
  if (startLineNumber > endLineNumberExclusive) {
9056
10068
  throw new BugIndicatingError(
@@ -9606,7 +10618,7 @@ ${stackTraceFormattedLines.join("\n")}
9606
10618
  len++;
9607
10619
  }
9608
10620
  if (!shouldIgnoreTrimWhitespace && index < endIndex) {
9609
- charCodes[len] = 10;
10621
+ charCodes[len] = CharCode.LineFeed;
9610
10622
  lineNumbers[len] = index + 1;
9611
10623
  columns[len] = lineContent.length + 1;
9612
10624
  len++;
@@ -9623,7 +10635,7 @@ ${stackTraceFormattedLines.join("\n")}
9623
10635
  }
9624
10636
  toString() {
9625
10637
  return "[" + this._charCodes.map(
9626
- (s, idx) => (s === 10 ? "\\n" : String.fromCharCode(s)) + `-(${this._lineNumbers[idx]},${this._columns[idx]})`
10638
+ (s, idx) => (s === CharCode.LineFeed ? "\\n" : String.fromCharCode(s)) + `-(${this._lineNumbers[idx]},${this._columns[idx]})`
9627
10639
  ).join(", ") + "]";
9628
10640
  }
9629
10641
  _assertIndex(index, arr) {
@@ -9646,7 +10658,7 @@ ${stackTraceFormattedLines.join("\n")}
9646
10658
  return this.getStartLineNumber(i + 1);
9647
10659
  }
9648
10660
  this._assertIndex(i, this._lineNumbers);
9649
- if (this._charCodes[i] === 10) {
10661
+ if (this._charCodes[i] === CharCode.LineFeed) {
9650
10662
  return this._lineNumbers[i] + 1;
9651
10663
  }
9652
10664
  return this._lineNumbers[i];
@@ -9663,7 +10675,7 @@ ${stackTraceFormattedLines.join("\n")}
9663
10675
  return this.getStartColumn(i + 1);
9664
10676
  }
9665
10677
  this._assertIndex(i, this._columns);
9666
- if (this._charCodes[i] === 10) {
10678
+ if (this._charCodes[i] === CharCode.LineFeed) {
9667
10679
  return 1;
9668
10680
  }
9669
10681
  return this._columns[i] + 1;
@@ -10131,7 +11143,7 @@ ${stackTraceFormattedLines.join("\n")}
10131
11143
  }
10132
11144
  };
10133
11145
  function isSpace(charCode) {
10134
- return charCode === 32 || charCode === 9;
11146
+ return charCode === CharCode.Space || charCode === CharCode.Tab;
10135
11147
  }
10136
11148
  var LineRangeFragment = class _LineRangeFragment {
10137
11149
  static {
@@ -10437,16 +11449,16 @@ ${stackTraceFormattedLines.join("\n")}
10437
11449
  getBoundaryScore(length) {
10438
11450
  const prevCategory = getCategory(length > 0 ? this.elements[length - 1] : -1);
10439
11451
  const nextCategory = getCategory(length < this.elements.length ? this.elements[length] : -1);
10440
- if (prevCategory === 7 && nextCategory === 8) {
11452
+ if (prevCategory === CharBoundaryCategory.LineBreakCR && nextCategory === CharBoundaryCategory.LineBreakLF) {
10441
11453
  return 0;
10442
11454
  }
10443
- if (prevCategory === 8) {
11455
+ if (prevCategory === CharBoundaryCategory.LineBreakLF) {
10444
11456
  return 150;
10445
11457
  }
10446
11458
  let score2 = 0;
10447
11459
  if (prevCategory !== nextCategory) {
10448
11460
  score2 += 10;
10449
- if (prevCategory === 0 && nextCategory === 1) {
11461
+ if (prevCategory === CharBoundaryCategory.WordLower && nextCategory === CharBoundaryCategory.WordUpper) {
10450
11462
  score2 += 1;
10451
11463
  }
10452
11464
  }
@@ -10497,41 +11509,53 @@ ${stackTraceFormattedLines.join("\n")}
10497
11509
  }
10498
11510
  };
10499
11511
  function isWordChar(charCode) {
10500
- return charCode >= 97 && charCode <= 122 || charCode >= 65 && charCode <= 90 || charCode >= 48 && charCode <= 57;
10501
- }
11512
+ return charCode >= CharCode.a && charCode <= CharCode.z || charCode >= CharCode.A && charCode <= CharCode.Z || charCode >= CharCode.Digit0 && charCode <= CharCode.Digit9;
11513
+ }
11514
+ var CharBoundaryCategory;
11515
+ (function(CharBoundaryCategory2) {
11516
+ CharBoundaryCategory2[CharBoundaryCategory2["WordLower"] = 0] = "WordLower";
11517
+ CharBoundaryCategory2[CharBoundaryCategory2["WordUpper"] = 1] = "WordUpper";
11518
+ CharBoundaryCategory2[CharBoundaryCategory2["WordNumber"] = 2] = "WordNumber";
11519
+ CharBoundaryCategory2[CharBoundaryCategory2["End"] = 3] = "End";
11520
+ CharBoundaryCategory2[CharBoundaryCategory2["Other"] = 4] = "Other";
11521
+ CharBoundaryCategory2[CharBoundaryCategory2["Separator"] = 5] = "Separator";
11522
+ CharBoundaryCategory2[CharBoundaryCategory2["Space"] = 6] = "Space";
11523
+ CharBoundaryCategory2[CharBoundaryCategory2["LineBreakCR"] = 7] = "LineBreakCR";
11524
+ CharBoundaryCategory2[CharBoundaryCategory2["LineBreakLF"] = 8] = "LineBreakLF";
11525
+ })(CharBoundaryCategory || (CharBoundaryCategory = {}));
10502
11526
  var score = {
10503
- [0]: 0,
10504
- [1]: 0,
10505
- [2]: 0,
10506
- [3]: 10,
10507
- [4]: 2,
10508
- [5]: 30,
10509
- [6]: 3,
10510
- [7]: 10,
10511
- [8]: 10
11527
+ [CharBoundaryCategory.WordLower]: 0,
11528
+ [CharBoundaryCategory.WordUpper]: 0,
11529
+ [CharBoundaryCategory.WordNumber]: 0,
11530
+ [CharBoundaryCategory.End]: 10,
11531
+ [CharBoundaryCategory.Other]: 2,
11532
+ [CharBoundaryCategory.Separator]: 30,
11533
+ [CharBoundaryCategory.Space]: 3,
11534
+ [CharBoundaryCategory.LineBreakCR]: 10,
11535
+ [CharBoundaryCategory.LineBreakLF]: 10
10512
11536
  };
10513
11537
  function getCategoryBoundaryScore(category) {
10514
11538
  return score[category];
10515
11539
  }
10516
11540
  function getCategory(charCode) {
10517
- if (charCode === 10) {
10518
- return 8;
10519
- } else if (charCode === 13) {
10520
- return 7;
11541
+ if (charCode === CharCode.LineFeed) {
11542
+ return CharBoundaryCategory.LineBreakLF;
11543
+ } else if (charCode === CharCode.CarriageReturn) {
11544
+ return CharBoundaryCategory.LineBreakCR;
10521
11545
  } else if (isSpace(charCode)) {
10522
- return 6;
10523
- } else if (charCode >= 97 && charCode <= 122) {
10524
- return 0;
10525
- } else if (charCode >= 65 && charCode <= 90) {
10526
- return 1;
10527
- } else if (charCode >= 48 && charCode <= 57) {
10528
- return 2;
11546
+ return CharBoundaryCategory.Space;
11547
+ } else if (charCode >= CharCode.a && charCode <= CharCode.z) {
11548
+ return CharBoundaryCategory.WordLower;
11549
+ } else if (charCode >= CharCode.A && charCode <= CharCode.Z) {
11550
+ return CharBoundaryCategory.WordUpper;
11551
+ } else if (charCode >= CharCode.Digit0 && charCode <= CharCode.Digit9) {
11552
+ return CharBoundaryCategory.WordNumber;
10529
11553
  } else if (charCode === -1) {
10530
- return 3;
10531
- } else if (charCode === 44 || charCode === 59) {
10532
- return 5;
11554
+ return CharBoundaryCategory.End;
11555
+ } else if (charCode === CharCode.Comma || charCode === CharCode.Semicolon) {
11556
+ return CharBoundaryCategory.Separator;
10533
11557
  } else {
10534
- return 4;
11558
+ return CharBoundaryCategory.Other;
10535
11559
  }
10536
11560
  }
10537
11561
 
@@ -11119,7 +12143,7 @@ ${stackTraceFormattedLines.join("\n")}
11119
12143
  };
11120
12144
  function getIndentation(str) {
11121
12145
  let i = 0;
11122
- while (i < str.length && (str.charCodeAt(i) === 32 || str.charCodeAt(i) === 9)) {
12146
+ while (i < str.length && (str.charCodeAt(i) === CharCode.Space || str.charCodeAt(i) === CharCode.Tab)) {
11123
12147
  i++;
11124
12148
  }
11125
12149
  return i;
@@ -11171,7 +12195,7 @@ ${stackTraceFormattedLines.join("\n")}
11171
12195
  if (sequence1.length + sequence2.length < 1700) {
11172
12196
  return this.dynamicProgrammingDiffing.compute(sequence1, sequence2, timeout, (offset1, offset2) => originalLines[offset1] === modifiedLines[offset2] ? modifiedLines[offset2].length === 0 ? 0.1 : 1 + Math.log(1 + modifiedLines[offset2].length) : 0.99);
11173
12197
  }
11174
- return this.myersDiffingAlgorithm.compute(sequence1, sequence2);
12198
+ return this.myersDiffingAlgorithm.compute(sequence1, sequence2, timeout);
11175
12199
  })();
11176
12200
  let lineAlignments = lineAlignmentResult.diffs;
11177
12201
  let hitTimeout = lineAlignmentResult.hitTimeout;
@@ -11723,7 +12747,7 @@ ${stackTraceFormattedLines.join("\n")}
11723
12747
  if (length === 0) {
11724
12748
  return null;
11725
12749
  }
11726
- if (hex.charCodeAt(0) !== 35) {
12750
+ if (hex.charCodeAt(0) !== CharCode.Hash) {
11727
12751
  return null;
11728
12752
  }
11729
12753
  if (length === 7) {
@@ -11757,49 +12781,49 @@ ${stackTraceFormattedLines.join("\n")}
11757
12781
  CSS.parseHex = parseHex;
11758
12782
  function _parseHexDigit(charCode) {
11759
12783
  switch (charCode) {
11760
- case 48:
12784
+ case CharCode.Digit0:
11761
12785
  return 0;
11762
- case 49:
12786
+ case CharCode.Digit1:
11763
12787
  return 1;
11764
- case 50:
12788
+ case CharCode.Digit2:
11765
12789
  return 2;
11766
- case 51:
12790
+ case CharCode.Digit3:
11767
12791
  return 3;
11768
- case 52:
12792
+ case CharCode.Digit4:
11769
12793
  return 4;
11770
- case 53:
12794
+ case CharCode.Digit5:
11771
12795
  return 5;
11772
- case 54:
12796
+ case CharCode.Digit6:
11773
12797
  return 6;
11774
- case 55:
12798
+ case CharCode.Digit7:
11775
12799
  return 7;
11776
- case 56:
12800
+ case CharCode.Digit8:
11777
12801
  return 8;
11778
- case 57:
12802
+ case CharCode.Digit9:
11779
12803
  return 9;
11780
- case 97:
12804
+ case CharCode.a:
11781
12805
  return 10;
11782
- case 65:
12806
+ case CharCode.A:
11783
12807
  return 10;
11784
- case 98:
12808
+ case CharCode.b:
11785
12809
  return 11;
11786
- case 66:
12810
+ case CharCode.B:
11787
12811
  return 11;
11788
- case 99:
12812
+ case CharCode.c:
11789
12813
  return 12;
11790
- case 67:
12814
+ case CharCode.C:
11791
12815
  return 12;
11792
- case 100:
12816
+ case CharCode.d:
11793
12817
  return 13;
11794
- case 68:
12818
+ case CharCode.D:
11795
12819
  return 13;
11796
- case 101:
12820
+ case CharCode.e:
11797
12821
  return 14;
11798
- case 69:
12822
+ case CharCode.E:
11799
12823
  return 14;
11800
- case 102:
12824
+ case CharCode.f:
11801
12825
  return 15;
11802
- case 70:
12826
+ case CharCode.F:
11803
12827
  return 15;
11804
12828
  }
11805
12829
  return 0;
@@ -11935,7 +12959,7 @@ ${stackTraceFormattedLines.join("\n")}
11935
12959
  }
11936
12960
 
11937
12961
  // node_modules/vscode/vscode/src/vs/editor/common/services/findSectionHeaders.js
11938
- var markRegex = /\bMARK:\s*(.*)$/d;
12962
+ var markRegex = new RegExp("\\bMARK:\\s*(.*)$", "d");
11939
12963
  var trimDashesRegex = /^-+|-+$/g;
11940
12964
  function findSectionHeaders(model, options) {
11941
12965
  let headers = [];