kotonebot 0.5.0__py3-none-any.whl → 0.6.0__py3-none-any.whl

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.
Files changed (103) hide show
  1. kotonebot/__init__.py +39 -39
  2. kotonebot/backend/bot.py +312 -312
  3. kotonebot/backend/color.py +525 -525
  4. kotonebot/backend/context/__init__.py +3 -3
  5. kotonebot/backend/context/context.py +1002 -1002
  6. kotonebot/backend/context/task_action.py +183 -183
  7. kotonebot/backend/core.py +86 -129
  8. kotonebot/backend/debug/entry.py +89 -89
  9. kotonebot/backend/debug/mock.py +78 -78
  10. kotonebot/backend/debug/server.py +222 -222
  11. kotonebot/backend/debug/vars.py +351 -351
  12. kotonebot/backend/dispatch.py +227 -227
  13. kotonebot/backend/flow_controller.py +196 -196
  14. kotonebot/backend/image.py +36 -5
  15. kotonebot/backend/loop.py +222 -208
  16. kotonebot/backend/ocr.py +535 -535
  17. kotonebot/backend/preprocessor.py +103 -103
  18. kotonebot/client/__init__.py +9 -9
  19. kotonebot/client/device.py +369 -529
  20. kotonebot/client/fast_screenshot.py +377 -377
  21. kotonebot/client/host/__init__.py +43 -43
  22. kotonebot/client/host/adb_common.py +101 -107
  23. kotonebot/client/host/custom.py +118 -118
  24. kotonebot/client/host/leidian_host.py +196 -196
  25. kotonebot/client/host/mumu12_host.py +353 -353
  26. kotonebot/client/host/protocol.py +214 -214
  27. kotonebot/client/host/windows_common.py +58 -58
  28. kotonebot/client/implements/__init__.py +65 -70
  29. kotonebot/client/implements/adb.py +89 -89
  30. kotonebot/client/implements/nemu_ipc/__init__.py +11 -11
  31. kotonebot/client/implements/nemu_ipc/external_renderer_ipc.py +284 -284
  32. kotonebot/client/implements/nemu_ipc/nemu_ipc.py +327 -327
  33. kotonebot/client/implements/remote_windows.py +188 -188
  34. kotonebot/client/implements/uiautomator2.py +85 -85
  35. kotonebot/client/implements/windows.py +176 -176
  36. kotonebot/client/protocol.py +69 -69
  37. kotonebot/client/registration.py +24 -24
  38. kotonebot/client/scaler.py +467 -0
  39. kotonebot/config/base_config.py +96 -96
  40. kotonebot/config/config.py +61 -0
  41. kotonebot/config/manager.py +36 -36
  42. kotonebot/core/__init__.py +13 -0
  43. kotonebot/core/entities/base.py +182 -0
  44. kotonebot/core/entities/compound.py +75 -0
  45. kotonebot/core/entities/ocr.py +117 -0
  46. kotonebot/core/entities/template_match.py +198 -0
  47. kotonebot/devtools/__init__.py +42 -0
  48. kotonebot/devtools/cli/__init__.py +6 -0
  49. kotonebot/devtools/cli/main.py +53 -0
  50. kotonebot/{tools → devtools}/mirror.py +354 -354
  51. kotonebot/devtools/project/project.py +41 -0
  52. kotonebot/devtools/project/scanner.py +202 -0
  53. kotonebot/devtools/project/schema.py +99 -0
  54. kotonebot/devtools/resgen/__init__.py +42 -0
  55. kotonebot/devtools/resgen/codegen.py +331 -0
  56. kotonebot/devtools/resgen/core.py +94 -0
  57. kotonebot/devtools/resgen/parsers.py +360 -0
  58. kotonebot/devtools/resgen/utils.py +158 -0
  59. kotonebot/devtools/resgen/validation.py +115 -0
  60. kotonebot/devtools/web/dist/assets/bootstrap-icons-BOrJxbIo.woff +0 -0
  61. kotonebot/devtools/web/dist/assets/bootstrap-icons-BtvjY1KL.woff2 +0 -0
  62. kotonebot/devtools/web/dist/assets/ext-language_tools-CD021WJ2.js +2577 -0
  63. kotonebot/devtools/web/dist/assets/index-B_m5f2LF.js +2836 -0
  64. kotonebot/devtools/web/dist/assets/index-BlEDyGGa.css +9 -0
  65. kotonebot/devtools/web/dist/assets/language-client-C9muzqaq.js +128 -0
  66. kotonebot/devtools/web/dist/assets/mode-python-CtHp76XS.js +476 -0
  67. kotonebot/devtools/web/dist/icons/symbol-class.svg +3 -0
  68. kotonebot/devtools/web/dist/icons/symbol-file.svg +3 -0
  69. kotonebot/devtools/web/dist/icons/symbol-method.svg +3 -0
  70. kotonebot/devtools/web/dist/index.html +25 -0
  71. kotonebot/devtools/web/server/__init__.py +0 -0
  72. kotonebot/devtools/web/server/rest_api.py +217 -0
  73. kotonebot/devtools/web/server/server.py +85 -0
  74. kotonebot/errors.py +76 -76
  75. kotonebot/interop/win/__init__.py +11 -9
  76. kotonebot/interop/win/_mouse.py +310 -310
  77. kotonebot/interop/win/message_box.py +313 -313
  78. kotonebot/interop/win/reg.py +37 -37
  79. kotonebot/interop/win/shake_mouse.py +224 -0
  80. kotonebot/interop/win/shortcut.py +43 -43
  81. kotonebot/interop/win/task_dialog.py +513 -513
  82. kotonebot/logging/__init__.py +2 -2
  83. kotonebot/logging/log.py +17 -17
  84. kotonebot/primitives/__init__.py +19 -17
  85. kotonebot/primitives/geometry.py +1067 -862
  86. kotonebot/primitives/visual.py +143 -63
  87. kotonebot/ui/file_host/sensio.py +36 -36
  88. kotonebot/ui/file_host/tmp_send.py +54 -54
  89. kotonebot/ui/pushkit/__init__.py +3 -3
  90. kotonebot/ui/pushkit/image_host.py +88 -88
  91. kotonebot/ui/pushkit/protocol.py +13 -13
  92. kotonebot/ui/pushkit/wxpusher.py +54 -54
  93. kotonebot/ui/user.py +148 -148
  94. kotonebot/util.py +436 -436
  95. {kotonebot-0.5.0.dist-info → kotonebot-0.6.0.dist-info}/METADATA +84 -82
  96. kotonebot-0.6.0.dist-info/RECORD +105 -0
  97. kotonebot-0.6.0.dist-info/entry_points.txt +2 -0
  98. {kotonebot-0.5.0.dist-info → kotonebot-0.6.0.dist-info}/licenses/LICENSE +673 -673
  99. kotonebot/client/implements/adb_raw.py +0 -163
  100. kotonebot-0.5.0.dist-info/RECORD +0 -71
  101. /kotonebot/{tools → devtools/project}/__init__.py +0 -0
  102. {kotonebot-0.5.0.dist-info → kotonebot-0.6.0.dist-info}/WHEEL +0 -0
  103. {kotonebot-0.5.0.dist-info → kotonebot-0.6.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,2577 @@
1
+ ace.define("ace/snippets",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event_emitter","ace/lib/lang","ace/range","ace/range_list","ace/keyboard/hash_handler","ace/tokenizer","ace/clipboard","ace/editor"], function(require, exports, module){"use strict";
2
+ var dom = require("./lib/dom");
3
+ var oop = require("./lib/oop");
4
+ var EventEmitter = require("./lib/event_emitter").EventEmitter;
5
+ var lang = require("./lib/lang");
6
+ var Range = require("./range").Range;
7
+ var RangeList = require("./range_list").RangeList;
8
+ var HashHandler = require("./keyboard/hash_handler").HashHandler;
9
+ var Tokenizer = require("./tokenizer").Tokenizer;
10
+ var clipboard = require("./clipboard");
11
+ var VARIABLES = {
12
+ CURRENT_WORD: function (editor) {
13
+ return editor.session.getTextRange(editor.session.getWordRange());
14
+ },
15
+ SELECTION: function (editor, name, indentation) {
16
+ var text = editor.session.getTextRange();
17
+ if (indentation)
18
+ return text.replace(/\n\r?([ \t]*\S)/g, "\n" + indentation + "$1");
19
+ return text;
20
+ },
21
+ CURRENT_LINE: function (editor) {
22
+ return editor.session.getLine(editor.getCursorPosition().row);
23
+ },
24
+ PREV_LINE: function (editor) {
25
+ return editor.session.getLine(editor.getCursorPosition().row - 1);
26
+ },
27
+ LINE_INDEX: function (editor) {
28
+ return editor.getCursorPosition().row;
29
+ },
30
+ LINE_NUMBER: function (editor) {
31
+ return editor.getCursorPosition().row + 1;
32
+ },
33
+ SOFT_TABS: function (editor) {
34
+ return editor.session.getUseSoftTabs() ? "YES" : "NO";
35
+ },
36
+ TAB_SIZE: function (editor) {
37
+ return editor.session.getTabSize();
38
+ },
39
+ CLIPBOARD: function (editor) {
40
+ return clipboard.getText && clipboard.getText();
41
+ },
42
+ FILENAME: function (editor) {
43
+ return /[^/\\]*$/.exec(this.FILEPATH(editor))[0];
44
+ },
45
+ FILENAME_BASE: function (editor) {
46
+ return /[^/\\]*$/.exec(this.FILEPATH(editor))[0].replace(/\.[^.]*$/, "");
47
+ },
48
+ DIRECTORY: function (editor) {
49
+ return this.FILEPATH(editor).replace(/[^/\\]*$/, "");
50
+ },
51
+ FILEPATH: function (editor) { return "/not implemented.txt"; },
52
+ WORKSPACE_NAME: function () { return "Unknown"; },
53
+ FULLNAME: function () { return "Unknown"; },
54
+ BLOCK_COMMENT_START: function (editor) {
55
+ var mode = editor.session.$mode || {};
56
+ return mode.blockComment && mode.blockComment.start || "";
57
+ },
58
+ BLOCK_COMMENT_END: function (editor) {
59
+ var mode = editor.session.$mode || {};
60
+ return mode.blockComment && mode.blockComment.end || "";
61
+ },
62
+ LINE_COMMENT: function (editor) {
63
+ var mode = editor.session.$mode || {};
64
+ return mode.lineCommentStart || "";
65
+ },
66
+ CURRENT_YEAR: date.bind(null, { year: "numeric" }),
67
+ CURRENT_YEAR_SHORT: date.bind(null, { year: "2-digit" }),
68
+ CURRENT_MONTH: date.bind(null, { month: "numeric" }),
69
+ CURRENT_MONTH_NAME: date.bind(null, { month: "long" }),
70
+ CURRENT_MONTH_NAME_SHORT: date.bind(null, { month: "short" }),
71
+ CURRENT_DATE: date.bind(null, { day: "2-digit" }),
72
+ CURRENT_DAY_NAME: date.bind(null, { weekday: "long" }),
73
+ CURRENT_DAY_NAME_SHORT: date.bind(null, { weekday: "short" }),
74
+ CURRENT_HOUR: date.bind(null, { hour: "2-digit", hour12: false }),
75
+ CURRENT_MINUTE: date.bind(null, { minute: "2-digit" }),
76
+ CURRENT_SECOND: date.bind(null, { second: "2-digit" })
77
+ };
78
+ VARIABLES.SELECTED_TEXT = VARIABLES.SELECTION;
79
+ function date(dateFormat) {
80
+ var str = new Date().toLocaleString("en-us", dateFormat);
81
+ return str.length == 1 ? "0" + str : str;
82
+ }
83
+ var SnippetManager = /** @class */ (function () {
84
+ function SnippetManager() {
85
+ this.snippetMap = {};
86
+ this.snippetNameMap = {};
87
+ this.variables = VARIABLES;
88
+ }
89
+ SnippetManager.prototype.getTokenizer = function () {
90
+ return SnippetManager["$tokenizer"] || this.createTokenizer();
91
+ };
92
+ SnippetManager.prototype.createTokenizer = function () {
93
+ function TabstopToken(str) {
94
+ str = str.substr(1);
95
+ if (/^\d+$/.test(str))
96
+ return [{ tabstopId: parseInt(str, 10) }];
97
+ return [{ text: str }];
98
+ }
99
+ function escape(ch) {
100
+ return "(?:[^\\\\" + ch + "]|\\\\.)";
101
+ }
102
+ var formatMatcher = {
103
+ regex: "/(" + escape("/") + "+)/",
104
+ onMatch: function (val, state, stack) {
105
+ var ts = stack[0];
106
+ ts.fmtString = true;
107
+ ts.guard = val.slice(1, -1);
108
+ ts.flag = "";
109
+ return "";
110
+ },
111
+ next: "formatString"
112
+ };
113
+ SnippetManager["$tokenizer"] = new Tokenizer({
114
+ start: [
115
+ { regex: /\\./, onMatch: function (val, state, stack) {
116
+ var ch = val[1];
117
+ if (ch == "}" && stack.length) {
118
+ val = ch;
119
+ }
120
+ else if ("`$\\".indexOf(ch) != -1) {
121
+ val = ch;
122
+ }
123
+ return [val];
124
+ } },
125
+ { regex: /}/, onMatch: function (val, state, stack) {
126
+ return [stack.length ? stack.shift() : val];
127
+ } },
128
+ { regex: /\$(?:\d+|\w+)/, onMatch: TabstopToken },
129
+ { regex: /\$\{[\dA-Z_a-z]+/, onMatch: function (str, state, stack) {
130
+ var t = TabstopToken(str.substr(1));
131
+ stack.unshift(t[0]);
132
+ return t;
133
+ }, next: "snippetVar" },
134
+ { regex: /\n/, token: "newline", merge: false }
135
+ ],
136
+ snippetVar: [
137
+ { regex: "\\|" + escape("\\|") + "*\\|", onMatch: function (val, state, stack) {
138
+ var choices = val.slice(1, -1).replace(/\\[,|\\]|,/g, function (operator) {
139
+ return operator.length == 2 ? operator[1] : "\x00";
140
+ }).split("\x00").map(function (value) {
141
+ return { value: value };
142
+ });
143
+ stack[0].choices = choices;
144
+ return [choices[0]];
145
+ }, next: "start" },
146
+ formatMatcher,
147
+ { regex: "([^:}\\\\]|\\\\.)*:?", token: "", next: "start" }
148
+ ],
149
+ formatString: [
150
+ { regex: /:/, onMatch: function (val, state, stack) {
151
+ if (stack.length && stack[0].expectElse) {
152
+ stack[0].expectElse = false;
153
+ stack[0].ifEnd = { elseEnd: stack[0] };
154
+ return [stack[0].ifEnd];
155
+ }
156
+ return ":";
157
+ } },
158
+ { regex: /\\./, onMatch: function (val, state, stack) {
159
+ var ch = val[1];
160
+ if (ch == "}" && stack.length)
161
+ val = ch;
162
+ else if ("`$\\".indexOf(ch) != -1)
163
+ val = ch;
164
+ else if (ch == "n")
165
+ val = "\n";
166
+ else if (ch == "t")
167
+ val = "\t";
168
+ else if ("ulULE".indexOf(ch) != -1)
169
+ val = { changeCase: ch, local: ch > "a" };
170
+ return [val];
171
+ } },
172
+ { regex: "/\\w*}", onMatch: function (val, state, stack) {
173
+ var next = stack.shift();
174
+ if (next)
175
+ next.flag = val.slice(1, -1);
176
+ this.next = next && next.tabstopId ? "start" : "";
177
+ return [next || val];
178
+ }, next: "start" },
179
+ { regex: /\$(?:\d+|\w+)/, onMatch: function (val, state, stack) {
180
+ return [{ text: val.slice(1) }];
181
+ } },
182
+ { regex: /\${\w+/, onMatch: function (val, state, stack) {
183
+ var token = { text: val.slice(2) };
184
+ stack.unshift(token);
185
+ return [token];
186
+ }, next: "formatStringVar" },
187
+ { regex: /\n/, token: "newline", merge: false },
188
+ { regex: /}/, onMatch: function (val, state, stack) {
189
+ var next = stack.shift();
190
+ this.next = next && next.tabstopId ? "start" : "";
191
+ return [next || val];
192
+ }, next: "start" }
193
+ ],
194
+ formatStringVar: [
195
+ { regex: /:\/\w+}/, onMatch: function (val, state, stack) {
196
+ var ts = stack[0];
197
+ ts.formatFunction = val.slice(2, -1);
198
+ return [stack.shift()];
199
+ }, next: "formatString" },
200
+ formatMatcher,
201
+ { regex: /:[\?\-+]?/, onMatch: function (val, state, stack) {
202
+ if (val[1] == "+")
203
+ stack[0].ifEnd = stack[0];
204
+ if (val[1] == "?")
205
+ stack[0].expectElse = true;
206
+ }, next: "formatString" },
207
+ { regex: "([^:}\\\\]|\\\\.)*:?", token: "", next: "formatString" }
208
+ ]
209
+ });
210
+ return SnippetManager["$tokenizer"];
211
+ };
212
+ SnippetManager.prototype.tokenizeTmSnippet = function (str, startState) {
213
+ return this.getTokenizer().getLineTokens(str, startState).tokens.map(function (x) {
214
+ return x.value || x;
215
+ });
216
+ };
217
+ SnippetManager.prototype.getVariableValue = function (editor, name, indentation) {
218
+ if (/^\d+$/.test(name))
219
+ return (this.variables.__ || {})[name] || "";
220
+ if (/^[A-Z]\d+$/.test(name))
221
+ return (this.variables[name[0] + "__"] || {})[name.substr(1)] || "";
222
+ name = name.replace(/^TM_/, "");
223
+ if (!this.variables.hasOwnProperty(name))
224
+ return "";
225
+ var value = this.variables[name];
226
+ if (typeof value == "function")
227
+ value = this.variables[name](editor, name, indentation);
228
+ return value == null ? "" : value;
229
+ };
230
+ SnippetManager.prototype.tmStrFormat = function (str, ch, editor) {
231
+ if (!ch.fmt)
232
+ return str;
233
+ var flag = ch.flag || "";
234
+ var re = ch.guard;
235
+ re = new RegExp(re, flag.replace(/[^gim]/g, ""));
236
+ var fmtTokens = typeof ch.fmt == "string" ? this.tokenizeTmSnippet(ch.fmt, "formatString") : ch.fmt;
237
+ var _self = this;
238
+ var formatted = str.replace(re, function () {
239
+ var oldArgs = _self.variables.__;
240
+ _self.variables.__ = [].slice.call(arguments);
241
+ var fmtParts = _self.resolveVariables(fmtTokens, editor);
242
+ var gChangeCase = "E";
243
+ for (var i = 0; i < fmtParts.length; i++) {
244
+ var ch = fmtParts[i];
245
+ if (typeof ch == "object") {
246
+ fmtParts[i] = "";
247
+ if (ch.changeCase && ch.local) {
248
+ var next = fmtParts[i + 1];
249
+ if (next && typeof next == "string") {
250
+ if (ch.changeCase == "u")
251
+ fmtParts[i] = next[0].toUpperCase();
252
+ else
253
+ fmtParts[i] = next[0].toLowerCase();
254
+ fmtParts[i + 1] = next.substr(1);
255
+ }
256
+ }
257
+ else if (ch.changeCase) {
258
+ gChangeCase = ch.changeCase;
259
+ }
260
+ }
261
+ else if (gChangeCase == "U") {
262
+ fmtParts[i] = ch.toUpperCase();
263
+ }
264
+ else if (gChangeCase == "L") {
265
+ fmtParts[i] = ch.toLowerCase();
266
+ }
267
+ }
268
+ _self.variables.__ = oldArgs;
269
+ return fmtParts.join("");
270
+ });
271
+ return formatted;
272
+ };
273
+ SnippetManager.prototype.tmFormatFunction = function (str, ch, editor) {
274
+ if (ch.formatFunction == "upcase")
275
+ return str.toUpperCase();
276
+ if (ch.formatFunction == "downcase")
277
+ return str.toLowerCase();
278
+ return str;
279
+ };
280
+ SnippetManager.prototype.resolveVariables = function (snippet, editor) {
281
+ var result = [];
282
+ var indentation = "";
283
+ var afterNewLine = true;
284
+ for (var i = 0; i < snippet.length; i++) {
285
+ var ch = snippet[i];
286
+ if (typeof ch == "string") {
287
+ result.push(ch);
288
+ if (ch == "\n") {
289
+ afterNewLine = true;
290
+ indentation = "";
291
+ }
292
+ else if (afterNewLine) {
293
+ indentation = /^\t*/.exec(ch)[0];
294
+ afterNewLine = /\S/.test(ch);
295
+ }
296
+ continue;
297
+ }
298
+ if (!ch)
299
+ continue;
300
+ afterNewLine = false;
301
+ if (ch.fmtString) {
302
+ var j = snippet.indexOf(ch, i + 1);
303
+ if (j == -1)
304
+ j = snippet.length;
305
+ ch.fmt = snippet.slice(i + 1, j);
306
+ i = j;
307
+ }
308
+ if (ch.text) {
309
+ var value = this.getVariableValue(editor, ch.text, indentation) + "";
310
+ if (ch.fmtString)
311
+ value = this.tmStrFormat(value, ch, editor);
312
+ if (ch.formatFunction)
313
+ value = this.tmFormatFunction(value, ch, editor);
314
+ if (value && !ch.ifEnd) {
315
+ result.push(value);
316
+ gotoNext(ch);
317
+ }
318
+ else if (!value && ch.ifEnd) {
319
+ gotoNext(ch.ifEnd);
320
+ }
321
+ }
322
+ else if (ch.elseEnd) {
323
+ gotoNext(ch.elseEnd);
324
+ }
325
+ else if (ch.tabstopId != null) {
326
+ result.push(ch);
327
+ }
328
+ else if (ch.changeCase != null) {
329
+ result.push(ch);
330
+ }
331
+ }
332
+ function gotoNext(ch) {
333
+ var i1 = snippet.indexOf(ch, i + 1);
334
+ if (i1 != -1)
335
+ i = i1;
336
+ }
337
+ return result;
338
+ };
339
+ SnippetManager.prototype.getDisplayTextForSnippet = function (editor, snippetText) {
340
+ var processedSnippet = processSnippetText.call(this, editor, snippetText);
341
+ return processedSnippet.text;
342
+ };
343
+ SnippetManager.prototype.insertSnippetForSelection = function (editor, snippetText, options) {
344
+ if (options === void 0) { options = {}; }
345
+ var processedSnippet = processSnippetText.call(this, editor, snippetText, options);
346
+ var range = editor.getSelectionRange();
347
+ var end = editor.session.replace(range, processedSnippet.text);
348
+ var tabstopManager = new TabstopManager(editor);
349
+ var selectionId = editor.inVirtualSelectionMode && editor.selection.index;
350
+ tabstopManager.addTabstops(processedSnippet.tabstops, range.start, end, selectionId);
351
+ };
352
+ SnippetManager.prototype.insertSnippet = function (editor, snippetText, options) {
353
+ if (options === void 0) { options = {}; }
354
+ var self = this;
355
+ if (editor.inVirtualSelectionMode)
356
+ return self.insertSnippetForSelection(editor, snippetText, options);
357
+ editor.forEachSelection(function () {
358
+ self.insertSnippetForSelection(editor, snippetText, options);
359
+ }, null, { keepOrder: true });
360
+ if (editor.tabstopManager)
361
+ editor.tabstopManager.tabNext();
362
+ };
363
+ SnippetManager.prototype.$getScope = function (editor) {
364
+ var scope = editor.session.$mode.$id || "";
365
+ scope = scope.split("/").pop();
366
+ if (scope === "html" || scope === "php") {
367
+ if (scope === "php" && !editor.session.$mode.inlinePhp)
368
+ scope = "html";
369
+ var c = editor.getCursorPosition();
370
+ var state = editor.session.getState(c.row);
371
+ if (typeof state === "object") {
372
+ state = state[0];
373
+ }
374
+ if (state.substring) {
375
+ if (state.substring(0, 3) == "js-")
376
+ scope = "javascript";
377
+ else if (state.substring(0, 4) == "css-")
378
+ scope = "css";
379
+ else if (state.substring(0, 4) == "php-")
380
+ scope = "php";
381
+ }
382
+ }
383
+ return scope;
384
+ };
385
+ SnippetManager.prototype.getActiveScopes = function (editor) {
386
+ var scope = this.$getScope(editor);
387
+ var scopes = [scope];
388
+ var snippetMap = this.snippetMap;
389
+ if (snippetMap[scope] && snippetMap[scope].includeScopes) {
390
+ scopes.push.apply(scopes, snippetMap[scope].includeScopes);
391
+ }
392
+ scopes.push("_");
393
+ return scopes;
394
+ };
395
+ SnippetManager.prototype.expandWithTab = function (editor, options) {
396
+ var self = this;
397
+ var result = editor.forEachSelection(function () {
398
+ return self.expandSnippetForSelection(editor, options);
399
+ }, null, { keepOrder: true });
400
+ if (result && editor.tabstopManager)
401
+ editor.tabstopManager.tabNext();
402
+ return result;
403
+ };
404
+ SnippetManager.prototype.expandSnippetForSelection = function (editor, options) {
405
+ var cursor = editor.getCursorPosition();
406
+ var line = editor.session.getLine(cursor.row);
407
+ var before = line.substring(0, cursor.column);
408
+ var after = line.substr(cursor.column);
409
+ var snippetMap = this.snippetMap;
410
+ var snippet;
411
+ this.getActiveScopes(editor).some(function (scope) {
412
+ var snippets = snippetMap[scope];
413
+ if (snippets)
414
+ snippet = this.findMatchingSnippet(snippets, before, after);
415
+ return !!snippet;
416
+ }, this);
417
+ if (!snippet)
418
+ return false;
419
+ if (options && options.dryRun)
420
+ return true;
421
+ editor.session.doc.removeInLine(cursor.row, cursor.column - snippet.replaceBefore.length, cursor.column + snippet.replaceAfter.length);
422
+ this.variables.M__ = snippet.matchBefore;
423
+ this.variables.T__ = snippet.matchAfter;
424
+ this.insertSnippetForSelection(editor, snippet.content);
425
+ this.variables.M__ = this.variables.T__ = null;
426
+ return true;
427
+ };
428
+ SnippetManager.prototype.findMatchingSnippet = function (snippetList, before, after) {
429
+ for (var i = snippetList.length; i--;) {
430
+ var s = snippetList[i];
431
+ if (s.startRe && !s.startRe.test(before))
432
+ continue;
433
+ if (s.endRe && !s.endRe.test(after))
434
+ continue;
435
+ if (!s.startRe && !s.endRe)
436
+ continue;
437
+ s.matchBefore = s.startRe ? s.startRe.exec(before) : [""];
438
+ s.matchAfter = s.endRe ? s.endRe.exec(after) : [""];
439
+ s.replaceBefore = s.triggerRe ? s.triggerRe.exec(before)[0] : "";
440
+ s.replaceAfter = s.endTriggerRe ? s.endTriggerRe.exec(after)[0] : "";
441
+ return s;
442
+ }
443
+ };
444
+ SnippetManager.prototype.register = function (snippets, scope) {
445
+ var snippetMap = this.snippetMap;
446
+ var snippetNameMap = this.snippetNameMap;
447
+ var self = this;
448
+ if (!snippets)
449
+ snippets = [];
450
+ function wrapRegexp(src) {
451
+ if (src && !/^\^?\(.*\)\$?$|^\\b$/.test(src))
452
+ src = "(?:" + src + ")";
453
+ return src || "";
454
+ }
455
+ function guardedRegexp(re, guard, opening) {
456
+ re = wrapRegexp(re);
457
+ guard = wrapRegexp(guard);
458
+ if (opening) {
459
+ re = guard + re;
460
+ if (re && re[re.length - 1] != "$")
461
+ re = re + "$";
462
+ }
463
+ else {
464
+ re = re + guard;
465
+ if (re && re[0] != "^")
466
+ re = "^" + re;
467
+ }
468
+ return new RegExp(re);
469
+ }
470
+ function addSnippet(s) {
471
+ if (!s.scope)
472
+ s.scope = scope || "_";
473
+ scope = s.scope;
474
+ if (!snippetMap[scope]) {
475
+ snippetMap[scope] = [];
476
+ snippetNameMap[scope] = {};
477
+ }
478
+ var map = snippetNameMap[scope];
479
+ if (s.name) {
480
+ var old = map[s.name];
481
+ if (old)
482
+ self.unregister(old);
483
+ map[s.name] = s;
484
+ }
485
+ snippetMap[scope].push(s);
486
+ if (s.prefix)
487
+ s.tabTrigger = s.prefix;
488
+ if (!s.content && s.body)
489
+ s.content = Array.isArray(s.body) ? s.body.join("\n") : s.body;
490
+ if (s.tabTrigger && !s.trigger) {
491
+ if (!s.guard && /^\w/.test(s.tabTrigger))
492
+ s.guard = "\\b";
493
+ s.trigger = lang.escapeRegExp(s.tabTrigger);
494
+ }
495
+ if (!s.trigger && !s.guard && !s.endTrigger && !s.endGuard)
496
+ return;
497
+ s.startRe = guardedRegexp(s.trigger, s.guard, true);
498
+ s.triggerRe = new RegExp(s.trigger);
499
+ s.endRe = guardedRegexp(s.endTrigger, s.endGuard, true);
500
+ s.endTriggerRe = new RegExp(s.endTrigger);
501
+ }
502
+ if (Array.isArray(snippets)) {
503
+ snippets.forEach(addSnippet);
504
+ }
505
+ else {
506
+ Object.keys(snippets).forEach(function (key) {
507
+ addSnippet(snippets[key]);
508
+ });
509
+ }
510
+ this._signal("registerSnippets", { scope: scope });
511
+ };
512
+ SnippetManager.prototype.unregister = function (snippets, scope) {
513
+ var snippetMap = this.snippetMap;
514
+ var snippetNameMap = this.snippetNameMap;
515
+ function removeSnippet(s) {
516
+ var nameMap = snippetNameMap[s.scope || scope];
517
+ if (nameMap && nameMap[s.name]) {
518
+ delete nameMap[s.name];
519
+ var map = snippetMap[s.scope || scope];
520
+ var i = map && map.indexOf(s);
521
+ if (i >= 0)
522
+ map.splice(i, 1);
523
+ }
524
+ }
525
+ if (snippets.content)
526
+ removeSnippet(snippets);
527
+ else if (Array.isArray(snippets))
528
+ snippets.forEach(removeSnippet);
529
+ };
530
+ SnippetManager.prototype.parseSnippetFile = function (str) {
531
+ str = str.replace(/\r/g, "");
532
+ var list = [], /**@type{Snippet}*/ snippet = {};
533
+ var re = /^#.*|^({[\s\S]*})\s*$|^(\S+) (.*)$|^((?:\n*\t.*)+)/gm;
534
+ var m;
535
+ while (m = re.exec(str)) {
536
+ if (m[1]) {
537
+ try {
538
+ snippet = JSON.parse(m[1]);
539
+ list.push(snippet);
540
+ }
541
+ catch (e) { }
542
+ }
543
+ if (m[4]) {
544
+ snippet.content = m[4].replace(/^\t/gm, "");
545
+ list.push(snippet);
546
+ snippet = {};
547
+ }
548
+ else {
549
+ var key = m[2], val = m[3];
550
+ if (key == "regex") {
551
+ var guardRe = /\/((?:[^\/\\]|\\.)*)|$/g;
552
+ snippet.guard = guardRe.exec(val)[1];
553
+ snippet.trigger = guardRe.exec(val)[1];
554
+ snippet.endTrigger = guardRe.exec(val)[1];
555
+ snippet.endGuard = guardRe.exec(val)[1];
556
+ }
557
+ else if (key == "snippet") {
558
+ snippet.tabTrigger = val.match(/^\S*/)[0];
559
+ if (!snippet.name)
560
+ snippet.name = val;
561
+ }
562
+ else if (key) {
563
+ snippet[key] = val;
564
+ }
565
+ }
566
+ }
567
+ return list;
568
+ };
569
+ SnippetManager.prototype.getSnippetByName = function (name, editor) {
570
+ var snippetMap = this.snippetNameMap;
571
+ var snippet;
572
+ this.getActiveScopes(editor).some(function (scope) {
573
+ var snippets = snippetMap[scope];
574
+ if (snippets)
575
+ snippet = snippets[name];
576
+ return !!snippet;
577
+ }, this);
578
+ return snippet;
579
+ };
580
+ return SnippetManager;
581
+ }());
582
+ oop.implement(SnippetManager.prototype, EventEmitter);
583
+ var processSnippetText = function (editor, snippetText, options) {
584
+ if (options === void 0) { options = {}; }
585
+ var cursor = editor.getCursorPosition();
586
+ var line = editor.session.getLine(cursor.row);
587
+ var tabString = editor.session.getTabString();
588
+ var indentString = line.match(/^\s*/)[0];
589
+ if (cursor.column < indentString.length)
590
+ indentString = indentString.slice(0, cursor.column);
591
+ snippetText = snippetText.replace(/\r/g, "");
592
+ var tokens = this.tokenizeTmSnippet(snippetText);
593
+ tokens = this.resolveVariables(tokens, editor);
594
+ tokens = tokens.map(function (x) {
595
+ if (x == "\n" && !options.excludeExtraIndent)
596
+ return x + indentString;
597
+ if (typeof x == "string")
598
+ return x.replace(/\t/g, tabString);
599
+ return x;
600
+ });
601
+ var tabstops = [];
602
+ tokens.forEach(function (p, i) {
603
+ if (typeof p != "object")
604
+ return;
605
+ var id = p.tabstopId;
606
+ var ts = tabstops[id];
607
+ if (!ts) {
608
+ ts = tabstops[id] = [];
609
+ ts.index = id;
610
+ ts.value = "";
611
+ ts.parents = {};
612
+ }
613
+ if (ts.indexOf(p) !== -1)
614
+ return;
615
+ if (p.choices && !ts.choices)
616
+ ts.choices = p.choices;
617
+ ts.push(p);
618
+ var i1 = tokens.indexOf(p, i + 1);
619
+ if (i1 === -1)
620
+ return;
621
+ var value = tokens.slice(i + 1, i1);
622
+ var isNested = value.some(function (t) { return typeof t === "object"; });
623
+ if (isNested && !ts.value) {
624
+ ts.value = value;
625
+ }
626
+ else if (value.length && (!ts.value || typeof ts.value !== "string")) {
627
+ ts.value = value.join("");
628
+ }
629
+ });
630
+ tabstops.forEach(function (ts) { ts.length = 0; });
631
+ var expanding = {};
632
+ function copyValue(val) {
633
+ var copy = [];
634
+ for (var i = 0; i < val.length; i++) {
635
+ var p = val[i];
636
+ if (typeof p == "object") {
637
+ if (expanding[p.tabstopId])
638
+ continue;
639
+ var j = val.lastIndexOf(p, i - 1);
640
+ p = copy[j] || { tabstopId: p.tabstopId };
641
+ }
642
+ copy[i] = p;
643
+ }
644
+ return copy;
645
+ }
646
+ for (var i = 0; i < tokens.length; i++) {
647
+ var p = tokens[i];
648
+ if (typeof p != "object")
649
+ continue;
650
+ var id = p.tabstopId;
651
+ var ts = tabstops[id];
652
+ var i1 = tokens.indexOf(p, i + 1);
653
+ if (expanding[id]) {
654
+ if (expanding[id] === p) {
655
+ delete expanding[id];
656
+ Object.keys(expanding).forEach(function (parentId) {
657
+ ts.parents[parentId] = true;
658
+ });
659
+ }
660
+ continue;
661
+ }
662
+ expanding[id] = p;
663
+ var value = ts.value;
664
+ if (typeof value !== "string")
665
+ value = copyValue(value);
666
+ else if (p.fmt)
667
+ value = this.tmStrFormat(value, p, editor);
668
+ tokens.splice.apply(tokens, [i + 1, Math.max(0, i1 - i)].concat(value, p));
669
+ if (ts.indexOf(p) === -1)
670
+ ts.push(p);
671
+ }
672
+ var row = 0, column = 0;
673
+ var text = "";
674
+ tokens.forEach(function (t) {
675
+ if (typeof t === "string") {
676
+ var lines = t.split("\n");
677
+ if (lines.length > 1) {
678
+ column = lines[lines.length - 1].length;
679
+ row += lines.length - 1;
680
+ }
681
+ else
682
+ column += t.length;
683
+ text += t;
684
+ }
685
+ else if (t) {
686
+ if (!t.start)
687
+ t.start = { row: row, column: column };
688
+ else
689
+ t.end = { row: row, column: column };
690
+ }
691
+ });
692
+ return {
693
+ text: text,
694
+ tabstops: tabstops,
695
+ tokens: tokens
696
+ };
697
+ };
698
+ var TabstopManager = /** @class */ (function () {
699
+ function TabstopManager(editor) {
700
+ this.index = 0;
701
+ this.ranges = [];
702
+ this.tabstops = [];
703
+ if (editor.tabstopManager)
704
+ return editor.tabstopManager;
705
+ editor.tabstopManager = this;
706
+ this.$onChange = this.onChange.bind(this);
707
+ this.$onChangeSelection = lang.delayedCall(this.onChangeSelection.bind(this)).schedule;
708
+ this.$onChangeSession = this.onChangeSession.bind(this);
709
+ this.$onAfterExec = this.onAfterExec.bind(this);
710
+ this.attach(editor);
711
+ }
712
+ TabstopManager.prototype.attach = function (editor) {
713
+ this.$openTabstops = null;
714
+ this.selectedTabstop = null;
715
+ this.editor = editor;
716
+ this.session = editor.session;
717
+ this.editor.on("change", this.$onChange);
718
+ this.editor.on("changeSelection", this.$onChangeSelection);
719
+ this.editor.on("changeSession", this.$onChangeSession);
720
+ this.editor.commands.on("afterExec", this.$onAfterExec);
721
+ this.editor.keyBinding.addKeyboardHandler(this.keyboardHandler);
722
+ };
723
+ TabstopManager.prototype.detach = function () {
724
+ this.tabstops.forEach(this.removeTabstopMarkers, this);
725
+ this.ranges.length = 0;
726
+ this.tabstops.length = 0;
727
+ this.selectedTabstop = null;
728
+ this.editor.off("change", this.$onChange);
729
+ this.editor.off("changeSelection", this.$onChangeSelection);
730
+ this.editor.off("changeSession", this.$onChangeSession);
731
+ this.editor.commands.off("afterExec", this.$onAfterExec);
732
+ this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler);
733
+ this.editor.tabstopManager = null;
734
+ this.session = null;
735
+ this.editor = null;
736
+ };
737
+ TabstopManager.prototype.onChange = function (delta) {
738
+ var isRemove = delta.action[0] == "r";
739
+ var selectedTabstop = this.selectedTabstop || {};
740
+ var parents = selectedTabstop.parents || {};
741
+ var tabstops = this.tabstops.slice();
742
+ for (var i = 0; i < tabstops.length; i++) {
743
+ var ts = tabstops[i];
744
+ var active = ts == selectedTabstop || parents[ts.index];
745
+ ts.rangeList.$bias = active ? 0 : 1;
746
+ if (delta.action == "remove" && ts !== selectedTabstop) {
747
+ var parentActive = ts.parents && ts.parents[selectedTabstop.index];
748
+ var startIndex = ts.rangeList.pointIndex(delta.start, parentActive);
749
+ startIndex = startIndex < 0 ? -startIndex - 1 : startIndex + 1;
750
+ var endIndex = ts.rangeList.pointIndex(delta.end, parentActive);
751
+ endIndex = endIndex < 0 ? -endIndex - 1 : endIndex - 1;
752
+ var toRemove = ts.rangeList.ranges.slice(startIndex, endIndex);
753
+ for (var j = 0; j < toRemove.length; j++)
754
+ this.removeRange(toRemove[j]);
755
+ }
756
+ ts.rangeList.$onChange(delta);
757
+ }
758
+ var session = this.session;
759
+ if (!this.$inChange && isRemove && session.getLength() == 1 && !session.getValue())
760
+ this.detach();
761
+ };
762
+ TabstopManager.prototype.updateLinkedFields = function () {
763
+ var ts = this.selectedTabstop;
764
+ if (!ts || !ts.hasLinkedRanges || !ts.firstNonLinked)
765
+ return;
766
+ this.$inChange = true;
767
+ var session = this.session;
768
+ var text = session.getTextRange(ts.firstNonLinked);
769
+ for (var i = 0; i < ts.length; i++) {
770
+ var range = ts[i];
771
+ if (!range.linked)
772
+ continue;
773
+ var original = range.original;
774
+ var fmt = exports.snippetManager.tmStrFormat(text, original, this.editor);
775
+ session.replace(range, fmt);
776
+ }
777
+ this.$inChange = false;
778
+ };
779
+ TabstopManager.prototype.onAfterExec = function (e) {
780
+ if (e.command && !e.command.readOnly)
781
+ this.updateLinkedFields();
782
+ };
783
+ TabstopManager.prototype.onChangeSelection = function () {
784
+ if (!this.editor)
785
+ return;
786
+ var lead = this.editor.selection.lead;
787
+ var anchor = this.editor.selection.anchor;
788
+ var isEmpty = this.editor.selection.isEmpty();
789
+ for (var i = 0; i < this.ranges.length; i++) {
790
+ if (this.ranges[i].linked)
791
+ continue;
792
+ var containsLead = this.ranges[i].contains(lead.row, lead.column);
793
+ var containsAnchor = isEmpty || this.ranges[i].contains(anchor.row, anchor.column);
794
+ if (containsLead && containsAnchor)
795
+ return;
796
+ }
797
+ this.detach();
798
+ };
799
+ TabstopManager.prototype.onChangeSession = function () {
800
+ this.detach();
801
+ };
802
+ TabstopManager.prototype.tabNext = function (dir) {
803
+ var max = this.tabstops.length;
804
+ var index = this.index + (dir || 1);
805
+ index = Math.min(Math.max(index, 1), max);
806
+ if (index == max)
807
+ index = 0;
808
+ this.selectTabstop(index);
809
+ this.updateTabstopMarkers();
810
+ if (index === 0) {
811
+ this.detach();
812
+ }
813
+ };
814
+ TabstopManager.prototype.selectTabstop = function (index) {
815
+ this.$openTabstops = null;
816
+ var ts = this.tabstops[this.index];
817
+ if (ts)
818
+ this.addTabstopMarkers(ts);
819
+ this.index = index;
820
+ ts = this.tabstops[this.index];
821
+ if (!ts || !ts.length)
822
+ return;
823
+ this.selectedTabstop = ts;
824
+ var range = ts.firstNonLinked || ts;
825
+ if (ts.choices)
826
+ range.cursor = range.start;
827
+ if (!this.editor.inVirtualSelectionMode) {
828
+ var sel = this.editor.multiSelect;
829
+ sel.toSingleRange(range);
830
+ for (var i = 0; i < ts.length; i++) {
831
+ if (ts.hasLinkedRanges && ts[i].linked)
832
+ continue;
833
+ sel.addRange(ts[i].clone(), true);
834
+ }
835
+ }
836
+ else {
837
+ this.editor.selection.fromOrientedRange(range);
838
+ }
839
+ this.editor.keyBinding.addKeyboardHandler(this.keyboardHandler);
840
+ if (this.selectedTabstop && this.selectedTabstop.choices)
841
+ this.editor.execCommand("startAutocomplete", { matches: this.selectedTabstop.choices });
842
+ };
843
+ TabstopManager.prototype.addTabstops = function (tabstops, start, end) {
844
+ var useLink = this.useLink || !this.editor.getOption("enableMultiselect");
845
+ if (!this.$openTabstops)
846
+ this.$openTabstops = [];
847
+ if (!tabstops[0]) {
848
+ var p = Range.fromPoints(end, end);
849
+ moveRelative(p.start, start);
850
+ moveRelative(p.end, start);
851
+ tabstops[0] = [p];
852
+ tabstops[0].index = 0;
853
+ }
854
+ var i = this.index;
855
+ var arg = [i + 1, 0];
856
+ var ranges = this.ranges;
857
+ var snippetId = this.snippetId = (this.snippetId || 0) + 1;
858
+ tabstops.forEach(function (ts, index) {
859
+ var dest = this.$openTabstops[index] || ts;
860
+ dest.snippetId = snippetId;
861
+ for (var i = 0; i < ts.length; i++) {
862
+ var p = ts[i];
863
+ var range = Range.fromPoints(p.start, p.end || p.start);
864
+ movePoint(range.start, start);
865
+ movePoint(range.end, start);
866
+ range.original = p;
867
+ range.tabstop = dest;
868
+ ranges.push(range);
869
+ if (dest != ts)
870
+ dest.unshift(range);
871
+ else
872
+ dest[i] = range;
873
+ if (p.fmtString || (dest.firstNonLinked && useLink)) {
874
+ range.linked = true;
875
+ dest.hasLinkedRanges = true;
876
+ }
877
+ else if (!dest.firstNonLinked)
878
+ dest.firstNonLinked = range;
879
+ }
880
+ if (!dest.firstNonLinked)
881
+ dest.hasLinkedRanges = false;
882
+ if (dest === ts) {
883
+ arg.push(dest);
884
+ this.$openTabstops[index] = dest;
885
+ }
886
+ this.addTabstopMarkers(dest);
887
+ dest.rangeList = dest.rangeList || new RangeList();
888
+ dest.rangeList.$bias = 0;
889
+ dest.rangeList.addList(dest);
890
+ }, this);
891
+ if (arg.length > 2) {
892
+ if (this.tabstops.length)
893
+ arg.push(arg.splice(2, 1)[0]);
894
+ this.tabstops.splice.apply(this.tabstops, arg);
895
+ }
896
+ };
897
+ TabstopManager.prototype.addTabstopMarkers = function (ts) {
898
+ var session = this.session;
899
+ ts.forEach(function (range) {
900
+ if (!range.markerId)
901
+ range.markerId = session.addMarker(range, "ace_snippet-marker", "text");
902
+ });
903
+ };
904
+ TabstopManager.prototype.removeTabstopMarkers = function (ts) {
905
+ var session = this.session;
906
+ ts.forEach(function (range) {
907
+ session.removeMarker(range.markerId);
908
+ range.markerId = null;
909
+ });
910
+ };
911
+ TabstopManager.prototype.updateTabstopMarkers = function () {
912
+ if (!this.selectedTabstop)
913
+ return;
914
+ var currentSnippetId = this.selectedTabstop.snippetId;
915
+ if (this.selectedTabstop.index === 0) {
916
+ currentSnippetId--;
917
+ }
918
+ this.tabstops.forEach(function (ts) {
919
+ if (ts.snippetId === currentSnippetId)
920
+ this.addTabstopMarkers(ts);
921
+ else
922
+ this.removeTabstopMarkers(ts);
923
+ }, this);
924
+ };
925
+ TabstopManager.prototype.removeRange = function (range) {
926
+ var i = range.tabstop.indexOf(range);
927
+ if (i != -1)
928
+ range.tabstop.splice(i, 1);
929
+ i = this.ranges.indexOf(range);
930
+ if (i != -1)
931
+ this.ranges.splice(i, 1);
932
+ i = range.tabstop.rangeList.ranges.indexOf(range);
933
+ if (i != -1)
934
+ range.tabstop.splice(i, 1);
935
+ this.session.removeMarker(range.markerId);
936
+ if (!range.tabstop.length) {
937
+ i = this.tabstops.indexOf(range.tabstop);
938
+ if (i != -1)
939
+ this.tabstops.splice(i, 1);
940
+ if (!this.tabstops.length)
941
+ this.detach();
942
+ }
943
+ };
944
+ return TabstopManager;
945
+ }());
946
+ TabstopManager.prototype.keyboardHandler = new HashHandler();
947
+ TabstopManager.prototype.keyboardHandler.bindKeys({
948
+ "Tab": function (editor) {
949
+ if (exports.snippetManager && exports.snippetManager.expandWithTab(editor))
950
+ return;
951
+ editor.tabstopManager.tabNext(1);
952
+ editor.renderer.scrollCursorIntoView();
953
+ },
954
+ "Shift-Tab": function (editor) {
955
+ editor.tabstopManager.tabNext(-1);
956
+ editor.renderer.scrollCursorIntoView();
957
+ },
958
+ "Esc": function (editor) {
959
+ editor.tabstopManager.detach();
960
+ }
961
+ });
962
+ var movePoint = function (point, diff) {
963
+ if (point.row == 0)
964
+ point.column += diff.column;
965
+ point.row += diff.row;
966
+ };
967
+ var moveRelative = function (point, start) {
968
+ if (point.row == start.row)
969
+ point.column -= start.column;
970
+ point.row -= start.row;
971
+ };
972
+ dom.importCssString("\n.ace_snippet-marker {\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n background: rgba(194, 193, 208, 0.09);\n border: 1px dotted rgba(211, 208, 235, 0.62);\n position: absolute;\n}", "snippets.css", false);
973
+ exports.snippetManager = new SnippetManager();
974
+ var Editor = require("./editor").Editor;
975
+ (function () {
976
+ this.insertSnippet = function (content, options) {
977
+ return exports.snippetManager.insertSnippet(this, content, options);
978
+ };
979
+ this.expandSnippet = function (options) {
980
+ return exports.snippetManager.expandWithTab(this, options);
981
+ };
982
+ }).call(Editor.prototype);
983
+
984
+ });
985
+
986
+ ace.define("ace/autocomplete/popup",["require","exports","module","ace/virtual_renderer","ace/editor","ace/range","ace/lib/event","ace/lib/lang","ace/lib/dom","ace/config","ace/lib/useragent"], function(require, exports, module){"use strict";
987
+ var Renderer = require("../virtual_renderer").VirtualRenderer;
988
+ var Editor = require("../editor").Editor;
989
+ var Range = require("../range").Range;
990
+ var event = require("../lib/event");
991
+ var lang = require("../lib/lang");
992
+ var dom = require("../lib/dom");
993
+ var nls = require("../config").nls;
994
+ var userAgent = require("./../lib/useragent");
995
+ var getAriaId = function (index) {
996
+ return "suggest-aria-id:".concat(index);
997
+ };
998
+ var popupAriaRole = userAgent.isSafari ? "menu" : "listbox";
999
+ var optionAriaRole = userAgent.isSafari ? "menuitem" : "option";
1000
+ var ariaActiveState = userAgent.isSafari ? "aria-current" : "aria-selected";
1001
+ var $singleLineEditor = function (el) {
1002
+ var renderer = new Renderer(el);
1003
+ renderer.$maxLines = 4;
1004
+ var editor = new Editor(renderer);
1005
+ editor.setHighlightActiveLine(false);
1006
+ editor.setShowPrintMargin(false);
1007
+ editor.renderer.setShowGutter(false);
1008
+ editor.renderer.setHighlightGutterLine(false);
1009
+ editor.$mouseHandler.$focusTimeout = 0;
1010
+ editor.$highlightTagPending = true;
1011
+ return editor;
1012
+ };
1013
+ var AcePopup = /** @class */ (function () {
1014
+ function AcePopup(parentNode) {
1015
+ var el = dom.createElement("div");
1016
+ var popup = $singleLineEditor(el);
1017
+ if (parentNode) {
1018
+ parentNode.appendChild(el);
1019
+ }
1020
+ el.style.display = "none";
1021
+ popup.renderer.content.style.cursor = "default";
1022
+ popup.renderer.setStyle("ace_autocomplete");
1023
+ popup.renderer.$textLayer.element.setAttribute("role", popupAriaRole);
1024
+ popup.renderer.$textLayer.element.setAttribute("aria-roledescription", nls("autocomplete.popup.aria-roledescription", "Autocomplete suggestions"));
1025
+ popup.renderer.$textLayer.element.setAttribute("aria-label", nls("autocomplete.popup.aria-label", "Autocomplete suggestions"));
1026
+ popup.renderer.textarea.setAttribute("aria-hidden", "true");
1027
+ popup.setOption("displayIndentGuides", false);
1028
+ popup.setOption("dragDelay", 150);
1029
+ var noop = function () { };
1030
+ popup.focus = noop;
1031
+ popup.$isFocused = true;
1032
+ popup.renderer.$cursorLayer.restartTimer = noop;
1033
+ popup.renderer.$cursorLayer.element.style.opacity = "0";
1034
+ popup.renderer.$maxLines = 8;
1035
+ popup.renderer.$keepTextAreaAtCursor = false;
1036
+ popup.setHighlightActiveLine(false);
1037
+ popup.session.highlight("");
1038
+ popup.session.$searchHighlight.clazz = "ace_highlight-marker";
1039
+ popup.on("mousedown", function (e) {
1040
+ var pos = e.getDocumentPosition();
1041
+ popup.selection.moveToPosition(pos);
1042
+ selectionMarker.start.row = selectionMarker.end.row = pos.row;
1043
+ e.stop();
1044
+ });
1045
+ var lastMouseEvent;
1046
+ var hoverMarker = new Range(-1, 0, -1, Infinity);
1047
+ var selectionMarker = new Range(-1, 0, -1, Infinity);
1048
+ selectionMarker.id = popup.session.addMarker(selectionMarker, "ace_active-line", "fullLine");
1049
+ popup.setSelectOnHover = function (val) {
1050
+ if (!val) {
1051
+ hoverMarker.id = popup.session.addMarker(hoverMarker, "ace_line-hover", "fullLine");
1052
+ }
1053
+ else if (hoverMarker.id) {
1054
+ popup.session.removeMarker(hoverMarker.id);
1055
+ hoverMarker.id = null;
1056
+ }
1057
+ };
1058
+ popup.setSelectOnHover(false);
1059
+ popup.on("mousemove", function (e) {
1060
+ if (!lastMouseEvent) {
1061
+ lastMouseEvent = e;
1062
+ return;
1063
+ }
1064
+ if (lastMouseEvent.x == e.x && lastMouseEvent.y == e.y) {
1065
+ return;
1066
+ }
1067
+ lastMouseEvent = e;
1068
+ lastMouseEvent.scrollTop = popup.renderer.scrollTop;
1069
+ popup.isMouseOver = true;
1070
+ var row = lastMouseEvent.getDocumentPosition().row;
1071
+ if (hoverMarker.start.row != row) {
1072
+ if (!hoverMarker.id)
1073
+ popup.setRow(row);
1074
+ setHoverMarker(row);
1075
+ }
1076
+ });
1077
+ popup.renderer.on("beforeRender", function () {
1078
+ if (lastMouseEvent && hoverMarker.start.row != -1) {
1079
+ lastMouseEvent.$pos = null;
1080
+ var row = lastMouseEvent.getDocumentPosition().row;
1081
+ if (!hoverMarker.id)
1082
+ popup.setRow(row);
1083
+ setHoverMarker(row, true);
1084
+ }
1085
+ });
1086
+ popup.renderer.on("afterRender", function () {
1087
+ var row = popup.getRow();
1088
+ var t = popup.renderer.$textLayer;
1089
+ var selected = /** @type {HTMLElement|null} */ (t.element.childNodes[row - t.config.firstRow]);
1090
+ var el = document.activeElement; // Active element is textarea of main editor
1091
+ if (selected !== popup.selectedNode && popup.selectedNode) {
1092
+ dom.removeCssClass(popup.selectedNode, "ace_selected");
1093
+ el.removeAttribute("aria-activedescendant");
1094
+ popup.selectedNode.removeAttribute(ariaActiveState);
1095
+ popup.selectedNode.removeAttribute("id");
1096
+ }
1097
+ popup.selectedNode = selected;
1098
+ if (selected) {
1099
+ dom.addCssClass(selected, "ace_selected");
1100
+ var ariaId = getAriaId(row);
1101
+ selected.id = ariaId;
1102
+ t.element.setAttribute("aria-activedescendant", ariaId);
1103
+ el.setAttribute("aria-activedescendant", ariaId);
1104
+ selected.setAttribute("role", optionAriaRole);
1105
+ selected.setAttribute("aria-roledescription", nls("autocomplete.popup.item.aria-roledescription", "item"));
1106
+ selected.setAttribute("aria-label", popup.getData(row).caption || popup.getData(row).value);
1107
+ selected.setAttribute("aria-setsize", popup.data.length);
1108
+ selected.setAttribute("aria-posinset", row + 1);
1109
+ selected.setAttribute("aria-describedby", "doc-tooltip");
1110
+ selected.setAttribute(ariaActiveState, "true");
1111
+ }
1112
+ });
1113
+ var hideHoverMarker = function () { setHoverMarker(-1); };
1114
+ var setHoverMarker = function (row, suppressRedraw) {
1115
+ if (row !== hoverMarker.start.row) {
1116
+ hoverMarker.start.row = hoverMarker.end.row = row;
1117
+ if (!suppressRedraw)
1118
+ popup.session._emit("changeBackMarker");
1119
+ popup._emit("changeHoverMarker");
1120
+ }
1121
+ };
1122
+ popup.getHoveredRow = function () {
1123
+ return hoverMarker.start.row;
1124
+ };
1125
+ event.addListener(popup.container, "mouseout", function () {
1126
+ popup.isMouseOver = false;
1127
+ hideHoverMarker();
1128
+ });
1129
+ popup.on("hide", hideHoverMarker);
1130
+ popup.on("changeSelection", hideHoverMarker);
1131
+ popup.session.doc.getLength = function () {
1132
+ return popup.data.length;
1133
+ };
1134
+ popup.session.doc.getLine = function (i) {
1135
+ var data = popup.data[i];
1136
+ if (typeof data == "string")
1137
+ return data;
1138
+ return (data && data.value) || "";
1139
+ };
1140
+ var bgTokenizer = popup.session.bgTokenizer;
1141
+ bgTokenizer.$tokenizeRow = function (row) {
1142
+ var data = popup.data[row];
1143
+ var tokens = [];
1144
+ if (!data)
1145
+ return tokens;
1146
+ if (typeof data == "string")
1147
+ data = { value: data };
1148
+ var caption = data.caption || data.value || data.name;
1149
+ function addToken(value, className) {
1150
+ value && tokens.push({
1151
+ type: (data.className || "") + (className || ""),
1152
+ value: value
1153
+ });
1154
+ }
1155
+ var lower = caption.toLowerCase();
1156
+ var filterText = (popup.filterText || "").toLowerCase();
1157
+ var lastIndex = 0;
1158
+ var lastI = 0;
1159
+ for (var i = 0; i <= filterText.length; i++) {
1160
+ if (i != lastI && (data.matchMask & (1 << i) || i == filterText.length)) {
1161
+ var sub = filterText.slice(lastI, i);
1162
+ lastI = i;
1163
+ var index = lower.indexOf(sub, lastIndex);
1164
+ if (index == -1)
1165
+ continue;
1166
+ addToken(caption.slice(lastIndex, index), "");
1167
+ lastIndex = index + sub.length;
1168
+ addToken(caption.slice(index, lastIndex), "completion-highlight");
1169
+ }
1170
+ }
1171
+ addToken(caption.slice(lastIndex, caption.length), "");
1172
+ tokens.push({ type: "completion-spacer", value: " " });
1173
+ if (data.meta)
1174
+ tokens.push({ type: "completion-meta", value: data.meta });
1175
+ if (data.message)
1176
+ tokens.push({ type: "completion-message", value: data.message });
1177
+ return tokens;
1178
+ };
1179
+ bgTokenizer.$updateOnChange = noop;
1180
+ bgTokenizer.start = noop;
1181
+ popup.session.$computeWidth = function () {
1182
+ return this.screenWidth = 0;
1183
+ };
1184
+ popup.isOpen = false;
1185
+ popup.isTopdown = false;
1186
+ popup.autoSelect = true;
1187
+ popup.filterText = "";
1188
+ popup.isMouseOver = false;
1189
+ popup.data = [];
1190
+ popup.setData = function (list, filterText) {
1191
+ popup.filterText = filterText || "";
1192
+ popup.setValue(lang.stringRepeat("\n", list.length), -1);
1193
+ popup.data = list || [];
1194
+ popup.setRow(0);
1195
+ };
1196
+ popup.getData = function (row) {
1197
+ return popup.data[row];
1198
+ };
1199
+ popup.getRow = function () {
1200
+ return selectionMarker.start.row;
1201
+ };
1202
+ popup.setRow = function (line) {
1203
+ line = Math.max(this.autoSelect ? 0 : -1, Math.min(this.data.length - 1, line));
1204
+ if (selectionMarker.start.row != line) {
1205
+ popup.selection.clearSelection();
1206
+ selectionMarker.start.row = selectionMarker.end.row = line || 0;
1207
+ popup.session._emit("changeBackMarker");
1208
+ popup.moveCursorTo(line || 0, 0);
1209
+ if (popup.isOpen)
1210
+ popup._signal("select");
1211
+ }
1212
+ };
1213
+ popup.on("changeSelection", function () {
1214
+ if (popup.isOpen)
1215
+ popup.setRow(popup.selection.lead.row);
1216
+ popup.renderer.scrollCursorIntoView();
1217
+ });
1218
+ popup.hide = function () {
1219
+ this.container.style.display = "none";
1220
+ popup.anchorPos = null;
1221
+ popup.anchor = null;
1222
+ if (popup.isOpen) {
1223
+ popup.isOpen = false;
1224
+ this._signal("hide");
1225
+ }
1226
+ };
1227
+ popup.tryShow = function (pos, lineHeight, anchor, forceShow) {
1228
+ if (!forceShow && popup.isOpen && popup.anchorPos && popup.anchor &&
1229
+ popup.anchorPos.top === pos.top && popup.anchorPos.left === pos.left &&
1230
+ popup.anchor === anchor) {
1231
+ return true;
1232
+ }
1233
+ var el = this.container;
1234
+ var screenHeight = window.innerHeight;
1235
+ var screenWidth = window.innerWidth;
1236
+ var renderer = this.renderer;
1237
+ var maxH = renderer.$maxLines * lineHeight * 1.4;
1238
+ var dims = { top: 0, bottom: 0, left: 0 };
1239
+ var spaceBelow = screenHeight - pos.top - 3 * this.$borderSize - lineHeight;
1240
+ var spaceAbove = pos.top - 3 * this.$borderSize;
1241
+ if (!anchor) {
1242
+ if (spaceAbove <= spaceBelow || spaceBelow >= maxH) {
1243
+ anchor = "bottom";
1244
+ }
1245
+ else {
1246
+ anchor = "top";
1247
+ }
1248
+ }
1249
+ if (anchor === "top") {
1250
+ dims.bottom = pos.top - this.$borderSize;
1251
+ dims.top = dims.bottom - maxH;
1252
+ }
1253
+ else if (anchor === "bottom") {
1254
+ dims.top = pos.top + lineHeight + this.$borderSize;
1255
+ dims.bottom = dims.top + maxH;
1256
+ }
1257
+ var fitsX = dims.top >= 0 && dims.bottom <= screenHeight;
1258
+ if (!forceShow && !fitsX) {
1259
+ return false;
1260
+ }
1261
+ if (!fitsX) {
1262
+ if (anchor === "top") {
1263
+ renderer.$maxPixelHeight = spaceAbove;
1264
+ }
1265
+ else {
1266
+ renderer.$maxPixelHeight = spaceBelow;
1267
+ }
1268
+ }
1269
+ else {
1270
+ renderer.$maxPixelHeight = null;
1271
+ }
1272
+ if (anchor === "top") {
1273
+ el.style.top = "";
1274
+ el.style.bottom = (screenHeight - dims.bottom) + "px";
1275
+ popup.isTopdown = false;
1276
+ }
1277
+ else {
1278
+ el.style.top = dims.top + "px";
1279
+ el.style.bottom = "";
1280
+ popup.isTopdown = true;
1281
+ }
1282
+ el.style.display = "";
1283
+ var left = pos.left;
1284
+ if (left + el.offsetWidth > screenWidth)
1285
+ left = screenWidth - el.offsetWidth;
1286
+ el.style.left = left + "px";
1287
+ el.style.right = "";
1288
+ if (!popup.isOpen) {
1289
+ popup.isOpen = true;
1290
+ this._signal("show");
1291
+ lastMouseEvent = null;
1292
+ }
1293
+ popup.anchorPos = pos;
1294
+ popup.anchor = anchor;
1295
+ return true;
1296
+ };
1297
+ popup.show = function (pos, lineHeight, topdownOnly) {
1298
+ this.tryShow(pos, lineHeight, topdownOnly ? "bottom" : undefined, true);
1299
+ };
1300
+ popup.goTo = function (where) {
1301
+ var row = this.getRow();
1302
+ var max = this.session.getLength() - 1;
1303
+ switch (where) {
1304
+ case "up":
1305
+ row = row <= 0 ? max : row - 1;
1306
+ break;
1307
+ case "down":
1308
+ row = row >= max ? -1 : row + 1;
1309
+ break;
1310
+ case "start":
1311
+ row = 0;
1312
+ break;
1313
+ case "end":
1314
+ row = max;
1315
+ break;
1316
+ }
1317
+ this.setRow(row);
1318
+ };
1319
+ popup.getTextLeftOffset = function () {
1320
+ return this.$borderSize + this.renderer.$padding + this.$imageSize;
1321
+ };
1322
+ popup.$imageSize = 0;
1323
+ popup.$borderSize = 1;
1324
+ return popup;
1325
+ }
1326
+ return AcePopup;
1327
+ }());
1328
+ dom.importCssString("\n.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line {\n background-color: #CAD6FA;\n z-index: 1;\n}\n.ace_dark.ace_editor.ace_autocomplete .ace_marker-layer .ace_active-line {\n background-color: #3a674e;\n}\n.ace_editor.ace_autocomplete .ace_line-hover {\n border: 1px solid #abbffe;\n margin-top: -1px;\n background: rgba(233,233,253,0.4);\n position: absolute;\n z-index: 2;\n}\n.ace_dark.ace_editor.ace_autocomplete .ace_line-hover {\n border: 1px solid rgba(109, 150, 13, 0.8);\n background: rgba(58, 103, 78, 0.62);\n}\n.ace_completion-meta {\n opacity: 0.5;\n margin-left: 0.9em;\n}\n.ace_completion-message {\n margin-left: 0.9em;\n color: blue;\n}\n.ace_editor.ace_autocomplete .ace_completion-highlight{\n color: #2d69c7;\n}\n.ace_dark.ace_editor.ace_autocomplete .ace_completion-highlight{\n color: #93ca12;\n}\n.ace_editor.ace_autocomplete {\n width: 300px;\n z-index: 200000;\n border: 1px lightgray solid;\n position: fixed;\n box-shadow: 2px 3px 5px rgba(0,0,0,.2);\n line-height: 1.4;\n background: #fefefe;\n color: #111;\n}\n.ace_dark.ace_editor.ace_autocomplete {\n border: 1px #484747 solid;\n box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.51);\n line-height: 1.4;\n background: #25282c;\n color: #c1c1c1;\n}\n.ace_autocomplete .ace_text-layer {\n width: calc(100% - 8px);\n}\n.ace_autocomplete .ace_line {\n display: flex;\n align-items: center;\n}\n.ace_autocomplete .ace_line > * {\n min-width: 0;\n flex: 0 0 auto;\n}\n.ace_autocomplete .ace_line .ace_ {\n flex: 0 1 auto;\n overflow: hidden;\n text-overflow: ellipsis;\n}\n.ace_autocomplete .ace_completion-spacer {\n flex: 1;\n}\n.ace_autocomplete.ace_loading:after {\n content: \"\";\n position: absolute;\n top: 0px;\n height: 2px;\n width: 8%;\n background: blue;\n z-index: 100;\n animation: ace_progress 3s infinite linear;\n animation-delay: 300ms;\n transform: translateX(-100%) scaleX(1);\n}\n@keyframes ace_progress {\n 0% { transform: translateX(-100%) scaleX(1) }\n 50% { transform: translateX(625%) scaleX(2) } \n 100% { transform: translateX(1500%) scaleX(3) } \n}\n@media (prefers-reduced-motion) {\n .ace_autocomplete.ace_loading:after {\n transform: translateX(625%) scaleX(2);\n animation: none;\n }\n}\n", "autocompletion.css", false);
1329
+ exports.AcePopup = AcePopup;
1330
+ exports.$singleLineEditor = $singleLineEditor;
1331
+ exports.getAriaId = getAriaId;
1332
+
1333
+ });
1334
+
1335
+ ace.define("ace/autocomplete/inline_screenreader",["require","exports","module"], function(require, exports, module){"use strict";
1336
+ var AceInlineScreenReader = /** @class */ (function () {
1337
+ function AceInlineScreenReader(editor) {
1338
+ this.editor = editor;
1339
+ this.screenReaderDiv = document.createElement("div");
1340
+ this.screenReaderDiv.classList.add("ace_screenreader-only");
1341
+ this.editor.container.appendChild(this.screenReaderDiv);
1342
+ }
1343
+ AceInlineScreenReader.prototype.setScreenReaderContent = function (content) {
1344
+ if (!this.popup && this.editor.completer && /**@type{import("../autocomplete").Autocomplete}*/ (this.editor.completer).popup) {
1345
+ this.popup = /**@type{import("../autocomplete").Autocomplete}*/ (this.editor.completer).popup;
1346
+ this.popup.renderer.on("afterRender", function () {
1347
+ var row = this.popup.getRow();
1348
+ var t = this.popup.renderer.$textLayer;
1349
+ var selected = t.element.childNodes[row - t.config.firstRow];
1350
+ if (selected) {
1351
+ var idString = "doc-tooltip ";
1352
+ for (var lineIndex = 0; lineIndex < this._lines.length; lineIndex++) {
1353
+ idString += "ace-inline-screenreader-line-".concat(lineIndex, " ");
1354
+ }
1355
+ selected.setAttribute("aria-describedby", idString);
1356
+ }
1357
+ }.bind(this));
1358
+ }
1359
+ while (this.screenReaderDiv.firstChild) {
1360
+ this.screenReaderDiv.removeChild(this.screenReaderDiv.firstChild);
1361
+ }
1362
+ this._lines = content.split(/\r\n|\r|\n/);
1363
+ var codeElement = this.createCodeBlock();
1364
+ this.screenReaderDiv.appendChild(codeElement);
1365
+ };
1366
+ AceInlineScreenReader.prototype.destroy = function () {
1367
+ this.screenReaderDiv.remove();
1368
+ };
1369
+ AceInlineScreenReader.prototype.createCodeBlock = function () {
1370
+ var container = document.createElement("pre");
1371
+ container.setAttribute("id", "ace-inline-screenreader");
1372
+ for (var lineIndex = 0; lineIndex < this._lines.length; lineIndex++) {
1373
+ var codeElement = document.createElement("code");
1374
+ codeElement.setAttribute("id", "ace-inline-screenreader-line-".concat(lineIndex));
1375
+ var line = document.createTextNode(this._lines[lineIndex]);
1376
+ codeElement.appendChild(line);
1377
+ container.appendChild(codeElement);
1378
+ }
1379
+ return container;
1380
+ };
1381
+ return AceInlineScreenReader;
1382
+ }());
1383
+ exports.AceInlineScreenReader = AceInlineScreenReader;
1384
+
1385
+ });
1386
+
1387
+ ace.define("ace/autocomplete/inline",["require","exports","module","ace/snippets","ace/autocomplete/inline_screenreader"], function(require, exports, module){"use strict";
1388
+ var snippetManager = require("../snippets").snippetManager;
1389
+ var AceInlineScreenReader = require("./inline_screenreader").AceInlineScreenReader;
1390
+ var AceInline = /** @class */ (function () {
1391
+ function AceInline() {
1392
+ this.editor = null;
1393
+ }
1394
+ AceInline.prototype.show = function (editor, completion, prefix) {
1395
+ prefix = prefix || "";
1396
+ if (editor && this.editor && this.editor !== editor) {
1397
+ this.hide();
1398
+ this.editor = null;
1399
+ this.inlineScreenReader = null;
1400
+ }
1401
+ if (!editor || !completion) {
1402
+ return false;
1403
+ }
1404
+ if (!this.inlineScreenReader) {
1405
+ this.inlineScreenReader = new AceInlineScreenReader(editor);
1406
+ }
1407
+ var displayText = completion.snippet ? snippetManager.getDisplayTextForSnippet(editor, completion.snippet) : completion.value;
1408
+ if (completion.hideInlinePreview || !displayText || !displayText.startsWith(prefix)) {
1409
+ return false;
1410
+ }
1411
+ this.editor = editor;
1412
+ this.inlineScreenReader.setScreenReaderContent(displayText);
1413
+ displayText = displayText.slice(prefix.length);
1414
+ if (displayText === "") {
1415
+ editor.removeGhostText();
1416
+ }
1417
+ else {
1418
+ editor.setGhostText(displayText);
1419
+ }
1420
+ return true;
1421
+ };
1422
+ AceInline.prototype.isOpen = function () {
1423
+ if (!this.editor) {
1424
+ return false;
1425
+ }
1426
+ return !!this.editor.renderer.$ghostText;
1427
+ };
1428
+ AceInline.prototype.hide = function () {
1429
+ if (!this.editor) {
1430
+ return false;
1431
+ }
1432
+ this.editor.removeGhostText();
1433
+ return true;
1434
+ };
1435
+ AceInline.prototype.destroy = function () {
1436
+ this.hide();
1437
+ this.editor = null;
1438
+ if (this.inlineScreenReader) {
1439
+ this.inlineScreenReader.destroy();
1440
+ this.inlineScreenReader = null;
1441
+ }
1442
+ };
1443
+ return AceInline;
1444
+ }());
1445
+ exports.AceInline = AceInline;
1446
+
1447
+ });
1448
+
1449
+ ace.define("ace/autocomplete/util",["require","exports","module"], function(require, exports, module){"use strict";
1450
+ exports.parForEach = function (array, fn, callback) {
1451
+ var completed = 0;
1452
+ var arLength = array.length;
1453
+ if (arLength === 0)
1454
+ callback();
1455
+ for (var i = 0; i < arLength; i++) {
1456
+ fn(array[i], function (result, err) {
1457
+ completed++;
1458
+ if (completed === arLength)
1459
+ callback(result, err);
1460
+ });
1461
+ }
1462
+ };
1463
+ var ID_REGEX = /[a-zA-Z_0-9\$\-\u00A2-\u2000\u2070-\uFFFF]/;
1464
+ exports.retrievePrecedingIdentifier = function (text, pos, regex) {
1465
+ regex = regex || ID_REGEX;
1466
+ var buf = [];
1467
+ for (var i = pos - 1; i >= 0; i--) {
1468
+ if (regex.test(text[i]))
1469
+ buf.push(text[i]);
1470
+ else
1471
+ break;
1472
+ }
1473
+ return buf.reverse().join("");
1474
+ };
1475
+ exports.retrieveFollowingIdentifier = function (text, pos, regex) {
1476
+ regex = regex || ID_REGEX;
1477
+ var buf = [];
1478
+ for (var i = pos; i < text.length; i++) {
1479
+ if (regex.test(text[i]))
1480
+ buf.push(text[i]);
1481
+ else
1482
+ break;
1483
+ }
1484
+ return buf;
1485
+ };
1486
+ exports.getCompletionPrefix = function (editor) {
1487
+ var pos = editor.getCursorPosition();
1488
+ var line = editor.session.getLine(pos.row);
1489
+ var prefix;
1490
+ editor.completers.forEach(function (completer) {
1491
+ if (completer.identifierRegexps) {
1492
+ completer.identifierRegexps.forEach(function (identifierRegex) {
1493
+ if (!prefix && identifierRegex)
1494
+ prefix = this.retrievePrecedingIdentifier(line, pos.column, identifierRegex);
1495
+ }.bind(this));
1496
+ }
1497
+ }.bind(this));
1498
+ return prefix || this.retrievePrecedingIdentifier(line, pos.column);
1499
+ };
1500
+ exports.triggerAutocomplete = function (editor, previousChar) {
1501
+ var previousChar = previousChar == null
1502
+ ? editor.session.getPrecedingCharacter()
1503
+ : previousChar;
1504
+ return editor.completers.some(function (completer) {
1505
+ if (completer.triggerCharacters && Array.isArray(completer.triggerCharacters)) {
1506
+ return completer.triggerCharacters.includes(previousChar);
1507
+ }
1508
+ });
1509
+ };
1510
+
1511
+ });
1512
+
1513
+ ace.define("ace/autocomplete",["require","exports","module","ace/keyboard/hash_handler","ace/autocomplete/popup","ace/autocomplete/inline","ace/autocomplete/popup","ace/autocomplete/util","ace/lib/lang","ace/lib/dom","ace/snippets","ace/config","ace/lib/event","ace/lib/scroll"], function(require, exports, module){"use strict";
1514
+ var HashHandler = require("./keyboard/hash_handler").HashHandler;
1515
+ var AcePopup = require("./autocomplete/popup").AcePopup;
1516
+ var AceInline = require("./autocomplete/inline").AceInline;
1517
+ var getAriaId = require("./autocomplete/popup").getAriaId;
1518
+ var util = require("./autocomplete/util");
1519
+ var lang = require("./lib/lang");
1520
+ var dom = require("./lib/dom");
1521
+ var snippetManager = require("./snippets").snippetManager;
1522
+ var config = require("./config");
1523
+ var event = require("./lib/event");
1524
+ var preventParentScroll = require("./lib/scroll").preventParentScroll;
1525
+ var destroyCompleter = function (e, editor) {
1526
+ editor.completer && editor.completer.destroy();
1527
+ };
1528
+ var Autocomplete = /** @class */ (function () {
1529
+ function Autocomplete() {
1530
+ this.autoInsert = false;
1531
+ this.autoSelect = true;
1532
+ this.autoShown = false;
1533
+ this.exactMatch = false;
1534
+ this.inlineEnabled = false;
1535
+ this.keyboardHandler = new HashHandler();
1536
+ this.keyboardHandler.bindKeys(this.commands);
1537
+ this.parentNode = null;
1538
+ this.setSelectOnHover = false;
1539
+ this.hasSeen = new Set();
1540
+ this.showLoadingState = false;
1541
+ this.stickySelectionDelay = 500;
1542
+ this.blurListener = this.blurListener.bind(this);
1543
+ this.changeListener = this.changeListener.bind(this);
1544
+ this.mousedownListener = this.mousedownListener.bind(this);
1545
+ this.mousewheelListener = this.mousewheelListener.bind(this);
1546
+ this.onLayoutChange = this.onLayoutChange.bind(this);
1547
+ this.changeTimer = lang.delayedCall(function () {
1548
+ this.updateCompletions(true);
1549
+ }.bind(this));
1550
+ this.tooltipTimer = lang.delayedCall(this.updateDocTooltip.bind(this), 50);
1551
+ this.popupTimer = lang.delayedCall(this.$updatePopupPosition.bind(this), 50);
1552
+ this.stickySelectionTimer = lang.delayedCall(function () {
1553
+ this.stickySelection = true;
1554
+ }.bind(this), this.stickySelectionDelay);
1555
+ this.$firstOpenTimer = lang.delayedCall(/**@this{Autocomplete}*/ function () {
1556
+ var initialPosition = this.completionProvider && this.completionProvider.initialPosition;
1557
+ if (this.autoShown || (this.popup && this.popup.isOpen) || !initialPosition || this.editor.completers.length === 0)
1558
+ return;
1559
+ this.completions = new FilteredList(Autocomplete.completionsForLoading);
1560
+ this.openPopup(this.editor, initialPosition.prefix, false);
1561
+ this.popup.renderer.setStyle("ace_loading", true);
1562
+ }.bind(this), this.stickySelectionDelay);
1563
+ }
1564
+ Object.defineProperty(Autocomplete, "completionsForLoading", {
1565
+ get: function () {
1566
+ return [{
1567
+ caption: config.nls("autocomplete.loading", "Loading..."),
1568
+ value: ""
1569
+ }];
1570
+ },
1571
+ enumerable: false,
1572
+ configurable: true
1573
+ });
1574
+ Autocomplete.prototype.$init = function () {
1575
+ this.popup = new AcePopup(this.parentNode || document.body || document.documentElement);
1576
+ this.popup.on("click", function (e) {
1577
+ this.insertMatch();
1578
+ e.stop();
1579
+ }.bind(this));
1580
+ this.popup.focus = this.editor.focus.bind(this.editor);
1581
+ this.popup.on("show", this.$onPopupShow.bind(this));
1582
+ this.popup.on("hide", this.$onHidePopup.bind(this));
1583
+ this.popup.on("select", this.$onPopupChange.bind(this));
1584
+ event.addListener(this.popup.container, "mouseout", this.mouseOutListener.bind(this));
1585
+ this.popup.on("changeHoverMarker", this.tooltipTimer.bind(null, null));
1586
+ this.popup.renderer.on("afterRender", this.$onPopupRender.bind(this));
1587
+ return this.popup;
1588
+ };
1589
+ Autocomplete.prototype.$initInline = function () {
1590
+ if (!this.inlineEnabled || this.inlineRenderer)
1591
+ return;
1592
+ this.inlineRenderer = new AceInline();
1593
+ return this.inlineRenderer;
1594
+ };
1595
+ Autocomplete.prototype.getPopup = function () {
1596
+ return this.popup || this.$init();
1597
+ };
1598
+ Autocomplete.prototype.$onHidePopup = function () {
1599
+ if (this.inlineRenderer) {
1600
+ this.inlineRenderer.hide();
1601
+ }
1602
+ this.hideDocTooltip();
1603
+ this.stickySelectionTimer.cancel();
1604
+ this.popupTimer.cancel();
1605
+ this.stickySelection = false;
1606
+ };
1607
+ Autocomplete.prototype.$seen = function (completion) {
1608
+ if (!this.hasSeen.has(completion) && completion && completion.completer && completion.completer.onSeen && typeof completion.completer.onSeen === "function") {
1609
+ completion.completer.onSeen(this.editor, completion);
1610
+ this.hasSeen.add(completion);
1611
+ }
1612
+ };
1613
+ Autocomplete.prototype.$onPopupChange = function (hide) {
1614
+ if (this.inlineRenderer && this.inlineEnabled) {
1615
+ var completion = hide ? null : this.popup.getData(this.popup.getRow());
1616
+ this.$updateGhostText(completion);
1617
+ if (this.popup.isMouseOver && this.setSelectOnHover) {
1618
+ this.tooltipTimer.call(null, null);
1619
+ return;
1620
+ }
1621
+ this.popupTimer.schedule();
1622
+ this.tooltipTimer.schedule();
1623
+ }
1624
+ else {
1625
+ this.popupTimer.call(null, null);
1626
+ this.tooltipTimer.call(null, null);
1627
+ }
1628
+ };
1629
+ Autocomplete.prototype.$updateGhostText = function (completion) {
1630
+ var row = this.base.row;
1631
+ var column = this.base.column;
1632
+ var cursorColumn = this.editor.getCursorPosition().column;
1633
+ var prefix = this.editor.session.getLine(row).slice(column, cursorColumn);
1634
+ if (!this.inlineRenderer.show(this.editor, completion, prefix)) {
1635
+ this.inlineRenderer.hide();
1636
+ }
1637
+ else {
1638
+ this.$seen(completion);
1639
+ }
1640
+ };
1641
+ Autocomplete.prototype.$onPopupRender = function () {
1642
+ var inlineEnabled = this.inlineRenderer && this.inlineEnabled;
1643
+ if (this.completions && this.completions.filtered && this.completions.filtered.length > 0) {
1644
+ for (var i = this.popup.getFirstVisibleRow(); i <= this.popup.getLastVisibleRow(); i++) {
1645
+ var completion = this.popup.getData(i);
1646
+ if (completion && (!inlineEnabled || completion.hideInlinePreview)) {
1647
+ this.$seen(completion);
1648
+ }
1649
+ }
1650
+ }
1651
+ };
1652
+ Autocomplete.prototype.$onPopupShow = function (hide) {
1653
+ this.$onPopupChange(hide);
1654
+ this.stickySelection = false;
1655
+ if (this.stickySelectionDelay >= 0)
1656
+ this.stickySelectionTimer.schedule(this.stickySelectionDelay);
1657
+ };
1658
+ Autocomplete.prototype.observeLayoutChanges = function () {
1659
+ if (this.$elements || !this.editor)
1660
+ return;
1661
+ window.addEventListener("resize", this.onLayoutChange, { passive: true });
1662
+ window.addEventListener("wheel", this.mousewheelListener);
1663
+ var el = this.editor.container.parentNode;
1664
+ var elements = [];
1665
+ while (el) {
1666
+ elements.push(el);
1667
+ el.addEventListener("scroll", this.onLayoutChange, { passive: true });
1668
+ el = el.parentNode;
1669
+ }
1670
+ this.$elements = elements;
1671
+ };
1672
+ Autocomplete.prototype.unObserveLayoutChanges = function () {
1673
+ var _this = this;
1674
+ window.removeEventListener("resize", this.onLayoutChange, { passive: true });
1675
+ window.removeEventListener("wheel", this.mousewheelListener);
1676
+ this.$elements && this.$elements.forEach(function (el) {
1677
+ el.removeEventListener("scroll", _this.onLayoutChange, { passive: true });
1678
+ });
1679
+ this.$elements = null;
1680
+ };
1681
+ Autocomplete.prototype.onLayoutChange = function () {
1682
+ if (!this.popup.isOpen)
1683
+ return this.unObserveLayoutChanges();
1684
+ this.$updatePopupPosition();
1685
+ this.updateDocTooltip();
1686
+ };
1687
+ Autocomplete.prototype.$updatePopupPosition = function () {
1688
+ var editor = this.editor;
1689
+ var renderer = editor.renderer;
1690
+ var lineHeight = renderer.layerConfig.lineHeight;
1691
+ var pos = renderer.$cursorLayer.getPixelPosition(this.base, true);
1692
+ pos.left -= this.popup.getTextLeftOffset();
1693
+ var rect = editor.container.getBoundingClientRect();
1694
+ pos.top += rect.top - renderer.layerConfig.offset;
1695
+ pos.left += rect.left - editor.renderer.scrollLeft;
1696
+ pos.left += renderer.gutterWidth;
1697
+ var posGhostText = {
1698
+ top: pos.top,
1699
+ left: pos.left
1700
+ };
1701
+ if (renderer.$ghostText && renderer.$ghostTextWidget) {
1702
+ if (this.base.row === renderer.$ghostText.position.row) {
1703
+ posGhostText.top += renderer.$ghostTextWidget.el.offsetHeight;
1704
+ }
1705
+ }
1706
+ var editorContainerBottom = editor.container.getBoundingClientRect().bottom - lineHeight;
1707
+ var lowestPosition = editorContainerBottom < posGhostText.top ?
1708
+ { top: editorContainerBottom, left: posGhostText.left } :
1709
+ posGhostText;
1710
+ if (this.popup.tryShow(lowestPosition, lineHeight, "bottom")) {
1711
+ return;
1712
+ }
1713
+ if (this.popup.tryShow(pos, lineHeight, "top")) {
1714
+ return;
1715
+ }
1716
+ this.popup.show(pos, lineHeight);
1717
+ };
1718
+ Autocomplete.prototype.openPopup = function (editor, prefix, keepPopupPosition) {
1719
+ this.$firstOpenTimer.cancel();
1720
+ if (!this.popup)
1721
+ this.$init();
1722
+ if (this.inlineEnabled && !this.inlineRenderer)
1723
+ this.$initInline();
1724
+ this.popup.autoSelect = this.autoSelect;
1725
+ this.popup.setSelectOnHover(this.setSelectOnHover);
1726
+ var oldRow = this.popup.getRow();
1727
+ var previousSelectedItem = this.popup.data[oldRow];
1728
+ this.popup.setData(this.completions.filtered, this.completions.filterText);
1729
+ if (this.editor.textInput.setAriaOptions) {
1730
+ this.editor.textInput.setAriaOptions({
1731
+ activeDescendant: getAriaId(this.popup.getRow()),
1732
+ inline: this.inlineEnabled
1733
+ });
1734
+ }
1735
+ editor.keyBinding.addKeyboardHandler(this.keyboardHandler);
1736
+ var newRow;
1737
+ if (this.stickySelection)
1738
+ newRow = this.popup.data.indexOf(previousSelectedItem);
1739
+ if (!newRow || newRow === -1)
1740
+ newRow = 0;
1741
+ this.popup.setRow(this.autoSelect ? newRow : -1);
1742
+ if (newRow === oldRow && previousSelectedItem !== this.completions.filtered[newRow])
1743
+ this.$onPopupChange();
1744
+ var inlineEnabled = this.inlineRenderer && this.inlineEnabled;
1745
+ if (newRow === oldRow && inlineEnabled) {
1746
+ var completion = this.popup.getData(this.popup.getRow());
1747
+ this.$updateGhostText(completion);
1748
+ }
1749
+ if (!keepPopupPosition) {
1750
+ this.popup.setTheme(editor.getTheme());
1751
+ this.popup.setFontSize(editor.getFontSize());
1752
+ this.$updatePopupPosition();
1753
+ if (this.tooltipNode) {
1754
+ this.updateDocTooltip();
1755
+ }
1756
+ }
1757
+ this.changeTimer.cancel();
1758
+ this.observeLayoutChanges();
1759
+ };
1760
+ Autocomplete.prototype.detach = function () {
1761
+ if (this.editor) {
1762
+ this.editor.keyBinding.removeKeyboardHandler(this.keyboardHandler);
1763
+ this.editor.off("changeSelection", this.changeListener);
1764
+ this.editor.off("blur", this.blurListener);
1765
+ this.editor.off("mousedown", this.mousedownListener);
1766
+ this.editor.off("mousewheel", this.mousewheelListener);
1767
+ }
1768
+ this.$firstOpenTimer.cancel();
1769
+ this.changeTimer.cancel();
1770
+ this.hideDocTooltip();
1771
+ if (this.completionProvider) {
1772
+ this.completionProvider.detach();
1773
+ }
1774
+ if (this.popup && this.popup.isOpen)
1775
+ this.popup.hide();
1776
+ if (this.popup && this.popup.renderer) {
1777
+ this.popup.renderer.off("afterRender", this.$onPopupRender);
1778
+ }
1779
+ if (this.base)
1780
+ this.base.detach();
1781
+ this.activated = false;
1782
+ this.completionProvider = this.completions = this.base = null;
1783
+ this.unObserveLayoutChanges();
1784
+ };
1785
+ Autocomplete.prototype.changeListener = function (e) {
1786
+ var cursor = this.editor.selection.lead;
1787
+ if (cursor.row != this.base.row || cursor.column < this.base.column) {
1788
+ this.detach();
1789
+ }
1790
+ if (this.activated)
1791
+ this.changeTimer.schedule();
1792
+ else
1793
+ this.detach();
1794
+ };
1795
+ Autocomplete.prototype.blurListener = function (e) {
1796
+ var el = document.activeElement;
1797
+ var text = this.editor.textInput.getElement();
1798
+ var fromTooltip = e.relatedTarget && this.tooltipNode && this.tooltipNode.contains(e.relatedTarget);
1799
+ var container = this.popup && this.popup.container;
1800
+ if (el != text && el.parentNode != container && !fromTooltip
1801
+ && el != this.tooltipNode && e.relatedTarget != text) {
1802
+ this.detach();
1803
+ }
1804
+ };
1805
+ Autocomplete.prototype.mousedownListener = function (e) {
1806
+ this.detach();
1807
+ };
1808
+ Autocomplete.prototype.mousewheelListener = function (e) {
1809
+ if (this.popup && !this.popup.isMouseOver)
1810
+ this.detach();
1811
+ };
1812
+ Autocomplete.prototype.mouseOutListener = function (e) {
1813
+ if (this.popup.isOpen)
1814
+ this.$updatePopupPosition();
1815
+ };
1816
+ Autocomplete.prototype.goTo = function (where) {
1817
+ this.popup.goTo(where);
1818
+ };
1819
+ Autocomplete.prototype.insertMatch = function (data, options) {
1820
+ if (!data)
1821
+ data = this.popup.getData(this.popup.getRow());
1822
+ if (!data)
1823
+ return false;
1824
+ if (data.value === "") // Explicitly given nothing to insert, e.g. "No suggestion state"
1825
+ return this.detach();
1826
+ var completions = this.completions;
1827
+ var result = this.getCompletionProvider().insertMatch(this.editor, data, completions.filterText, options);
1828
+ if (this.completions == completions)
1829
+ this.detach();
1830
+ return result;
1831
+ };
1832
+ Autocomplete.prototype.showPopup = function (editor, options) {
1833
+ if (this.editor)
1834
+ this.detach();
1835
+ this.activated = true;
1836
+ this.editor = editor;
1837
+ if (editor.completer != this) {
1838
+ if (editor.completer)
1839
+ editor.completer.detach();
1840
+ editor.completer = this;
1841
+ }
1842
+ editor.on("changeSelection", this.changeListener);
1843
+ editor.on("blur", this.blurListener);
1844
+ editor.on("mousedown", this.mousedownListener);
1845
+ editor.on("mousewheel", this.mousewheelListener);
1846
+ this.updateCompletions(false, options);
1847
+ };
1848
+ Autocomplete.prototype.getCompletionProvider = function (initialPosition) {
1849
+ if (!this.completionProvider)
1850
+ this.completionProvider = new CompletionProvider(initialPosition);
1851
+ return this.completionProvider;
1852
+ };
1853
+ Autocomplete.prototype.gatherCompletions = function (editor, callback) {
1854
+ return this.getCompletionProvider().gatherCompletions(editor, callback);
1855
+ };
1856
+ Autocomplete.prototype.updateCompletions = function (keepPopupPosition, options) {
1857
+ if (keepPopupPosition && this.base && this.completions) {
1858
+ var pos = this.editor.getCursorPosition();
1859
+ var prefix = this.editor.session.getTextRange({ start: this.base, end: pos });
1860
+ if (prefix == this.completions.filterText)
1861
+ return;
1862
+ this.completions.setFilter(prefix);
1863
+ if (!this.completions.filtered.length)
1864
+ return this.detach();
1865
+ if (this.completions.filtered.length == 1
1866
+ && this.completions.filtered[0].value == prefix
1867
+ && !this.completions.filtered[0].snippet)
1868
+ return this.detach();
1869
+ this.openPopup(this.editor, prefix, keepPopupPosition);
1870
+ return;
1871
+ }
1872
+ if (options && options.matches) {
1873
+ var pos = this.editor.getSelectionRange().start;
1874
+ this.base = this.editor.session.doc.createAnchor(pos.row, pos.column);
1875
+ this.base.$insertRight = true;
1876
+ this.completions = new FilteredList(options.matches);
1877
+ this.getCompletionProvider().completions = this.completions;
1878
+ return this.openPopup(this.editor, "", keepPopupPosition);
1879
+ }
1880
+ var session = this.editor.getSession();
1881
+ var pos = this.editor.getCursorPosition();
1882
+ var prefix = util.getCompletionPrefix(this.editor);
1883
+ this.base = session.doc.createAnchor(pos.row, pos.column - prefix.length);
1884
+ this.base.$insertRight = true;
1885
+ var completionOptions = {
1886
+ exactMatch: this.exactMatch,
1887
+ ignoreCaption: this.ignoreCaption
1888
+ };
1889
+ this.getCompletionProvider({
1890
+ prefix: prefix,
1891
+ pos: pos
1892
+ }).provideCompletions(this.editor, completionOptions,
1893
+ function (err, completions, finished) {
1894
+ var filtered = completions.filtered;
1895
+ var prefix = util.getCompletionPrefix(this.editor);
1896
+ this.$firstOpenTimer.cancel();
1897
+ if (finished) {
1898
+ if (!filtered.length) {
1899
+ var emptyMessage = !this.autoShown && this.emptyMessage;
1900
+ if (typeof emptyMessage == "function")
1901
+ emptyMessage = this.emptyMessage(prefix);
1902
+ if (emptyMessage) {
1903
+ var completionsForEmpty = [{
1904
+ caption: emptyMessage,
1905
+ value: ""
1906
+ }
1907
+ ];
1908
+ this.completions = new FilteredList(completionsForEmpty);
1909
+ this.openPopup(this.editor, prefix, keepPopupPosition);
1910
+ this.popup.renderer.setStyle("ace_loading", false);
1911
+ this.popup.renderer.setStyle("ace_empty-message", true);
1912
+ return;
1913
+ }
1914
+ return this.detach();
1915
+ }
1916
+ if (filtered.length == 1 && filtered[0].value == prefix
1917
+ && !filtered[0].snippet)
1918
+ return this.detach();
1919
+ if (this.autoInsert && !this.autoShown && filtered.length == 1)
1920
+ return this.insertMatch(filtered[0]);
1921
+ }
1922
+ this.completions = !finished && this.showLoadingState ?
1923
+ new FilteredList(Autocomplete.completionsForLoading.concat(filtered), completions.filterText) :
1924
+ completions;
1925
+ this.openPopup(this.editor, prefix, keepPopupPosition);
1926
+ this.popup.renderer.setStyle("ace_empty-message", false);
1927
+ this.popup.renderer.setStyle("ace_loading", !finished);
1928
+ }.bind(this));
1929
+ if (this.showLoadingState && !this.autoShown && !(this.popup && this.popup.isOpen)) {
1930
+ this.$firstOpenTimer.delay(this.stickySelectionDelay / 2);
1931
+ }
1932
+ };
1933
+ Autocomplete.prototype.cancelContextMenu = function () {
1934
+ this.editor.$mouseHandler.cancelContextMenu();
1935
+ };
1936
+ Autocomplete.prototype.updateDocTooltip = function () {
1937
+ var popup = this.popup;
1938
+ var all = this.completions.filtered;
1939
+ var selected = all && (all[popup.getHoveredRow()] || all[popup.getRow()]);
1940
+ var doc = null;
1941
+ if (!selected || !this.editor || !this.popup.isOpen)
1942
+ return this.hideDocTooltip();
1943
+ var completersLength = this.editor.completers.length;
1944
+ for (var i = 0; i < completersLength; i++) {
1945
+ var completer = this.editor.completers[i];
1946
+ if (completer.getDocTooltip && selected.completerId === completer.id) {
1947
+ doc = completer.getDocTooltip(selected);
1948
+ break;
1949
+ }
1950
+ }
1951
+ if (!doc && typeof selected != "string")
1952
+ doc = selected;
1953
+ if (typeof doc == "string")
1954
+ doc = { docText: doc };
1955
+ if (!doc || !(doc.docHTML || doc.docText))
1956
+ return this.hideDocTooltip();
1957
+ this.showDocTooltip(doc);
1958
+ };
1959
+ Autocomplete.prototype.showDocTooltip = function (item) {
1960
+ if (!this.tooltipNode) {
1961
+ this.tooltipNode = dom.createElement("div");
1962
+ this.tooltipNode.style.margin = "0";
1963
+ this.tooltipNode.style.pointerEvents = "auto";
1964
+ this.tooltipNode.style.overscrollBehavior = "contain";
1965
+ this.tooltipNode.tabIndex = -1;
1966
+ this.tooltipNode.onblur = this.blurListener.bind(this);
1967
+ this.tooltipNode.onclick = this.onTooltipClick.bind(this);
1968
+ this.tooltipNode.id = "doc-tooltip";
1969
+ this.tooltipNode.setAttribute("role", "tooltip");
1970
+ this.tooltipNode.addEventListener("wheel", preventParentScroll);
1971
+ }
1972
+ var theme = this.editor.renderer.theme;
1973
+ this.tooltipNode.className = "ace_tooltip ace_doc-tooltip " +
1974
+ (theme.isDark ? "ace_dark " : "") + (theme.cssClass || "");
1975
+ var tooltipNode = this.tooltipNode;
1976
+ if (item.docHTML) {
1977
+ tooltipNode.innerHTML = item.docHTML;
1978
+ }
1979
+ else if (item.docText) {
1980
+ tooltipNode.textContent = item.docText;
1981
+ }
1982
+ if (!tooltipNode.parentNode)
1983
+ this.popup.container.appendChild(this.tooltipNode);
1984
+ var popup = this.popup;
1985
+ var rect = popup.container.getBoundingClientRect();
1986
+ tooltipNode.style.top = popup.container.style.top;
1987
+ tooltipNode.style.bottom = popup.container.style.bottom;
1988
+ tooltipNode.style.display = "block";
1989
+ if (window.innerWidth - rect.right < 320) {
1990
+ if (rect.left < 320) {
1991
+ if (popup.isTopdown) {
1992
+ tooltipNode.style.top = rect.bottom + "px";
1993
+ tooltipNode.style.left = rect.left + "px";
1994
+ tooltipNode.style.right = "";
1995
+ tooltipNode.style.bottom = "";
1996
+ }
1997
+ else {
1998
+ tooltipNode.style.top = popup.container.offsetTop - tooltipNode.offsetHeight + "px";
1999
+ tooltipNode.style.left = rect.left + "px";
2000
+ tooltipNode.style.right = "";
2001
+ tooltipNode.style.bottom = "";
2002
+ }
2003
+ }
2004
+ else {
2005
+ tooltipNode.style.right = window.innerWidth - rect.left + "px";
2006
+ tooltipNode.style.left = "";
2007
+ }
2008
+ }
2009
+ else {
2010
+ tooltipNode.style.left = (rect.right + 1) + "px";
2011
+ tooltipNode.style.right = "";
2012
+ }
2013
+ };
2014
+ Autocomplete.prototype.hideDocTooltip = function () {
2015
+ this.tooltipTimer.cancel();
2016
+ if (!this.tooltipNode)
2017
+ return;
2018
+ var el = this.tooltipNode;
2019
+ if (!this.editor.isFocused() && document.activeElement == el)
2020
+ this.editor.focus();
2021
+ this.tooltipNode = null;
2022
+ if (el.parentNode)
2023
+ el.parentNode.removeChild(el);
2024
+ };
2025
+ Autocomplete.prototype.onTooltipClick = function (e) {
2026
+ var a = e.target;
2027
+ while (a && a != this.tooltipNode) {
2028
+ if (a.nodeName == "A" && a.href) {
2029
+ a.rel = "noreferrer";
2030
+ a.target = "_blank";
2031
+ break;
2032
+ }
2033
+ a = a.parentNode;
2034
+ }
2035
+ };
2036
+ Autocomplete.prototype.destroy = function () {
2037
+ this.detach();
2038
+ if (this.popup) {
2039
+ this.popup.destroy();
2040
+ var el = this.popup.container;
2041
+ if (el && el.parentNode)
2042
+ el.parentNode.removeChild(el);
2043
+ }
2044
+ if (this.editor && this.editor.completer == this) {
2045
+ this.editor.off("destroy", destroyCompleter);
2046
+ this.editor.completer = null;
2047
+ }
2048
+ this.inlineRenderer = this.popup = this.editor = null;
2049
+ };
2050
+ Autocomplete.for = function (editor) {
2051
+ if (editor.completer instanceof Autocomplete) {
2052
+ return editor.completer;
2053
+ }
2054
+ if (editor.completer) {
2055
+ editor.completer.destroy();
2056
+ editor.completer = null;
2057
+ }
2058
+ if (config.get("sharedPopups")) {
2059
+ if (!Autocomplete["$sharedInstance"])
2060
+ Autocomplete["$sharedInstance"] = new Autocomplete();
2061
+ editor.completer = Autocomplete["$sharedInstance"];
2062
+ }
2063
+ else {
2064
+ editor.completer = new Autocomplete();
2065
+ editor.once("destroy", destroyCompleter);
2066
+ }
2067
+ return editor.completer;
2068
+ };
2069
+ return Autocomplete;
2070
+ }());
2071
+ Autocomplete.prototype.commands = {
2072
+ "Up": function (editor) { editor.completer.goTo("up"); },
2073
+ "Down": function (editor) { editor.completer.goTo("down"); },
2074
+ "Ctrl-Up|Ctrl-Home": function (editor) { editor.completer.goTo("start"); },
2075
+ "Ctrl-Down|Ctrl-End": function (editor) { editor.completer.goTo("end"); },
2076
+ "Esc": function (editor) { editor.completer.detach(); },
2077
+ "Return": function (editor) { return editor.completer.insertMatch(); },
2078
+ "Shift-Return": function (editor) { editor.completer.insertMatch(null, { deleteSuffix: true }); },
2079
+ "Tab": function (editor) {
2080
+ var result = editor.completer.insertMatch();
2081
+ if (!result && !editor.tabstopManager)
2082
+ editor.completer.goTo("down");
2083
+ else
2084
+ return result;
2085
+ },
2086
+ "Backspace": function (editor) {
2087
+ editor.execCommand("backspace");
2088
+ var prefix = util.getCompletionPrefix(editor);
2089
+ if (!prefix && editor.completer)
2090
+ editor.completer.detach();
2091
+ },
2092
+ "PageUp": function (editor) { editor.completer.popup.gotoPageUp(); },
2093
+ "PageDown": function (editor) { editor.completer.popup.gotoPageDown(); }
2094
+ };
2095
+ Autocomplete.startCommand = {
2096
+ name: "startAutocomplete",
2097
+ exec: function (editor, options) {
2098
+ var completer = Autocomplete.for(editor);
2099
+ completer.autoInsert = false;
2100
+ completer.autoSelect = true;
2101
+ completer.autoShown = false;
2102
+ completer.showPopup(editor, options);
2103
+ completer.cancelContextMenu();
2104
+ },
2105
+ bindKey: "Ctrl-Space|Ctrl-Shift-Space|Alt-Space"
2106
+ };
2107
+ var CompletionProvider = /** @class */ (function () {
2108
+ function CompletionProvider(initialPosition) {
2109
+ this.initialPosition = initialPosition;
2110
+ this.active = true;
2111
+ }
2112
+ CompletionProvider.prototype.insertByIndex = function (editor, index, options) {
2113
+ if (!this.completions || !this.completions.filtered) {
2114
+ return false;
2115
+ }
2116
+ return this.insertMatch(editor, this.completions.filtered[index], options);
2117
+ };
2118
+ CompletionProvider.prototype.insertMatch = function (editor, data, options) {
2119
+ if (!data)
2120
+ return false;
2121
+ editor.startOperation({ command: { name: "insertMatch" } });
2122
+ if (data.completer && data.completer.insertMatch) {
2123
+ data.completer.insertMatch(editor, data);
2124
+ }
2125
+ else {
2126
+ if (!this.completions)
2127
+ return false;
2128
+ var replaceBefore = this.completions.filterText.length;
2129
+ var replaceAfter = 0;
2130
+ if (data.range && data.range.start.row === data.range.end.row) {
2131
+ replaceBefore -= this.initialPosition.prefix.length;
2132
+ replaceBefore += this.initialPosition.pos.column - data.range.start.column;
2133
+ replaceAfter += data.range.end.column - this.initialPosition.pos.column;
2134
+ }
2135
+ if (replaceBefore || replaceAfter) {
2136
+ var ranges;
2137
+ if (editor.selection.getAllRanges) {
2138
+ ranges = editor.selection.getAllRanges();
2139
+ }
2140
+ else {
2141
+ ranges = [editor.getSelectionRange()];
2142
+ }
2143
+ for (var i = 0, range; range = ranges[i]; i++) {
2144
+ range.start.column -= replaceBefore;
2145
+ range.end.column += replaceAfter;
2146
+ editor.session.remove(range);
2147
+ }
2148
+ }
2149
+ if (data.snippet) {
2150
+ snippetManager.insertSnippet(editor, data.snippet);
2151
+ }
2152
+ else {
2153
+ this.$insertString(editor, data);
2154
+ }
2155
+ if (data.completer && data.completer.onInsert && typeof data.completer.onInsert == "function") {
2156
+ data.completer.onInsert(editor, data);
2157
+ }
2158
+ if (data.command && data.command === "startAutocomplete") {
2159
+ editor.execCommand(data.command);
2160
+ }
2161
+ }
2162
+ editor.endOperation();
2163
+ return true;
2164
+ };
2165
+ CompletionProvider.prototype.$insertString = function (editor, data) {
2166
+ var text = data.value || data;
2167
+ editor.execCommand("insertstring", text);
2168
+ };
2169
+ CompletionProvider.prototype.gatherCompletions = function (editor, callback) {
2170
+ var session = editor.getSession();
2171
+ var pos = editor.getCursorPosition();
2172
+ var prefix = util.getCompletionPrefix(editor);
2173
+ var matches = [];
2174
+ this.completers = editor.completers;
2175
+ var total = editor.completers.length;
2176
+ editor.completers.forEach(function (completer, i) {
2177
+ completer.getCompletions(editor, session, pos, prefix, function (err, results) {
2178
+ if (completer.hideInlinePreview)
2179
+ results = results.map(function (result) {
2180
+ return Object.assign(result, { hideInlinePreview: completer.hideInlinePreview });
2181
+ });
2182
+ if (!err && results)
2183
+ matches = matches.concat(results);
2184
+ callback(null, {
2185
+ prefix: util.getCompletionPrefix(editor),
2186
+ matches: matches,
2187
+ finished: (--total === 0)
2188
+ });
2189
+ });
2190
+ });
2191
+ return true;
2192
+ };
2193
+ CompletionProvider.prototype.provideCompletions = function (editor, options, callback) {
2194
+ var processResults = function (results) {
2195
+ var prefix = results.prefix;
2196
+ var matches = results.matches;
2197
+ this.completions = new FilteredList(matches);
2198
+ if (options.exactMatch)
2199
+ this.completions.exactMatch = true;
2200
+ if (options.ignoreCaption)
2201
+ this.completions.ignoreCaption = true;
2202
+ this.completions.setFilter(prefix);
2203
+ if (results.finished || this.completions.filtered.length)
2204
+ callback(null, this.completions, results.finished);
2205
+ }.bind(this);
2206
+ var isImmediate = true;
2207
+ var immediateResults = null;
2208
+ this.gatherCompletions(editor, function (err, results) {
2209
+ if (!this.active) {
2210
+ return;
2211
+ }
2212
+ if (err) {
2213
+ callback(err, [], true);
2214
+ this.detach();
2215
+ }
2216
+ var prefix = results.prefix;
2217
+ if (prefix.indexOf(results.prefix) !== 0)
2218
+ return;
2219
+ if (isImmediate) {
2220
+ immediateResults = results;
2221
+ return;
2222
+ }
2223
+ processResults(results);
2224
+ }.bind(this));
2225
+ isImmediate = false;
2226
+ if (immediateResults) {
2227
+ var results = immediateResults;
2228
+ immediateResults = null;
2229
+ processResults(results);
2230
+ }
2231
+ };
2232
+ CompletionProvider.prototype.detach = function () {
2233
+ this.active = false;
2234
+ this.completers && this.completers.forEach(function (completer) {
2235
+ if (typeof completer.cancel === "function") {
2236
+ completer.cancel();
2237
+ }
2238
+ });
2239
+ };
2240
+ return CompletionProvider;
2241
+ }());
2242
+ var FilteredList = /** @class */ (function () {
2243
+ function FilteredList(array, filterText) {
2244
+ this.all = array;
2245
+ this.filtered = array;
2246
+ this.filterText = filterText || "";
2247
+ this.exactMatch = false;
2248
+ this.ignoreCaption = false;
2249
+ }
2250
+ FilteredList.prototype.setFilter = function (str) {
2251
+ if (str.length > this.filterText && str.lastIndexOf(this.filterText, 0) === 0)
2252
+ var matches = this.filtered;
2253
+ else
2254
+ var matches = this.all;
2255
+ this.filterText = str;
2256
+ matches = this.filterCompletions(matches, this.filterText);
2257
+ matches = matches.sort(function (a, b) {
2258
+ return b.exactMatch - a.exactMatch || b.$score - a.$score
2259
+ || (a.caption || a.value).localeCompare(b.caption || b.value);
2260
+ });
2261
+ var prev = null;
2262
+ matches = matches.filter(function (item) {
2263
+ var caption = item.snippet || item.caption || item.value;
2264
+ if (caption === prev)
2265
+ return false;
2266
+ prev = caption;
2267
+ return true;
2268
+ });
2269
+ this.filtered = matches;
2270
+ };
2271
+ FilteredList.prototype.filterCompletions = function (items, needle) {
2272
+ var results = [];
2273
+ var upper = needle.toUpperCase();
2274
+ var lower = needle.toLowerCase();
2275
+ loop: for (var i = 0, item; item = items[i]; i++) {
2276
+ var caption = (!this.ignoreCaption && item.caption) || item.value || item.snippet;
2277
+ if (!caption)
2278
+ continue;
2279
+ var lastIndex = -1;
2280
+ var matchMask = 0;
2281
+ var penalty = 0;
2282
+ var index, distance;
2283
+ if (this.exactMatch) {
2284
+ if (needle !== caption.substr(0, needle.length))
2285
+ continue loop;
2286
+ }
2287
+ else {
2288
+ var fullMatchIndex = caption.toLowerCase().indexOf(lower);
2289
+ if (fullMatchIndex > -1) {
2290
+ penalty = fullMatchIndex;
2291
+ }
2292
+ else {
2293
+ for (var j = 0; j < needle.length; j++) {
2294
+ var i1 = caption.indexOf(lower[j], lastIndex + 1);
2295
+ var i2 = caption.indexOf(upper[j], lastIndex + 1);
2296
+ index = (i1 >= 0) ? ((i2 < 0 || i1 < i2) ? i1 : i2) : i2;
2297
+ if (index < 0)
2298
+ continue loop;
2299
+ distance = index - lastIndex - 1;
2300
+ if (distance > 0) {
2301
+ if (lastIndex === -1)
2302
+ penalty += 10;
2303
+ penalty += distance;
2304
+ matchMask = matchMask | (1 << j);
2305
+ }
2306
+ lastIndex = index;
2307
+ }
2308
+ }
2309
+ }
2310
+ item.matchMask = matchMask;
2311
+ item.exactMatch = penalty ? 0 : 1;
2312
+ item.$score = (item.score || 0) - penalty;
2313
+ results.push(item);
2314
+ }
2315
+ return results;
2316
+ };
2317
+ return FilteredList;
2318
+ }());
2319
+ exports.Autocomplete = Autocomplete;
2320
+ exports.CompletionProvider = CompletionProvider;
2321
+ exports.FilteredList = FilteredList;
2322
+
2323
+ });
2324
+
2325
+ ace.define("ace/autocomplete/text_completer",["require","exports","module","ace/range"], function(require, exports, module){var Range = require("../range").Range;
2326
+ var splitRegex = /[^a-zA-Z_0-9\$\-\u00C0-\u1FFF\u2C00-\uD7FF\w]+/;
2327
+ function getWordIndex(doc, pos) {
2328
+ var textBefore = doc.getTextRange(Range.fromPoints({
2329
+ row: 0,
2330
+ column: 0
2331
+ }, pos));
2332
+ return textBefore.split(splitRegex).length - 1;
2333
+ }
2334
+ function wordDistance(doc, pos) {
2335
+ var prefixPos = getWordIndex(doc, pos);
2336
+ var words = doc.getValue().split(splitRegex);
2337
+ var wordScores = Object.create(null);
2338
+ var currentWord = words[prefixPos];
2339
+ words.forEach(function (word, idx) {
2340
+ if (!word || word === currentWord)
2341
+ return;
2342
+ var distance = Math.abs(prefixPos - idx);
2343
+ var score = words.length - distance;
2344
+ if (wordScores[word]) {
2345
+ wordScores[word] = Math.max(score, wordScores[word]);
2346
+ }
2347
+ else {
2348
+ wordScores[word] = score;
2349
+ }
2350
+ });
2351
+ return wordScores;
2352
+ }
2353
+ exports.getCompletions = function (editor, session, pos, prefix, callback) {
2354
+ var wordScore = wordDistance(session, pos);
2355
+ var wordList = Object.keys(wordScore);
2356
+ callback(null, wordList.map(function (word) {
2357
+ return {
2358
+ caption: word,
2359
+ value: word,
2360
+ score: wordScore[word],
2361
+ meta: "local"
2362
+ };
2363
+ }));
2364
+ };
2365
+
2366
+ });
2367
+
2368
+ ace.define("ace/ext/language_tools",["require","exports","module","ace/snippets","ace/autocomplete","ace/config","ace/lib/lang","ace/autocomplete/util","ace/autocomplete/text_completer","ace/editor","ace/config"], function(require, exports, module){"use strict";
2369
+ var snippetManager = require("../snippets").snippetManager;
2370
+ var Autocomplete = require("../autocomplete").Autocomplete;
2371
+ var config = require("../config");
2372
+ var lang = require("../lib/lang");
2373
+ var util = require("../autocomplete/util");
2374
+ var textCompleter = require("../autocomplete/text_completer");
2375
+ var keyWordCompleter = {
2376
+ getCompletions: function (editor, session, pos, prefix, callback) {
2377
+ if (session.$mode.completer) {
2378
+ return session.$mode.completer.getCompletions(editor, session, pos, prefix, callback);
2379
+ }
2380
+ var state = editor.session.getState(pos.row);
2381
+ var completions = session.$mode.getCompletions(state, session, pos, prefix);
2382
+ completions = completions.map(function (el) {
2383
+ el.completerId = keyWordCompleter.id;
2384
+ return el;
2385
+ });
2386
+ callback(null, completions);
2387
+ },
2388
+ id: "keywordCompleter"
2389
+ };
2390
+ var transformSnippetTooltip = function (str) {
2391
+ var record = {};
2392
+ return str.replace(/\${(\d+)(:(.*?))?}/g, function (_, p1, p2, p3) {
2393
+ return (record[p1] = p3 || '');
2394
+ }).replace(/\$(\d+?)/g, function (_, p1) {
2395
+ return record[p1];
2396
+ });
2397
+ };
2398
+ var snippetCompleter = {
2399
+ getCompletions: function (editor, session, pos, prefix, callback) {
2400
+ var scopes = [];
2401
+ var token = session.getTokenAt(pos.row, pos.column);
2402
+ if (token && token.type.match(/(tag-name|tag-open|tag-whitespace|attribute-name|attribute-value)\.xml$/))
2403
+ scopes.push('html-tag');
2404
+ else
2405
+ scopes = snippetManager.getActiveScopes(editor);
2406
+ var snippetMap = snippetManager.snippetMap;
2407
+ var completions = [];
2408
+ scopes.forEach(function (scope) {
2409
+ var snippets = snippetMap[scope] || [];
2410
+ for (var i = snippets.length; i--;) {
2411
+ var s = snippets[i];
2412
+ var caption = s.name || s.tabTrigger;
2413
+ if (!caption)
2414
+ continue;
2415
+ completions.push({
2416
+ caption: caption,
2417
+ snippet: s.content,
2418
+ meta: s.tabTrigger && !s.name ? s.tabTrigger + "\u21E5 " : "snippet",
2419
+ completerId: snippetCompleter.id
2420
+ });
2421
+ }
2422
+ }, this);
2423
+ callback(null, completions);
2424
+ },
2425
+ getDocTooltip: function (item) {
2426
+ if (item.snippet && !item.docHTML) {
2427
+ item.docHTML = [
2428
+ "<b>", lang.escapeHTML(item.caption), "</b>", "<hr></hr>",
2429
+ lang.escapeHTML(transformSnippetTooltip(item.snippet))
2430
+ ].join("");
2431
+ }
2432
+ },
2433
+ id: "snippetCompleter"
2434
+ };
2435
+ var completers = [snippetCompleter, textCompleter, keyWordCompleter];
2436
+ exports.setCompleters = function (val) {
2437
+ completers.length = 0;
2438
+ if (val)
2439
+ completers.push.apply(completers, val);
2440
+ };
2441
+ exports.addCompleter = function (completer) {
2442
+ completers.push(completer);
2443
+ };
2444
+ exports.textCompleter = textCompleter;
2445
+ exports.keyWordCompleter = keyWordCompleter;
2446
+ exports.snippetCompleter = snippetCompleter;
2447
+ var expandSnippet = {
2448
+ name: "expandSnippet",
2449
+ exec: function (editor) {
2450
+ return snippetManager.expandWithTab(editor);
2451
+ },
2452
+ bindKey: "Tab"
2453
+ };
2454
+ var onChangeMode = function (e, editor) {
2455
+ loadSnippetsForMode(editor.session.$mode);
2456
+ };
2457
+ var loadSnippetsForMode = function (mode) {
2458
+ if (typeof mode == "string")
2459
+ mode = config.$modes[mode];
2460
+ if (!mode)
2461
+ return;
2462
+ if (!snippetManager.files)
2463
+ snippetManager.files = {};
2464
+ loadSnippetFile(mode.$id, mode.snippetFileId);
2465
+ if (mode.modes)
2466
+ mode.modes.forEach(loadSnippetsForMode);
2467
+ };
2468
+ var loadSnippetFile = function (id, snippetFilePath) {
2469
+ if (!snippetFilePath || !id || snippetManager.files[id])
2470
+ return;
2471
+ snippetManager.files[id] = {};
2472
+ config.loadModule(snippetFilePath, function (m) {
2473
+ if (!m)
2474
+ return;
2475
+ snippetManager.files[id] = m;
2476
+ if (!m.snippets && m.snippetText)
2477
+ m.snippets = snippetManager.parseSnippetFile(m.snippetText);
2478
+ snippetManager.register(m.snippets || [], m.scope);
2479
+ if (m.includeScopes) {
2480
+ snippetManager.snippetMap[m.scope].includeScopes = m.includeScopes;
2481
+ m.includeScopes.forEach(function (x) {
2482
+ loadSnippetsForMode("ace/mode/" + x);
2483
+ });
2484
+ }
2485
+ });
2486
+ };
2487
+ var doLiveAutocomplete = function (e) {
2488
+ var editor = e.editor;
2489
+ var hasCompleter = editor.completer && editor.completer.activated;
2490
+ if (e.command.name === "backspace") {
2491
+ if (hasCompleter && !util.getCompletionPrefix(editor))
2492
+ editor.completer.detach();
2493
+ }
2494
+ else if (e.command.name === "insertstring" && !hasCompleter) {
2495
+ lastExecEvent = e;
2496
+ var delay = e.editor.$liveAutocompletionDelay;
2497
+ if (delay) {
2498
+ liveAutocompleteTimer.delay(delay);
2499
+ }
2500
+ else {
2501
+ showLiveAutocomplete(e);
2502
+ }
2503
+ }
2504
+ };
2505
+ var lastExecEvent;
2506
+ var liveAutocompleteTimer = lang.delayedCall(function () {
2507
+ showLiveAutocomplete(lastExecEvent);
2508
+ }, 0);
2509
+ var showLiveAutocomplete = function (e) {
2510
+ var editor = e.editor;
2511
+ var prefix = util.getCompletionPrefix(editor);
2512
+ var previousChar = e.args;
2513
+ var triggerAutocomplete = util.triggerAutocomplete(editor, previousChar);
2514
+ if (prefix && prefix.length >= editor.$liveAutocompletionThreshold || triggerAutocomplete) {
2515
+ var completer = Autocomplete.for(editor);
2516
+ completer.autoShown = true;
2517
+ completer.showPopup(editor);
2518
+ }
2519
+ };
2520
+ var Editor = require("../editor").Editor;
2521
+ require("../config").defineOptions(Editor.prototype, "editor", {
2522
+ enableBasicAutocompletion: {
2523
+ set: function (val) {
2524
+ if (val) {
2525
+ if (!this.completers)
2526
+ this.completers = Array.isArray(val) ? val : completers;
2527
+ this.commands.addCommand(Autocomplete.startCommand);
2528
+ }
2529
+ else {
2530
+ this.commands.removeCommand(Autocomplete.startCommand);
2531
+ }
2532
+ },
2533
+ value: false
2534
+ },
2535
+ enableLiveAutocompletion: {
2536
+ set: function (val) {
2537
+ if (val) {
2538
+ if (!this.completers)
2539
+ this.completers = Array.isArray(val) ? val : completers;
2540
+ this.commands.on('afterExec', doLiveAutocomplete);
2541
+ }
2542
+ else {
2543
+ this.commands.off('afterExec', doLiveAutocomplete);
2544
+ }
2545
+ },
2546
+ value: false
2547
+ },
2548
+ liveAutocompletionDelay: {
2549
+ initialValue: 0
2550
+ },
2551
+ liveAutocompletionThreshold: {
2552
+ initialValue: 0
2553
+ },
2554
+ enableSnippets: {
2555
+ set: function (val) {
2556
+ if (val) {
2557
+ this.commands.addCommand(expandSnippet);
2558
+ this.on("changeMode", onChangeMode);
2559
+ onChangeMode(null, this);
2560
+ }
2561
+ else {
2562
+ this.commands.removeCommand(expandSnippet);
2563
+ this.off("changeMode", onChangeMode);
2564
+ }
2565
+ },
2566
+ value: false
2567
+ }
2568
+ });
2569
+
2570
+ }); (function() {
2571
+ ace.require(["ace/ext/language_tools"], function(m) {
2572
+ if (typeof module == "object" && typeof exports == "object" && module) {
2573
+ module.exports = m;
2574
+ }
2575
+ });
2576
+ })();
2577
+