abl-tmlanguage 1.3.15 → 1.3.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +36 -0
- package/CHANGELOG.md +18 -0
- package/README.md +17 -12
- package/abl.tmLanguage.json +280 -69
- package/package.json +1 -1
- package/spec/annotations/annotation.spec.js +49 -50
- package/spec/blocks/block-labels.spec.js +3 -3
- package/spec/blocks/block-options.spec.js +157 -1
- package/spec/comments/comment-in-block-statement.spec.js +20 -14
- package/spec/comments/comment-in-for-each.spec.js +9 -6
- package/spec/comments/comment-in-function-args.spec.js +4 -5
- package/spec/comments/vscode-abl-issue#127.spec.js +4 -4
- package/spec/create-widgets/create-window.spec.js +11 -8
- package/spec/db-table-and-field/buffer-copy.spec.js +45 -39
- package/spec/db-table-and-field/create-alias.spec.js +3 -3
- package/spec/db-table-and-field/field-in-function.spec.js +6 -6
- package/spec/db-table-and-field/foreach.spec.js +3 -3
- package/spec/db-table-and-field/issue#88.spec.js +2 -2
- package/spec/db-table-and-field/new-record.spec.js +46 -25
- package/spec/define/define-browse.spec.js +54 -54
- package/spec/define/define-button.spec.js +3 -3
- package/spec/define/define-query.spec.js +43 -0
- package/spec/define-buffer/create-buffer.spec.js +3 -3
- package/spec/define-buffer/simple-single-line.spec.js +9 -9
- package/spec/define-frame/issue#173.spec.js +56 -50
- package/spec/define-parameter/simple-single-line.spec.js +3 -3
- package/spec/define-property/property-getter.spec.js +4 -4
- package/spec/define-temp-table/define-dataset.spec.js +23 -17
- package/spec/define-temp-table/define-temp-table.spec.js +68 -53
- package/spec/define-variable/extent.spec.js +6 -6
- package/spec/define-variable/initial.spec.js +15 -15
- package/spec/define-variable/issue#6.spec.js +39 -39
- package/spec/define-variable/issue#9.spec.js +3 -3
- package/spec/define-variable/var-statement.spec.js +7 -4
- package/spec/do/do-blocks.spec.js +25 -19
- package/spec/for-each/issue#321.spec.js +2 -2
- package/spec/function-call/can-find.spec.js +10 -11
- package/spec/function-call/misc-abl-functions.spec.js +3 -3
- package/spec/function-call/nested-functions.spec.js +21 -22
- package/spec/function-call/udf-calls.spec.js +22 -23
- package/spec/function-call/vscode-abl-issue#19.spec.js +12 -12
- package/spec/global-scoped-define/global-define.spec.js +54 -7
- package/spec/global-scoped-define/scoped-define-with-procedure-keyword.spec.js +49 -15
- package/spec/global-scoped-define/undefine.spec.js +44 -0
- package/spec/include/abl-tmlanguage-issues#5.spec.js +3 -3
- package/spec/include/include-file-name.spec.js +16 -4
- package/spec/include/unnamed-arguments.spec.js +4 -5
- package/spec/include/vscode-abl-issue#45.spec.js +3 -3
- package/spec/include/vscode-abl-issue#77.spec.js +16 -17
- package/spec/include/vscode-abl-issue#80.spec.js +10 -7
- package/spec/input-output/input-from.spec.js +19 -16
- package/spec/input-output/output-to.spec.js +15 -15
- package/spec/method-attribute-property-call/abl-method-attribute-call.spec.js +16 -17
- package/spec/method-attribute-property-call/connected-method.spec.js +3 -4
- package/spec/method-attribute-property-call/datset-table-attribute-method-call.spec.js +53 -0
- package/spec/method-attribute-property-call/method-call.spec.js +16 -16
- package/spec/method-attribute-property-call/unqualified-method-call.spec.js +3 -4
- package/spec/method-definition/constructor.spec.js +6 -6
- package/spec/method-definition/method.spec.js +12 -12
- package/spec/misc-statements/case-statement.spec.js +9 -9
- package/spec/misc-statements/class-in-var-name.spec.js +9 -10
- package/spec/misc-statements/copy-lob.spec.js +3 -3
- package/spec/misc-statements/do-in-name.spec.js +21 -22
- package/spec/misc-statements/event-subscribe.spec.js +14 -15
- package/spec/misc-statements/export-delimiter.spec.js +6 -6
- package/spec/misc-statements/if-then.spec.js +9 -9
- package/spec/misc-statements/issue#173.spec.js +3 -4
- package/spec/misc-statements/message-statement.spec.js +3 -3
- package/spec/misc-statements/record-buffer-functions.spec.js +3 -3
- package/spec/misc-statements/release.spec.js +3 -4
- package/spec/misc-statements/skip-statement-and-fuction.spec.js +3 -4
- package/spec/numbers/scientific-notation.spec.js +212 -0
- package/spec/operators/operators.spec.js +10 -10
- package/spec/preprocesors/issue166.spec.js +27 -19
- package/spec/preprocesors/preprocessor-functions.spec.js +77 -0
- package/spec/preprocesors/proparse-preprocessor.spec.js +27 -3
- package/spec/procedure-definition/trigger-procedure.spec.js +8 -2
- package/spec/procedure-definition/vscode-abl-issue#22.spec.js +3 -3
- package/spec/procedure-definition/vscode-abl-issue#26.spec.js +4 -4
- package/spec/procedure-definition/vscode-abl-issue#325.spec.js +26 -2
- package/spec/procedure-definition/vscode-abl-issue#62.spec.js +7 -4
- package/spec/run-statement/run-statement.spec.js +25 -13
- package/spec/shared.js +12 -11
- package/spec/strings/translation-attribute.spec.js +4 -4
- package/spec/strings/vscode-abl-issue#11.spec.js +24 -24
- package/spec/strings/vscode-abl-issue#28.spec.js +9 -9
- package/spec/type-name/argument.spec.js +11 -12
- package/spec/type-name/cast.spec.js +7 -7
- package/spec/type-name/define-temp-table.spec.js +6 -6
- package/spec/type-name/new.spec.js +3 -3
- package/spec/type-name/parameter-as.spec.js +6 -6
- package/spec/type-name/type-name.spec.js +22 -20
|
@@ -150,37 +150,52 @@ describe('', () => {
|
|
|
150
150
|
[
|
|
151
151
|
{ "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'DEFINE'
|
|
152
152
|
{ "startIndex": 6, "endIndex": 7, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
153
|
-
{ "startIndex": 7, "endIndex":
|
|
153
|
+
{ "startIndex": 7, "endIndex": 8, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
|
|
154
|
+
{ "startIndex": 8, "endIndex": 9, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
|
|
155
|
+
{ "startIndex": 9, "endIndex": 15, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'ACCESS'
|
|
156
|
+
{ "startIndex": 15, "endIndex": 16, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
|
|
154
157
|
{ "startIndex": 16, "endIndex": 17, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
155
158
|
{ "startIndex": 17, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'TEMP-TABLE'
|
|
156
159
|
{ "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
157
160
|
{ "startIndex": 28, "endIndex": 34, "scopes": ["source.abl", "meta.define.abl", "storage.data.table.abl"] }, // 'eIndex'
|
|
158
|
-
{ "startIndex": 34, "endIndex":
|
|
161
|
+
{ "startIndex": 34, "endIndex": 35, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
|
|
162
|
+
{ "startIndex": 35, "endIndex": 36, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
|
|
163
|
+
{ "startIndex": 36, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'SUFFIX'
|
|
164
|
+
{ "startIndex": 42, "endIndex": 43, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
|
|
159
165
|
{ "startIndex": 43, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
160
166
|
{ "startIndex": 44, "endIndex": 51, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'NO-UNDO'
|
|
161
167
|
{ "startIndex": 51, "endIndex": 52, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
162
|
-
{ "startIndex": 52, "endIndex":
|
|
168
|
+
{ "startIndex": 52, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
|
|
169
|
+
{ "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
|
|
170
|
+
{ "startIndex": 54, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'REFERENCE-ONLY'
|
|
171
|
+
{ "startIndex": 68, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
|
|
163
172
|
{ "startIndex": 69, "endIndex": 70, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
164
|
-
{ "startIndex": 70, "endIndex":
|
|
165
|
-
{ "startIndex":
|
|
166
|
-
{ "startIndex":
|
|
167
|
-
{ "startIndex":
|
|
168
|
-
{ "startIndex":
|
|
169
|
-
{ "startIndex":
|
|
170
|
-
{ "startIndex":
|
|
173
|
+
{ "startIndex": 70, "endIndex": 71, "scopes": ["source.abl", "meta.define.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
|
|
174
|
+
{ "startIndex": 71, "endIndex": 73, "scopes": ["source.abl", "meta.define.abl", "keyword.control.directive.conditional.abl"] }, // 'IF'
|
|
175
|
+
{ "startIndex": 73, "endIndex": 74, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
176
|
+
{ "startIndex": 74, "endIndex": 81, "scopes": ["source.abl", "meta.define.abl", "storage.type.function.abl"] }, // 'DEFINED'
|
|
177
|
+
{ "startIndex": 81, "endIndex": 82, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
178
|
+
{ "startIndex": 82, "endIndex": 83, "scopes": ["source.abl", "meta.define.abl", "meta.brace.round.js"] }, // '('
|
|
179
|
+
{ "startIndex": 83, "endIndex": 92, "scopes": ["source.abl", "meta.define.abl", "entity.name.function.preprocessor.abl"] }, // 'NO-BEFORE'
|
|
180
|
+
{ "startIndex": 92, "endIndex": 93, "scopes": ["source.abl", "meta.define.abl", "meta.brace.round.js"] }, // ')'
|
|
171
181
|
{ "startIndex": 93, "endIndex": 94, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
172
182
|
{ "startIndex": 94, "endIndex": 96, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'EQ'
|
|
173
183
|
{ "startIndex": 96, "endIndex": 97, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
174
184
|
{ "startIndex": 97, "endIndex": 98, "scopes": ["source.abl", "meta.define.abl", "constant.numeric.source.abl"] }, // '0'
|
|
175
185
|
{ "startIndex": 98, "endIndex": 99, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
176
|
-
{ "startIndex": 99, "endIndex":
|
|
186
|
+
{ "startIndex": 99, "endIndex": 100, "scopes": ["source.abl", "meta.define.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
|
|
187
|
+
{ "startIndex": 100, "endIndex": 104, "scopes": ["source.abl", "meta.define.abl", "keyword.control.directive.conditional.abl"] }, // 'THEN'
|
|
177
188
|
{ "startIndex": 104, "endIndex": 105, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
178
189
|
{ "startIndex": 105, "endIndex": 117, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'BEFORE-TABLE'
|
|
179
190
|
{ "startIndex": 117, "endIndex": 118, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
180
191
|
{ "startIndex": 118, "endIndex": 130, "scopes": ["source.abl", "meta.define.abl", "storage.data.table.abl"] }, // 'eIndexBefore'
|
|
181
|
-
{ "startIndex": 130, "endIndex":
|
|
192
|
+
{ "startIndex": 130, "endIndex": 131, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
|
|
193
|
+
{ "startIndex": 131, "endIndex": 132, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
|
|
194
|
+
{ "startIndex": 132, "endIndex": 138, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'SUFFIX'
|
|
195
|
+
{ "startIndex": 138, "endIndex": 139, "scopes": ["source.abl", "meta.define.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
|
|
182
196
|
{ "startIndex": 139, "endIndex": 140, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
183
|
-
{ "startIndex": 140, "endIndex":
|
|
197
|
+
{ "startIndex": 140, "endIndex": 141, "scopes": ["source.abl", "meta.define.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
|
|
198
|
+
{ "startIndex": 141, "endIndex": 146, "scopes": ["source.abl", "meta.define.abl", "keyword.control.directive.conditional.abl"] } // 'ENDIF'
|
|
184
199
|
],
|
|
185
200
|
[
|
|
186
201
|
{ "startIndex": 0, "endIndex": 2, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -194,10 +209,10 @@ describe('', () => {
|
|
|
194
209
|
{ "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
195
210
|
{ "startIndex": 40, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
196
211
|
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
197
|
-
{ "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
198
|
-
{ "startIndex": 48, "endIndex": 52, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
199
|
-
{ "startIndex": 52, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
200
|
-
{ "startIndex": 53, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
212
|
+
{ "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
213
|
+
{ "startIndex": 48, "endIndex": 52, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'X(8)'
|
|
214
|
+
{ "startIndex": 52, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
215
|
+
{ "startIndex": 53, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "support.other.abl"] } // ':U'
|
|
201
216
|
],
|
|
202
217
|
[
|
|
203
218
|
{ "startIndex": 0, "endIndex": 2, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -293,33 +308,33 @@ describe('', () => {
|
|
|
293
308
|
{ "startIndex": 0, "endIndex": 8, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
294
309
|
{ "startIndex": 8, "endIndex": 21, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'namespace-uri'
|
|
295
310
|
{ "startIndex": 21, "endIndex": 22, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
296
|
-
{ "startIndex": 22, "endIndex": 23, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
297
|
-
{ "startIndex": 23, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
298
|
-
{ "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
311
|
+
{ "startIndex": 22, "endIndex": 23, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
312
|
+
{ "startIndex": 23, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'foo'
|
|
313
|
+
{ "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
299
314
|
],
|
|
300
315
|
[
|
|
301
316
|
{ "startIndex": 0, "endIndex": 8, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
302
317
|
{ "startIndex": 8, "endIndex": 24, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'namespace-prefix'
|
|
303
318
|
{ "startIndex": 24, "endIndex": 25, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
304
|
-
{ "startIndex": 25, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
305
|
-
{ "startIndex": 26, "endIndex": 32, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
306
|
-
{ "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
319
|
+
{ "startIndex": 25, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
320
|
+
{ "startIndex": 26, "endIndex": 32, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'prefix'
|
|
321
|
+
{ "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
307
322
|
],
|
|
308
323
|
[
|
|
309
324
|
{ "startIndex": 0, "endIndex": 8, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
310
325
|
{ "startIndex": 8, "endIndex": 21, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'xml-node-name'
|
|
311
326
|
{ "startIndex": 21, "endIndex": 22, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
312
|
-
{ "startIndex": 22, "endIndex": 23, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
313
|
-
{ "startIndex": 23, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
314
|
-
{ "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
327
|
+
{ "startIndex": 22, "endIndex": 23, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
328
|
+
{ "startIndex": 23, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Foo'
|
|
329
|
+
{ "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
315
330
|
],
|
|
316
331
|
[
|
|
317
332
|
{ "startIndex": 0, "endIndex": 8, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
318
333
|
{ "startIndex": 8, "endIndex": 22, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'serialize-name'
|
|
319
334
|
{ "startIndex": 22, "endIndex": 23, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
320
|
-
{ "startIndex": 23, "endIndex": 24, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
321
|
-
{ "startIndex": 24, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
322
|
-
{ "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
335
|
+
{ "startIndex": 23, "endIndex": 24, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
336
|
+
{ "startIndex": 24, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Foo'
|
|
337
|
+
{ "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
323
338
|
],
|
|
324
339
|
[
|
|
325
340
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -337,15 +352,15 @@ describe('', () => {
|
|
|
337
352
|
{ "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
338
353
|
{ "startIndex": 27, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'xml-node-name'
|
|
339
354
|
{ "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
340
|
-
{ "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
341
|
-
{ "startIndex": 42, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
342
|
-
{ "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
355
|
+
{ "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
356
|
+
{ "startIndex": 42, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'id'
|
|
357
|
+
{ "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
343
358
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
344
359
|
{ "startIndex": 46, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'serialize-name'
|
|
345
360
|
{ "startIndex": 60, "endIndex": 61, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
346
|
-
{ "startIndex": 61, "endIndex": 62, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
347
|
-
{ "startIndex": 62, "endIndex": 64, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
348
|
-
{ "startIndex": 64, "endIndex": 65, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
361
|
+
{ "startIndex": 61, "endIndex": 62, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
362
|
+
{ "startIndex": 62, "endIndex": 64, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'id'
|
|
363
|
+
{ "startIndex": 64, "endIndex": 65, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
349
364
|
{ "startIndex": 65, "endIndex": 66, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] } // '.'
|
|
350
365
|
]
|
|
351
366
|
];
|
|
@@ -449,9 +464,9 @@ describe('', () => {
|
|
|
449
464
|
{ "startIndex": 0, "endIndex": 2, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
450
465
|
{ "startIndex": 2, "endIndex": 15, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'namespace-uri'
|
|
451
466
|
{ "startIndex": 15, "endIndex": 16, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
452
|
-
{ "startIndex": 16, "endIndex": 17, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
453
|
-
{ "startIndex": 17, "endIndex": 76, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
454
|
-
{ "startIndex": 76, "endIndex": 77, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
467
|
+
{ "startIndex": 16, "endIndex": 17, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
468
|
+
{ "startIndex": 17, "endIndex": 76, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'urn:schemas-cybersource-com:transaction-data-{&API-VERSION}'
|
|
469
|
+
{ "startIndex": 76, "endIndex": 77, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
455
470
|
],
|
|
456
471
|
[
|
|
457
472
|
{ "startIndex": 0, "endIndex": 2, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -469,15 +484,15 @@ describe('', () => {
|
|
|
469
484
|
{ "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
470
485
|
{ "startIndex": 33, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'xml-data-type'
|
|
471
486
|
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
472
|
-
{ "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
473
|
-
{ "startIndex": 48, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
474
|
-
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
487
|
+
{ "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
488
|
+
{ "startIndex": 48, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'integer'
|
|
489
|
+
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
475
490
|
{ "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
476
491
|
{ "startIndex": 57, "endIndex": 70, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'xml-node-type'
|
|
477
492
|
{ "startIndex": 70, "endIndex": 71, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
478
|
-
{ "startIndex": 71, "endIndex": 72, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
479
|
-
{ "startIndex": 72, "endIndex": 81, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
480
|
-
{ "startIndex": 81, "endIndex": 82, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
493
|
+
{ "startIndex": 71, "endIndex": 72, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
494
|
+
{ "startIndex": 72, "endIndex": 81, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'ATTRIBUTE'
|
|
495
|
+
{ "startIndex": 81, "endIndex": 82, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
481
496
|
],
|
|
482
497
|
[
|
|
483
498
|
{ "startIndex": 0, "endIndex": 2, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -491,9 +506,9 @@ describe('', () => {
|
|
|
491
506
|
{ "startIndex": 34, "endIndex": 35, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
492
507
|
{ "startIndex": 35, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'xml-node-type'
|
|
493
508
|
{ "startIndex": 48, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
494
|
-
{ "startIndex": 49, "endIndex": 50, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
495
|
-
{ "startIndex": 50, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
496
|
-
{ "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
509
|
+
{ "startIndex": 49, "endIndex": 50, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
510
|
+
{ "startIndex": 50, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'HIDDEN'
|
|
511
|
+
{ "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
497
512
|
{ "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] } // '.'
|
|
498
513
|
]
|
|
499
514
|
];
|
|
@@ -532,15 +547,15 @@ describe('', () => {
|
|
|
532
547
|
{ "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
533
548
|
{ "startIndex": 34, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'xml-data-type'
|
|
534
549
|
{ "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
535
|
-
{ "startIndex": 48, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
536
|
-
{ "startIndex": 49, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
537
|
-
{ "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
550
|
+
{ "startIndex": 48, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
551
|
+
{ "startIndex": 49, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'integer'
|
|
552
|
+
{ "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
538
553
|
{ "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
539
554
|
{ "startIndex": 58, "endIndex": 71, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'xml-node-type'
|
|
540
555
|
{ "startIndex": 71, "endIndex": 72, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
541
|
-
{ "startIndex": 72, "endIndex": 73, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
542
|
-
{ "startIndex": 73, "endIndex": 82, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
543
|
-
{ "startIndex": 82, "endIndex": 83, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
556
|
+
{ "startIndex": 72, "endIndex": 73, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
557
|
+
{ "startIndex": 73, "endIndex": 82, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'ATTRIBUTE'
|
|
558
|
+
{ "startIndex": 82, "endIndex": 83, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
544
559
|
],
|
|
545
560
|
[
|
|
546
561
|
{ "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -211,14 +211,14 @@ describe('', () => {
|
|
|
211
211
|
{ "startIndex": 45, "endIndex": 52, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'initial'
|
|
212
212
|
{ "startIndex": 52, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
213
213
|
{ "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "punctuation.definition.bracket.square.begin.abl"] }, // '['
|
|
214
|
-
{ "startIndex": 54, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
215
|
-
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
216
|
-
{ "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
214
|
+
{ "startIndex": 54, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
215
|
+
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl"] }, // 'p'
|
|
216
|
+
{ "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
217
217
|
{ "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "punctuation.separator.comma.abl"] }, // ','
|
|
218
218
|
{ "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl"] }, // ' '
|
|
219
|
-
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
220
|
-
{ "startIndex": 60, "endIndex": 61, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
221
|
-
{ "startIndex": 61, "endIndex": 62, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
219
|
+
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
220
|
+
{ "startIndex": 60, "endIndex": 61, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl"] }, // 'q'
|
|
221
|
+
{ "startIndex": 61, "endIndex": 62, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
222
222
|
{ "startIndex": 62, "endIndex": 63, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "punctuation.separator.comma.abl"] }, // ','
|
|
223
223
|
{ "startIndex": 63, "endIndex": 64, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl"] }, // ' '
|
|
224
224
|
{ "startIndex": 64, "endIndex": 65, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "constant.language.abl"] }, // '?'
|
|
@@ -16,9 +16,9 @@ describe('', () => {
|
|
|
16
16
|
{ "startIndex": 34, "endIndex": 35, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
17
17
|
{ "startIndex": 35, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'INIT'
|
|
18
18
|
{ "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
19
|
-
{ "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
20
|
-
{ "startIndex": 41, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
21
|
-
{ "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
19
|
+
{ "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
20
|
+
{ "startIndex": 41, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'HEY'
|
|
21
|
+
{ "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
22
22
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
23
23
|
{ "startIndex": 46, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'NO-UNDO'
|
|
24
24
|
{ "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] } // '.'
|
|
@@ -41,9 +41,9 @@ describe('', () => {
|
|
|
41
41
|
{ "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
42
42
|
{ "startIndex": 33, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'INiTIAL'
|
|
43
43
|
{ "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
44
|
-
{ "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
45
|
-
{ "startIndex": 42, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
46
|
-
{ "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
44
|
+
{ "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
45
|
+
{ "startIndex": 42, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'OK'
|
|
46
|
+
{ "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
47
47
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
48
48
|
{ "startIndex": 46, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'NO-UNDO'
|
|
49
49
|
{ "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] } // '.'
|
|
@@ -71,19 +71,19 @@ describe('', () => {
|
|
|
71
71
|
{ "startIndex": 45, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'INIT'
|
|
72
72
|
{ "startIndex": 49, "endIndex": 50, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
73
73
|
{ "startIndex": 50, "endIndex": 51, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "punctuation.definition.bracket.square.begin.abl"] }, // '['
|
|
74
|
-
{ "startIndex": 51, "endIndex": 52, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
75
|
-
{ "startIndex": 52, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
76
|
-
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
74
|
+
{ "startIndex": 51, "endIndex": 52, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
75
|
+
{ "startIndex": 52, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl"] }, // 'HEY'
|
|
76
|
+
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
77
77
|
{ "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "punctuation.separator.comma.abl"] }, // ','
|
|
78
78
|
{ "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl"] }, // ' '
|
|
79
|
-
{ "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
80
|
-
{ "startIndex": 59, "endIndex": 62, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
81
|
-
{ "startIndex": 62, "endIndex": 63, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.double.
|
|
79
|
+
{ "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
80
|
+
{ "startIndex": 59, "endIndex": 62, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl"] }, // 'hop'
|
|
81
|
+
{ "startIndex": 62, "endIndex": 63, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
82
82
|
{ "startIndex": 63, "endIndex": 64, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "punctuation.separator.comma.abl"] }, // ','
|
|
83
83
|
{ "startIndex": 64, "endIndex": 65, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl"] }, // ' '
|
|
84
|
-
{ "startIndex": 65, "endIndex": 66, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.single.
|
|
85
|
-
{ "startIndex": 66, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.single.
|
|
86
|
-
{ "startIndex": 68, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.single.
|
|
84
|
+
{ "startIndex": 65, "endIndex": 66, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
|
|
85
|
+
{ "startIndex": 66, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.single.abl"] }, // 'sd'
|
|
86
|
+
{ "startIndex": 68, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
|
|
87
87
|
{ "startIndex": 69, "endIndex": 70, "scopes": ["source.abl", "meta.define.abl", "meta.array.literal.abl", "punctuation.definition.bracket.square.end.abl"] }, // ']'
|
|
88
88
|
{ "startIndex": 70, "endIndex": 71, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
89
89
|
{ "startIndex": 71, "endIndex": 78, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'NO-UNDO'
|
|
@@ -17,15 +17,15 @@ describe('', () => {
|
|
|
17
17
|
{ "startIndex": 34, "endIndex": 35, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
18
18
|
{ "startIndex": 35, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
19
19
|
{ "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
20
|
-
{ "startIndex": 42, "endIndex": 43, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
21
|
-
{ "startIndex": 43, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
22
|
-
{ "startIndex": 48, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
20
|
+
{ "startIndex": 42, "endIndex": 43, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
21
|
+
{ "startIndex": 43, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'X(50)'
|
|
22
|
+
{ "startIndex": 48, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
23
23
|
{ "startIndex": 49, "endIndex": 50, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
24
24
|
{ "startIndex": 50, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'LABEL'
|
|
25
25
|
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
26
|
-
{ "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
27
|
-
{ "startIndex": 57, "endIndex": 67, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
28
|
-
{ "startIndex": 67, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
26
|
+
{ "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
27
|
+
{ "startIndex": 57, "endIndex": 67, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'NO.MAQUINA'
|
|
28
|
+
{ "startIndex": 67, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
29
29
|
{ "startIndex": 68, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] } // '.'
|
|
30
30
|
];
|
|
31
31
|
shared.itShouldMatchExpectedScopes(statement, expectedTokens);
|
|
@@ -107,9 +107,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
107
107
|
{ "startIndex": 37, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
108
108
|
{ "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
109
109
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
110
|
-
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
111
|
-
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
112
|
-
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
110
|
+
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
111
|
+
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>9.999'
|
|
112
|
+
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
113
113
|
],
|
|
114
114
|
[
|
|
115
115
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -123,9 +123,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
123
123
|
{ "startIndex": 37, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
124
124
|
{ "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
125
125
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
126
|
-
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
127
|
-
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
128
|
-
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
126
|
+
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
127
|
+
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>9.999'
|
|
128
|
+
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
129
129
|
],
|
|
130
130
|
[
|
|
131
131
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -139,9 +139,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
139
139
|
{ "startIndex": 37, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
140
140
|
{ "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
141
141
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
142
|
-
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
143
|
-
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
144
|
-
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
142
|
+
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
143
|
+
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>9.999'
|
|
144
|
+
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
145
145
|
],
|
|
146
146
|
[
|
|
147
147
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -155,9 +155,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
155
155
|
{ "startIndex": 37, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
156
156
|
{ "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
157
157
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
158
|
-
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
159
|
-
{ "startIndex": 47, "endIndex": 58, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
160
|
-
{ "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
158
|
+
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
159
|
+
{ "startIndex": 47, "endIndex": 58, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>,>>9.999'
|
|
160
|
+
{ "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
161
161
|
],
|
|
162
162
|
[
|
|
163
163
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -171,9 +171,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
171
171
|
{ "startIndex": 37, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
172
172
|
{ "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
173
173
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
174
|
-
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
175
|
-
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
176
|
-
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
174
|
+
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
175
|
+
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>9.999'
|
|
176
|
+
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
177
177
|
],
|
|
178
178
|
[
|
|
179
179
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -187,9 +187,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
187
187
|
{ "startIndex": 35, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
188
188
|
{ "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
189
189
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
190
|
-
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
191
|
-
{ "startIndex": 47, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
192
|
-
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
190
|
+
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
191
|
+
{ "startIndex": 47, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '>,>>9.<<'
|
|
192
|
+
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
193
193
|
],
|
|
194
194
|
[
|
|
195
195
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -203,9 +203,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
203
203
|
{ "startIndex": 37, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
204
204
|
{ "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
205
205
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
206
|
-
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
207
|
-
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
208
|
-
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
206
|
+
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
207
|
+
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>9.999'
|
|
208
|
+
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
209
209
|
],
|
|
210
210
|
[
|
|
211
211
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -219,9 +219,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
219
219
|
{ "startIndex": 35, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
220
220
|
{ "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
221
221
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
222
|
-
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
223
|
-
{ "startIndex": 47, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
224
|
-
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
222
|
+
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
223
|
+
{ "startIndex": 47, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '>,>>9.<<'
|
|
224
|
+
{ "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
225
225
|
],
|
|
226
226
|
[
|
|
227
227
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -235,9 +235,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
235
235
|
{ "startIndex": 37, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
236
236
|
{ "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
237
237
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
238
|
-
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
239
|
-
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
240
|
-
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
238
|
+
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
239
|
+
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>9.999'
|
|
240
|
+
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
241
241
|
],
|
|
242
242
|
[
|
|
243
243
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -251,9 +251,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
251
251
|
{ "startIndex": 37, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
252
252
|
{ "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
253
253
|
{ "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
254
|
-
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
255
|
-
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
256
|
-
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
254
|
+
{ "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
255
|
+
{ "startIndex": 47, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>9.999'
|
|
256
|
+
{ "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
|
|
257
257
|
],
|
|
258
258
|
[
|
|
259
259
|
{ "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
@@ -267,9 +267,9 @@ DEFINE TEMP-TABLE inventario
|
|
|
267
267
|
{ "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
268
268
|
{ "startIndex": 34, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
|
|
269
269
|
{ "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
270
|
-
{ "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
271
|
-
{ "startIndex": 42, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
272
|
-
{ "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.double.
|
|
270
|
+
{ "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
|
|
271
|
+
{ "startIndex": 42, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '>,>>9'
|
|
272
|
+
{ "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
|
|
273
273
|
{ "startIndex": 48, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] } // '.'
|
|
274
274
|
],
|
|
275
275
|
[
|
|
@@ -21,9 +21,9 @@ describe('', () => {
|
|
|
21
21
|
{ "startIndex": 11, "endIndex": 12, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
22
22
|
{ "startIndex": 12, "endIndex": 17, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'label'
|
|
23
23
|
{ "startIndex": 17, "endIndex": 18, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
24
|
-
{ "startIndex": 18, "endIndex": 19, "scopes": ["source.abl", "meta.define.abl", "string.single.
|
|
25
|
-
{ "startIndex": 19, "endIndex": 29, "scopes": ["source.abl", "meta.define.abl", "string.single.
|
|
26
|
-
{ "startIndex": 29, "endIndex": 30, "scopes": ["source.abl", "meta.define.abl", "string.single.
|
|
24
|
+
{ "startIndex": 18, "endIndex": 19, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
|
|
25
|
+
{ "startIndex": 19, "endIndex": 29, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl"] }, // 'Test.label'
|
|
26
|
+
{ "startIndex": 29, "endIndex": 30, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
|
|
27
27
|
{ "startIndex": 30, "endIndex": 31, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|
|
28
28
|
{ "startIndex": 31, "endIndex": 36, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'colon'
|
|
29
29
|
{ "startIndex": 36, "endIndex": 37, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
|