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.
Files changed (92) hide show
  1. package/.github/workflows/ci.yml +36 -0
  2. package/CHANGELOG.md +18 -0
  3. package/README.md +17 -12
  4. package/abl.tmLanguage.json +280 -69
  5. package/package.json +1 -1
  6. package/spec/annotations/annotation.spec.js +49 -50
  7. package/spec/blocks/block-labels.spec.js +3 -3
  8. package/spec/blocks/block-options.spec.js +157 -1
  9. package/spec/comments/comment-in-block-statement.spec.js +20 -14
  10. package/spec/comments/comment-in-for-each.spec.js +9 -6
  11. package/spec/comments/comment-in-function-args.spec.js +4 -5
  12. package/spec/comments/vscode-abl-issue#127.spec.js +4 -4
  13. package/spec/create-widgets/create-window.spec.js +11 -8
  14. package/spec/db-table-and-field/buffer-copy.spec.js +45 -39
  15. package/spec/db-table-and-field/create-alias.spec.js +3 -3
  16. package/spec/db-table-and-field/field-in-function.spec.js +6 -6
  17. package/spec/db-table-and-field/foreach.spec.js +3 -3
  18. package/spec/db-table-and-field/issue#88.spec.js +2 -2
  19. package/spec/db-table-and-field/new-record.spec.js +46 -25
  20. package/spec/define/define-browse.spec.js +54 -54
  21. package/spec/define/define-button.spec.js +3 -3
  22. package/spec/define/define-query.spec.js +43 -0
  23. package/spec/define-buffer/create-buffer.spec.js +3 -3
  24. package/spec/define-buffer/simple-single-line.spec.js +9 -9
  25. package/spec/define-frame/issue#173.spec.js +56 -50
  26. package/spec/define-parameter/simple-single-line.spec.js +3 -3
  27. package/spec/define-property/property-getter.spec.js +4 -4
  28. package/spec/define-temp-table/define-dataset.spec.js +23 -17
  29. package/spec/define-temp-table/define-temp-table.spec.js +68 -53
  30. package/spec/define-variable/extent.spec.js +6 -6
  31. package/spec/define-variable/initial.spec.js +15 -15
  32. package/spec/define-variable/issue#6.spec.js +39 -39
  33. package/spec/define-variable/issue#9.spec.js +3 -3
  34. package/spec/define-variable/var-statement.spec.js +7 -4
  35. package/spec/do/do-blocks.spec.js +25 -19
  36. package/spec/for-each/issue#321.spec.js +2 -2
  37. package/spec/function-call/can-find.spec.js +10 -11
  38. package/spec/function-call/misc-abl-functions.spec.js +3 -3
  39. package/spec/function-call/nested-functions.spec.js +21 -22
  40. package/spec/function-call/udf-calls.spec.js +22 -23
  41. package/spec/function-call/vscode-abl-issue#19.spec.js +12 -12
  42. package/spec/global-scoped-define/global-define.spec.js +54 -7
  43. package/spec/global-scoped-define/scoped-define-with-procedure-keyword.spec.js +49 -15
  44. package/spec/global-scoped-define/undefine.spec.js +44 -0
  45. package/spec/include/abl-tmlanguage-issues#5.spec.js +3 -3
  46. package/spec/include/include-file-name.spec.js +16 -4
  47. package/spec/include/unnamed-arguments.spec.js +4 -5
  48. package/spec/include/vscode-abl-issue#45.spec.js +3 -3
  49. package/spec/include/vscode-abl-issue#77.spec.js +16 -17
  50. package/spec/include/vscode-abl-issue#80.spec.js +10 -7
  51. package/spec/input-output/input-from.spec.js +19 -16
  52. package/spec/input-output/output-to.spec.js +15 -15
  53. package/spec/method-attribute-property-call/abl-method-attribute-call.spec.js +16 -17
  54. package/spec/method-attribute-property-call/connected-method.spec.js +3 -4
  55. package/spec/method-attribute-property-call/datset-table-attribute-method-call.spec.js +53 -0
  56. package/spec/method-attribute-property-call/method-call.spec.js +16 -16
  57. package/spec/method-attribute-property-call/unqualified-method-call.spec.js +3 -4
  58. package/spec/method-definition/constructor.spec.js +6 -6
  59. package/spec/method-definition/method.spec.js +12 -12
  60. package/spec/misc-statements/case-statement.spec.js +9 -9
  61. package/spec/misc-statements/class-in-var-name.spec.js +9 -10
  62. package/spec/misc-statements/copy-lob.spec.js +3 -3
  63. package/spec/misc-statements/do-in-name.spec.js +21 -22
  64. package/spec/misc-statements/event-subscribe.spec.js +14 -15
  65. package/spec/misc-statements/export-delimiter.spec.js +6 -6
  66. package/spec/misc-statements/if-then.spec.js +9 -9
  67. package/spec/misc-statements/issue#173.spec.js +3 -4
  68. package/spec/misc-statements/message-statement.spec.js +3 -3
  69. package/spec/misc-statements/record-buffer-functions.spec.js +3 -3
  70. package/spec/misc-statements/release.spec.js +3 -4
  71. package/spec/misc-statements/skip-statement-and-fuction.spec.js +3 -4
  72. package/spec/numbers/scientific-notation.spec.js +212 -0
  73. package/spec/operators/operators.spec.js +10 -10
  74. package/spec/preprocesors/issue166.spec.js +27 -19
  75. package/spec/preprocesors/preprocessor-functions.spec.js +77 -0
  76. package/spec/preprocesors/proparse-preprocessor.spec.js +27 -3
  77. package/spec/procedure-definition/trigger-procedure.spec.js +8 -2
  78. package/spec/procedure-definition/vscode-abl-issue#22.spec.js +3 -3
  79. package/spec/procedure-definition/vscode-abl-issue#26.spec.js +4 -4
  80. package/spec/procedure-definition/vscode-abl-issue#325.spec.js +26 -2
  81. package/spec/procedure-definition/vscode-abl-issue#62.spec.js +7 -4
  82. package/spec/run-statement/run-statement.spec.js +25 -13
  83. package/spec/shared.js +12 -11
  84. package/spec/strings/translation-attribute.spec.js +4 -4
  85. package/spec/strings/vscode-abl-issue#11.spec.js +24 -24
  86. package/spec/strings/vscode-abl-issue#28.spec.js +9 -9
  87. package/spec/type-name/argument.spec.js +11 -12
  88. package/spec/type-name/cast.spec.js +7 -7
  89. package/spec/type-name/define-temp-table.spec.js +6 -6
  90. package/spec/type-name/new.spec.js +3 -3
  91. package/spec/type-name/parameter-as.spec.js +6 -6
  92. package/spec/type-name/type-name.spec.js +22 -20
@@ -52,10 +52,10 @@ describe('', () => {
52
52
  { "startIndex": 29, "endIndex": 30, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
53
53
  { "startIndex": 30, "endIndex": 32, "scopes": ["source.abl", "meta.define.abl", "keyword.operator.source.abl"] }, // 'eq'
54
54
  { "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
55
- { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
56
- { "startIndex": 34, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl"] }, // 'UTF-8'
57
- { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
58
- { "startIndex": 40, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "support.other.abl"] }, // ':u'
55
+ { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
56
+ { "startIndex": 34, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl"] }, // 'UTF-8'
57
+ { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
58
+ { "startIndex": 40, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "support.other.abl"] }, // ':u'
59
59
  { "startIndex": 42, "endIndex": 43, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
60
60
  { "startIndex": 43, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] } // 'then'
61
61
  ],
@@ -34,10 +34,10 @@ ELSE {&WINDOW-NAME} = CURRENT-WINDOW.`;
34
34
  { "startIndex": 23, "endIndex": 24, "scopes": ["source.abl"] }, // ' '
35
35
  { "startIndex": 24, "endIndex": 25, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '='
36
36
  { "startIndex": 25, "endIndex": 26, "scopes": ["source.abl"] }, // ' '
37
- { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
38
- { "startIndex": 27, "endIndex": 30, "scopes": ["source.abl", "string.double.complex.abl"] }, // 'GUI'
39
- { "startIndex": 30, "endIndex": 31, "scopes": ["source.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
40
- { "startIndex": 31, "endIndex": 33, "scopes": ["source.abl", "string.double.complex.abl", "support.other.abl"] }, // ':U'
37
+ { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
38
+ { "startIndex": 27, "endIndex": 30, "scopes": ["source.abl", "string.quoted.double.abl"] }, // 'GUI'
39
+ { "startIndex": 30, "endIndex": 31, "scopes": ["source.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
40
+ { "startIndex": 31, "endIndex": 33, "scopes": ["source.abl", "string.quoted.double.abl", "support.other.abl"] }, // ':U'
41
41
  { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl"] }, // ' '
42
42
  { "startIndex": 34, "endIndex": 38, "scopes": ["source.abl", "keyword.other.abl"] } // 'THEN'
43
43
  ],
@@ -65,9 +65,9 @@ ELSE {&WINDOW-NAME} = CURRENT-WINDOW.`;
65
65
  { "startIndex": 13, "endIndex": 27, "scopes": ["source.abl"] }, // ' '
66
66
  { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '='
67
67
  { "startIndex": 28, "endIndex": 29, "scopes": ["source.abl"] }, // ' '
68
- { "startIndex": 29, "endIndex": 30, "scopes": ["source.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
69
- { "startIndex": 30, "endIndex": 56, "scopes": ["source.abl", "string.double.complex.abl"] }, // 'A/R Customer Statement for'
70
- { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
68
+ { "startIndex": 29, "endIndex": 30, "scopes": ["source.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
69
+ { "startIndex": 30, "endIndex": 56, "scopes": ["source.abl", "string.quoted.double.abl"] }, // 'A/R Customer Statement for'
70
+ { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
71
71
  ],
72
72
  [
73
73
  { "startIndex": 0, "endIndex": 8, "scopes": ["source.abl"] }, // ' '
@@ -209,7 +209,10 @@ ELSE {&WINDOW-NAME} = CURRENT-WINDOW.`;
209
209
  [
210
210
  { "startIndex": 0, "endIndex": 4, "scopes": ["source.abl", "keyword.other.abl"] }, // 'ELSE'
211
211
  { "startIndex": 4, "endIndex": 5, "scopes": ["source.abl"] }, // ' '
212
- { "startIndex": 5, "endIndex": 19, "scopes": ["source.abl", "storage.type.function.abl"] }, // '{&WINDOW-NAME}'
212
+ { "startIndex": 5, "endIndex": 6, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
213
+ { "startIndex": 6, "endIndex": 7, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
214
+ { "startIndex": 7, "endIndex": 18, "scopes": ["source.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'WINDOW-NAME'
215
+ { "startIndex": 18, "endIndex": 19, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
213
216
  { "startIndex": 19, "endIndex": 20, "scopes": ["source.abl"] }, // ' '
214
217
  { "startIndex": 20, "endIndex": 21, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '='
215
218
  { "startIndex": 21, "endIndex": 22, "scopes": ["source.abl"] }, // ' '
@@ -103,9 +103,9 @@ EXCEPT f1 f4 af
103
103
  { "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "meta.function-call.abl"] }, // ' '
104
104
  { "startIndex": 33, "endIndex": 37, "scopes": ["source.abl", "meta.function-call.abl", "support.function.abl"] }, // 'caps'
105
105
  { "startIndex": 37, "endIndex": 38, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "meta.brace.round.js"] }, // '('
106
- { "startIndex": 38, "endIndex": 39, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
107
- { "startIndex": 39, "endIndex": 42, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.double.complex.abl"] }, // 'abf'
108
- { "startIndex": 42, "endIndex": 43, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
106
+ { "startIndex": 38, "endIndex": 39, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
107
+ { "startIndex": 39, "endIndex": 42, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.quoted.double.abl"] }, // 'abf'
108
+ { "startIndex": 42, "endIndex": 43, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
109
109
  { "startIndex": 43, "endIndex": 44, "scopes": ["source.abl", "meta.function-call.abl", "meta.brace.round.js"] } // ')'
110
110
  ],
111
111
  [
@@ -139,11 +139,17 @@ describe('', () => {
139
139
  let expectedTokens = [
140
140
  { "startIndex": 0, "endIndex": 11, "scopes": ["source.abl", "keyword.other.abl"] }, // 'buffer-COPY'
141
141
  { "startIndex": 11, "endIndex": 12, "scopes": ["source.abl"] }, // ' '
142
- { "startIndex": 12, "endIndex": 19, "scopes": ["source.abl", "storage.type.function.abl"] }, // '{&file}'
142
+ { "startIndex": 12, "endIndex": 13, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
143
+ { "startIndex": 13, "endIndex": 14, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
144
+ { "startIndex": 14, "endIndex": 18, "scopes": ["source.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'file'
145
+ { "startIndex": 18, "endIndex": 19, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
143
146
  { "startIndex": 19, "endIndex": 24, "scopes": ["source.abl"] }, // ' '
144
147
  { "startIndex": 24, "endIndex": 26, "scopes": ["source.abl", "keyword.other.abl"] }, // 'to'
145
148
  { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl"] }, // ' '
146
- { "startIndex": 27, "endIndex": 34, "scopes": ["source.abl", "storage.type.function.abl"] }, // '{&file}'
149
+ { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
150
+ { "startIndex": 28, "endIndex": 29, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
151
+ { "startIndex": 29, "endIndex": 33, "scopes": ["source.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'file'
152
+ { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
147
153
  { "startIndex": 34, "endIndex": 35, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '-'
148
154
  { "startIndex": 35, "endIndex": 45, "scopes": ["source.abl"] }, // 'archive '
149
155
  { "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
@@ -156,40 +162,40 @@ describe('', () => {
156
162
  ASSIGN ttPerms0.Can-SubSeq = 0
157
163
  ttPerms0.Can-SubExpr = ?.`;
158
164
  let expectedTokens = [
159
- [
160
- { "startIndex": 0, "endIndex": 11, "scopes": ["source.abl", "keyword.other.abl"] }, // 'BUFFER-COPY'
161
- { "startIndex": 11, "endIndex": 12, "scopes": ["source.abl"] }, // ' '
162
- { "startIndex": 12, "endIndex": 19, "scopes": ["source.abl", "storage.data.table.abl"] }, // 'ttPerms'
163
- { "startIndex": 19, "endIndex": 20, "scopes": ["source.abl"] }, // ' '
164
- { "startIndex": 20, "endIndex": 26, "scopes": ["source.abl", "keyword.other.abl"] }, // 'EXCEPT'
165
- { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl"] }, // ' '
166
- { "startIndex": 27, "endIndex": 37, "scopes": ["source.abl", "storage.data.table.abl"] }, // 'Can-SubSeq'
167
- { "startIndex": 37, "endIndex": 38, "scopes": ["source.abl"] }, // ' '
168
- { "startIndex": 38, "endIndex": 49, "scopes": ["source.abl", "storage.data.table.abl"] }, // 'Can-SubExpr'
169
- { "startIndex": 49, "endIndex": 50, "scopes": ["source.abl"] }, // ' '
170
- { "startIndex": 50, "endIndex": 52, "scopes": ["source.abl", "keyword.other.abl"] }, // 'TO'
171
- { "startIndex": 52, "endIndex": 53, "scopes": ["source.abl"] }, // ' '
172
- { "startIndex": 53, "endIndex": 61, "scopes": ["source.abl", "storage.data.table.abl"] } // 'ttPerms0'
173
- ],
174
- [
175
- { "startIndex": 0, "endIndex": 28, "scopes": ["source.abl"] }, // ' '
176
- { "startIndex": 28, "endIndex": 34, "scopes": ["source.abl", "keyword.other.abl"] }, // 'ASSIGN'
177
- { "startIndex": 34, "endIndex": 35, "scopes": ["source.abl"] }, // ' '
178
- { "startIndex": 35, "endIndex": 54, "scopes": ["source.abl", "storage.data.table.abl"] }, // 'ttPerms0.Can-SubSeq'
179
- { "startIndex": 54, "endIndex": 55, "scopes": ["source.abl"] }, // ' '
180
- { "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '='
181
- { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl"] }, // ' '
182
- { "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "constant.numeric.source.abl"] } // '0'
183
- ],
184
- [
185
- { "startIndex": 0, "endIndex": 35, "scopes": ["source.abl"] }, // ' '
186
- { "startIndex": 35, "endIndex": 55, "scopes": ["source.abl", "storage.data.table.abl"] }, // 'ttPerms0.Can-SubExpr'
187
- { "startIndex": 55, "endIndex": 56, "scopes": ["source.abl"] }, // ' '
188
- { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '='
189
- { "startIndex": 57, "endIndex": 58, "scopes": ["source.abl"] }, // ' '
190
- { "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "constant.language.abl"] }, // '?'
191
- { "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
192
- ]
165
+ [
166
+ { "startIndex": 0, "endIndex": 11, "scopes": ["source.abl", "keyword.other.abl"] }, // 'BUFFER-COPY'
167
+ { "startIndex": 11, "endIndex": 12, "scopes": ["source.abl"] }, // ' '
168
+ { "startIndex": 12, "endIndex": 19, "scopes": ["source.abl", "storage.data.table.abl"] }, // 'ttPerms'
169
+ { "startIndex": 19, "endIndex": 20, "scopes": ["source.abl"] }, // ' '
170
+ { "startIndex": 20, "endIndex": 26, "scopes": ["source.abl", "keyword.other.abl"] }, // 'EXCEPT'
171
+ { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl"] }, // ' '
172
+ { "startIndex": 27, "endIndex": 37, "scopes": ["source.abl", "storage.data.table.abl"] }, // 'Can-SubSeq'
173
+ { "startIndex": 37, "endIndex": 38, "scopes": ["source.abl"] }, // ' '
174
+ { "startIndex": 38, "endIndex": 49, "scopes": ["source.abl", "storage.data.table.abl"] }, // 'Can-SubExpr'
175
+ { "startIndex": 49, "endIndex": 50, "scopes": ["source.abl"] }, // ' '
176
+ { "startIndex": 50, "endIndex": 52, "scopes": ["source.abl", "keyword.other.abl"] }, // 'TO'
177
+ { "startIndex": 52, "endIndex": 53, "scopes": ["source.abl"] }, // ' '
178
+ { "startIndex": 53, "endIndex": 61, "scopes": ["source.abl", "storage.data.table.abl"] } // 'ttPerms0'
179
+ ],
180
+ [
181
+ { "startIndex": 0, "endIndex": 28, "scopes": ["source.abl"] }, // ' '
182
+ { "startIndex": 28, "endIndex": 34, "scopes": ["source.abl", "keyword.other.abl"] }, // 'ASSIGN'
183
+ { "startIndex": 34, "endIndex": 35, "scopes": ["source.abl"] }, // ' '
184
+ { "startIndex": 35, "endIndex": 54, "scopes": ["source.abl", "storage.data.table.abl"] }, // 'ttPerms0.Can-SubSeq'
185
+ { "startIndex": 54, "endIndex": 55, "scopes": ["source.abl"] }, // ' '
186
+ { "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '='
187
+ { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl"] }, // ' '
188
+ { "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "constant.numeric.source.abl"] } // '0'
189
+ ],
190
+ [
191
+ { "startIndex": 0, "endIndex": 35, "scopes": ["source.abl"] }, // ' '
192
+ { "startIndex": 35, "endIndex": 55, "scopes": ["source.abl", "storage.data.table.abl"] }, // 'ttPerms0.Can-SubExpr'
193
+ { "startIndex": 55, "endIndex": 56, "scopes": ["source.abl"] }, // ' '
194
+ { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '='
195
+ { "startIndex": 57, "endIndex": 58, "scopes": ["source.abl"] }, // ' '
196
+ { "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "constant.language.abl"] }, // '?'
197
+ { "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
198
+ ]
193
199
  ];
194
200
  shared.itShouldMatchExpectedScopes(statement, expectedTokens);
195
201
  })
@@ -83,9 +83,9 @@ describe('', () => {
83
83
  { "startIndex": 6, "endIndex": 7, "scopes": ["source.abl"] }, // ' '
84
84
  { "startIndex": 7, "endIndex": 12, "scopes": ["source.abl", "keyword.other.abl"] }, // 'ALIAS'
85
85
  { "startIndex": 12, "endIndex": 13, "scopes": ["source.abl"] }, // ' '
86
- { "startIndex": 13, "endIndex": 14, "scopes": ["source.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
87
- { "startIndex": 14, "endIndex": 21, "scopes": ["source.abl", "string.double.complex.abl"] }, // 'DICTDB2'
88
- { "startIndex": 21, "endIndex": 22, "scopes": ["source.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
86
+ { "startIndex": 13, "endIndex": 14, "scopes": ["source.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
87
+ { "startIndex": 14, "endIndex": 21, "scopes": ["source.abl", "string.quoted.double.abl"] }, // 'DICTDB2'
88
+ { "startIndex": 21, "endIndex": 22, "scopes": ["source.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
89
89
  { "startIndex": 22, "endIndex": 23, "scopes": ["source.abl"] }, // ' '
90
90
  { "startIndex": 23, "endIndex": 26, "scopes": ["source.abl", "keyword.other.abl"] }, // 'FOR'
91
91
  { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl"] }, // ' '
@@ -23,9 +23,9 @@ describe('', () => {
23
23
  { "startIndex": 29, "endIndex": 56, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "storage.data.table.abl"] }, // 'oe-credit-class.DESCRIPTION'
24
24
  { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "punctuation.separator.comma.abl"] }, // ','
25
25
  { "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl"] }, // ' '
26
- { "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
27
- { "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.double.complex.abl"] }, // ' '
28
- { "startIndex": 60, "endIndex": 61, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
26
+ { "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
27
+ { "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.quoted.double.abl"] }, // ' '
28
+ { "startIndex": 60, "endIndex": 61, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
29
29
  { "startIndex": 61, "endIndex": 62, "scopes": ["source.abl", "meta.function-call.abl", "meta.brace.round.js"] }, // ')'
30
30
  { "startIndex": 62, "endIndex": 63, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
31
31
  ]
@@ -48,9 +48,9 @@ describe('', () => {
48
48
  { "startIndex": 28, "endIndex": 55, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "storage.data.table.abl"] }, // 'oe-credit-class.DESCRIPTION'
49
49
  { "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "punctuation.separator.comma.abl"] }, // ','
50
50
  { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl"] }, // ' '
51
- { "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
52
- { "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.double.complex.abl"] }, // ' '
53
- { "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
51
+ { "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
52
+ { "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.quoted.double.abl"] }, // ' '
53
+ { "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
54
54
  { "startIndex": 60, "endIndex": 61, "scopes": ["source.abl", "meta.function-call.abl", "meta.brace.round.js"] }, // ')'
55
55
  { "startIndex": 61, "endIndex": 62, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
56
56
  ];
@@ -29,9 +29,9 @@ describe('', () => {
29
29
  { "startIndex": 70, "endIndex": 71, "scopes": ["source.abl"] }, // ' '
30
30
  { "startIndex": 71, "endIndex": 77, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // 'begins'
31
31
  { "startIndex": 77, "endIndex": 78, "scopes": ["source.abl"] }, // ' '
32
- { "startIndex": 78, "endIndex": 79, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
33
- { "startIndex": 79, "endIndex": 80, "scopes": ["source.abl", "string.single.complex.abl"] }, // 'd'
34
- { "startIndex": 80, "endIndex": 81, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
32
+ { "startIndex": 78, "endIndex": 79, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
33
+ { "startIndex": 79, "endIndex": 80, "scopes": ["source.abl", "string.quoted.single.abl"] }, // 'd'
34
+ { "startIndex": 80, "endIndex": 81, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
35
35
  { "startIndex": 81, "endIndex": 82, "scopes": ["source.abl"] }, // ' '
36
36
  { "startIndex": 82, "endIndex": 89, "scopes": ["source.abl", "keyword.other.abl"] }, // 'no-lock'
37
37
  { "startIndex": 89, "endIndex": 90, "scopes": ["source.abl", "punctuation.separator.comma.abl"] }, // ','
@@ -95,8 +95,8 @@ describe('', () => {
95
95
  { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl"] }, // ' '
96
96
  { "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '='
97
97
  { "startIndex": 42, "endIndex": 43, "scopes": ["source.abl"] }, // ' '
98
- { "startIndex": 43, "endIndex": 44, "scopes": ["source.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
99
- { "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
98
+ { "startIndex": 43, "endIndex": 44, "scopes": ["source.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
99
+ { "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
100
100
  { "startIndex": 45, "endIndex": 46, "scopes": ["source.abl"] }, // ' '
101
101
  { "startIndex": 46, "endIndex": 53, "scopes": ["source.abl", "keyword.other.abl"] }, // 'no-lock'
102
102
  { "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "punctuation.terminator.abl"] } // ':'
@@ -17,9 +17,9 @@ describe('', () => {
17
17
  { "startIndex": 23, "endIndex": 24, "scopes": ["source.abl"] }, // ' '
18
18
  { "startIndex": 24, "endIndex": 31, "scopes": ["source.abl", "keyword.other.abl"] }, // 'message'
19
19
  { "startIndex": 31, "endIndex": 32, "scopes": ["source.abl"] }, // ' '
20
- { "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
21
- { "startIndex": 33, "endIndex": 36, "scopes": ["source.abl", "string.single.complex.abl"] }, // 'new'
22
- { "startIndex": 36, "endIndex": 37, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
20
+ { "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
21
+ { "startIndex": 33, "endIndex": 36, "scopes": ["source.abl", "string.quoted.single.abl"] }, // 'new'
22
+ { "startIndex": 36, "endIndex": 37, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
23
23
  { "startIndex": 37, "endIndex": 38, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
24
24
  ];
25
25
  shared.itShouldMatchExpectedScopes(statement, expectedTokens);
@@ -38,9 +38,9 @@ describe('', () => {
38
38
  { "startIndex": 20, "endIndex": 21, "scopes": ["source.abl"] }, // ' '
39
39
  { "startIndex": 21, "endIndex": 28, "scopes": ["source.abl", "keyword.other.abl"] }, // 'message'
40
40
  { "startIndex": 28, "endIndex": 29, "scopes": ["source.abl"] }, // ' '
41
- { "startIndex": 29, "endIndex": 30, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
42
- { "startIndex": 30, "endIndex": 33, "scopes": ["source.abl", "string.single.complex.abl"] }, // 'new'
43
- { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
41
+ { "startIndex": 29, "endIndex": 30, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
42
+ { "startIndex": 30, "endIndex": 33, "scopes": ["source.abl", "string.quoted.single.abl"] }, // 'new'
43
+ { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
44
44
  { "startIndex": 34, "endIndex": 35, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
45
45
  ];
46
46
  shared.itShouldMatchExpectedScopes(statement, expectedTokens);
@@ -62,9 +62,9 @@ describe('', () => {
62
62
  { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl"] }, // ' '
63
63
  { "startIndex": 28, "endIndex": 35, "scopes": ["source.abl", "keyword.other.abl"] }, // 'message'
64
64
  { "startIndex": 35, "endIndex": 36, "scopes": ["source.abl"] }, // ' '
65
- { "startIndex": 36, "endIndex": 37, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
66
- { "startIndex": 37, "endIndex": 40, "scopes": ["source.abl", "string.single.complex.abl"] }, // 'new'
67
- { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
65
+ { "startIndex": 36, "endIndex": 37, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
66
+ { "startIndex": 37, "endIndex": 40, "scopes": ["source.abl", "string.quoted.single.abl"] }, // 'new'
67
+ { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
68
68
  { "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
69
69
  ];
70
70
  shared.itShouldMatchExpectedScopes(statement, expectedTokens);
@@ -83,9 +83,9 @@ describe('', () => {
83
83
  { "startIndex": 24, "endIndex": 25, "scopes": ["source.abl"] }, // ' '
84
84
  { "startIndex": 25, "endIndex": 32, "scopes": ["source.abl", "keyword.other.abl"] }, // 'message'
85
85
  { "startIndex": 32, "endIndex": 33, "scopes": ["source.abl"] }, // ' '
86
- { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
87
- { "startIndex": 34, "endIndex": 37, "scopes": ["source.abl", "string.single.complex.abl"] }, // 'new'
88
- { "startIndex": 37, "endIndex": 38, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
86
+ { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
87
+ { "startIndex": 34, "endIndex": 37, "scopes": ["source.abl", "string.quoted.single.abl"] }, // 'new'
88
+ { "startIndex": 37, "endIndex": 38, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
89
89
  { "startIndex": 38, "endIndex": 39, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
90
90
  ];
91
91
  shared.itShouldMatchExpectedScopes(statement, expectedTokens);
@@ -107,9 +107,9 @@ describe('', () => {
107
107
  { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl"] }, // ' '
108
108
  { "startIndex": 28, "endIndex": 35, "scopes": ["source.abl", "keyword.other.abl"] }, // 'message'
109
109
  { "startIndex": 35, "endIndex": 36, "scopes": ["source.abl"] }, // ' '
110
- { "startIndex": 36, "endIndex": 37, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
111
- { "startIndex": 37, "endIndex": 40, "scopes": ["source.abl", "string.single.complex.abl"] }, // 'new'
112
- { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
110
+ { "startIndex": 36, "endIndex": 37, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
111
+ { "startIndex": 37, "endIndex": 40, "scopes": ["source.abl", "string.quoted.single.abl"] }, // 'new'
112
+ { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
113
113
  { "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
114
114
  ];
115
115
  shared.itShouldMatchExpectedScopes(statement, expectedTokens);
@@ -128,9 +128,9 @@ describe('', () => {
128
128
  { "startIndex": 18, "endIndex": 19, "scopes": ["source.abl"] }, // ' '
129
129
  { "startIndex": 19, "endIndex": 26, "scopes": ["source.abl", "keyword.other.abl"] }, // 'message'
130
130
  { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl"] }, // ' '
131
- { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
132
- { "startIndex": 28, "endIndex": 31, "scopes": ["source.abl", "string.single.complex.abl"] }, // 'new'
133
- { "startIndex": 31, "endIndex": 32, "scopes": ["source.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
131
+ { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
132
+ { "startIndex": 28, "endIndex": 31, "scopes": ["source.abl", "string.quoted.single.abl"] }, // 'new'
133
+ { "startIndex": 31, "endIndex": 32, "scopes": ["source.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
134
134
  { "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
135
135
  ];
136
136
  shared.itShouldMatchExpectedScopes(statement, expectedTokens);
@@ -144,18 +144,27 @@ describe('', () => {
144
144
  { "startIndex": 3, "endIndex": 6, "scopes": ["source.abl", "meta.function-call.abl", "support.function.abl"] }, // 'new'
145
145
  { "startIndex": 6, "endIndex": 7, "scopes": ["source.abl", "meta.function-call.abl"] }, // ' '
146
146
  { "startIndex": 7, "endIndex": 8, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "meta.brace.round.js"] }, // '('
147
- { "startIndex": 8, "endIndex": 15, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "storage.type.function.abl"] }, // '{&file}'
147
+ { "startIndex": 8, "endIndex": 9, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
148
+ { "startIndex": 9, "endIndex": 10, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
149
+ { "startIndex": 10, "endIndex": 14, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'file'
150
+ { "startIndex": 14, "endIndex": 15, "scopes": ["source.abl", "meta.function-call.abl", "meta.function.arguments.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
148
151
  { "startIndex": 15, "endIndex": 16, "scopes": ["source.abl", "meta.function-call.abl", "meta.brace.round.js"] }, // ')'
149
152
  { "startIndex": 16, "endIndex": 17, "scopes": ["source.abl"] }, // ' '
150
153
  { "startIndex": 17, "endIndex": 19, "scopes": ["source.abl", "keyword.other.abl"] }, // 'or'
151
154
  { "startIndex": 19, "endIndex": 20, "scopes": ["source.abl"] }, // ' '
152
- { "startIndex": 20, "endIndex": 27, "scopes": ["source.abl", "storage.type.function.abl"] }, // '{&file}'
155
+ { "startIndex": 20, "endIndex": 21, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
156
+ { "startIndex": 21, "endIndex": 22, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
157
+ { "startIndex": 22, "endIndex": 26, "scopes": ["source.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'file'
158
+ { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
153
159
  { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "punctuation.terminator.abl"] }, // '.'
154
160
  { "startIndex": 28, "endIndex": 33, "scopes": ["source.abl"] }, // 'name '
155
161
  { "startIndex": 33, "endIndex": 35, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '<>'
156
162
  { "startIndex": 35, "endIndex": 39, "scopes": ["source.abl"] }, // ' old'
157
163
  { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '-'
158
- { "startIndex": 40, "endIndex": 47, "scopes": ["source.abl", "storage.type.function.abl"] }, // '{&file}'
164
+ { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
165
+ { "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
166
+ { "startIndex": 42, "endIndex": 46, "scopes": ["source.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'file'
167
+ { "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
159
168
  { "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "punctuation.terminator.abl"] }, // '.'
160
169
  { "startIndex": 48, "endIndex": 53, "scopes": ["source.abl"] }, // 'name '
161
170
  { "startIndex": 53, "endIndex": 57, "scopes": ["source.abl", "keyword.other.abl"] }, // 'then'
@@ -175,13 +184,19 @@ describe('', () => {
175
184
  { "startIndex": 14, "endIndex": 15, "scopes": ["source.abl"] }, // ' '
176
185
  { "startIndex": 15, "endIndex": 17, "scopes": ["source.abl", "keyword.other.abl"] }, // 'or'
177
186
  { "startIndex": 17, "endIndex": 18, "scopes": ["source.abl"] }, // ' '
178
- { "startIndex": 18, "endIndex": 25, "scopes": ["source.abl", "storage.type.function.abl"] }, // '{&file}'
187
+ { "startIndex": 18, "endIndex": 19, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
188
+ { "startIndex": 19, "endIndex": 20, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
189
+ { "startIndex": 20, "endIndex": 24, "scopes": ["source.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'file'
190
+ { "startIndex": 24, "endIndex": 25, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
179
191
  { "startIndex": 25, "endIndex": 26, "scopes": ["source.abl", "punctuation.terminator.abl"] }, // '.'
180
192
  { "startIndex": 26, "endIndex": 31, "scopes": ["source.abl"] }, // 'name '
181
193
  { "startIndex": 31, "endIndex": 33, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '<>'
182
194
  { "startIndex": 33, "endIndex": 37, "scopes": ["source.abl"] }, // ' old'
183
195
  { "startIndex": 37, "endIndex": 38, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '-'
184
- { "startIndex": 38, "endIndex": 45, "scopes": ["source.abl", "storage.type.function.abl"] }, // '{&file}'
196
+ { "startIndex": 38, "endIndex": 39, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
197
+ { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
198
+ { "startIndex": 40, "endIndex": 44, "scopes": ["source.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'file'
199
+ { "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
185
200
  { "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "punctuation.terminator.abl"] }, // '.'
186
201
  { "startIndex": 46, "endIndex": 51, "scopes": ["source.abl"] }, // 'name '
187
202
  { "startIndex": 51, "endIndex": 55, "scopes": ["source.abl", "keyword.other.abl"] }, // 'then'
@@ -202,13 +217,19 @@ describe('', () => {
202
217
  { "startIndex": 19, "endIndex": 21, "scopes": ["source.abl", "keyword.other.abl"] }, // 'or'
203
218
  { "startIndex": 21, "endIndex": 25, "scopes": ["source.abl"] }, // ' buf'
204
219
  { "startIndex": 25, "endIndex": 26, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '-'
205
- { "startIndex": 26, "endIndex": 33, "scopes": ["source.abl", "storage.type.function.abl"] }, // '{&file}'
220
+ { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
221
+ { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
222
+ { "startIndex": 28, "endIndex": 32, "scopes": ["source.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'file'
223
+ { "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
206
224
  { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "punctuation.terminator.abl"] }, // '.'
207
225
  { "startIndex": 34, "endIndex": 39, "scopes": ["source.abl"] }, // 'name '
208
226
  { "startIndex": 39, "endIndex": 41, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '<>'
209
227
  { "startIndex": 41, "endIndex": 45, "scopes": ["source.abl"] }, // ' old'
210
228
  { "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "keyword.operator.source.abl"] }, // '-'
211
- { "startIndex": 46, "endIndex": 53, "scopes": ["source.abl", "storage.type.function.abl"] }, // '{&file}'
229
+ { "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '{'
230
+ { "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
231
+ { "startIndex": 48, "endIndex": 52, "scopes": ["source.abl", "meta.preprocessor.abl", "entity.name.function.preprocessor.abl"] }, // 'file'
232
+ { "startIndex": 52, "endIndex": 53, "scopes": ["source.abl", "meta.preprocessor.abl", "punctuation.section.abl"] }, // '}'
212
233
  { "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "punctuation.terminator.abl"] }, // '.'
213
234
  { "startIndex": 54, "endIndex": 59, "scopes": ["source.abl"] }, // 'name '
214
235
  { "startIndex": 59, "endIndex": 63, "scopes": ["source.abl", "keyword.other.abl"] }, // 'then'