abl-tmlanguage 1.3.16 → 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 (90) hide show
  1. package/.github/workflows/ci.yml +36 -0
  2. package/CHANGELOG.md +10 -0
  3. package/README.md +17 -12
  4. package/abl.tmLanguage.json +246 -74
  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 +9 -7
  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-buffer/create-buffer.spec.js +3 -3
  23. package/spec/define-buffer/simple-single-line.spec.js +9 -9
  24. package/spec/define-frame/issue#173.spec.js +56 -50
  25. package/spec/define-parameter/simple-single-line.spec.js +3 -3
  26. package/spec/define-property/property-getter.spec.js +4 -4
  27. package/spec/define-temp-table/define-dataset.spec.js +23 -17
  28. package/spec/define-temp-table/define-temp-table.spec.js +68 -53
  29. package/spec/define-variable/extent.spec.js +6 -6
  30. package/spec/define-variable/initial.spec.js +15 -15
  31. package/spec/define-variable/issue#6.spec.js +39 -39
  32. package/spec/define-variable/issue#9.spec.js +3 -3
  33. package/spec/define-variable/var-statement.spec.js +7 -4
  34. package/spec/do/do-blocks.spec.js +24 -18
  35. package/spec/for-each/issue#321.spec.js +2 -2
  36. package/spec/function-call/can-find.spec.js +10 -11
  37. package/spec/function-call/misc-abl-functions.spec.js +3 -3
  38. package/spec/function-call/nested-functions.spec.js +21 -22
  39. package/spec/function-call/udf-calls.spec.js +22 -23
  40. package/spec/function-call/vscode-abl-issue#19.spec.js +12 -12
  41. package/spec/global-scoped-define/global-define.spec.js +54 -7
  42. package/spec/global-scoped-define/scoped-define-with-procedure-keyword.spec.js +49 -15
  43. package/spec/global-scoped-define/undefine.spec.js +44 -0
  44. package/spec/include/abl-tmlanguage-issues#5.spec.js +3 -3
  45. package/spec/include/include-file-name.spec.js +16 -4
  46. package/spec/include/unnamed-arguments.spec.js +4 -5
  47. package/spec/include/vscode-abl-issue#45.spec.js +3 -3
  48. package/spec/include/vscode-abl-issue#77.spec.js +16 -17
  49. package/spec/include/vscode-abl-issue#80.spec.js +10 -7
  50. package/spec/input-output/input-from.spec.js +19 -16
  51. package/spec/input-output/output-to.spec.js +15 -15
  52. package/spec/method-attribute-property-call/abl-method-attribute-call.spec.js +16 -17
  53. package/spec/method-attribute-property-call/connected-method.spec.js +3 -4
  54. package/spec/method-attribute-property-call/datset-table-attribute-method-call.spec.js +12 -12
  55. package/spec/method-attribute-property-call/method-call.spec.js +16 -16
  56. package/spec/method-attribute-property-call/unqualified-method-call.spec.js +3 -4
  57. package/spec/method-definition/constructor.spec.js +6 -6
  58. package/spec/method-definition/method.spec.js +12 -12
  59. package/spec/misc-statements/case-statement.spec.js +9 -9
  60. package/spec/misc-statements/class-in-var-name.spec.js +8 -9
  61. package/spec/misc-statements/copy-lob.spec.js +3 -3
  62. package/spec/misc-statements/do-in-name.spec.js +21 -22
  63. package/spec/misc-statements/event-subscribe.spec.js +14 -15
  64. package/spec/misc-statements/export-delimiter.spec.js +6 -6
  65. package/spec/misc-statements/if-then.spec.js +9 -9
  66. package/spec/misc-statements/issue#173.spec.js +3 -4
  67. package/spec/misc-statements/message-statement.spec.js +3 -3
  68. package/spec/misc-statements/record-buffer-functions.spec.js +3 -3
  69. package/spec/misc-statements/release.spec.js +3 -4
  70. package/spec/misc-statements/skip-statement-and-fuction.spec.js +3 -4
  71. package/spec/numbers/scientific-notation.spec.js +212 -0
  72. package/spec/operators/operators.spec.js +10 -10
  73. package/spec/preprocesors/issue166.spec.js +27 -19
  74. package/spec/preprocesors/preprocessor-functions.spec.js +77 -0
  75. package/spec/preprocesors/proparse-preprocessor.spec.js +27 -3
  76. package/spec/procedure-definition/trigger-procedure.spec.js +8 -2
  77. package/spec/procedure-definition/vscode-abl-issue#22.spec.js +3 -3
  78. package/spec/procedure-definition/vscode-abl-issue#26.spec.js +4 -4
  79. package/spec/procedure-definition/vscode-abl-issue#325.spec.js +26 -2
  80. package/spec/procedure-definition/vscode-abl-issue#62.spec.js +7 -4
  81. package/spec/run-statement/run-statement.spec.js +25 -13
  82. package/spec/strings/translation-attribute.spec.js +4 -4
  83. package/spec/strings/vscode-abl-issue#11.spec.js +24 -24
  84. package/spec/strings/vscode-abl-issue#28.spec.js +9 -9
  85. package/spec/type-name/argument.spec.js +11 -12
  86. package/spec/type-name/cast.spec.js +7 -7
  87. package/spec/type-name/define-temp-table.spec.js +6 -6
  88. package/spec/type-name/new.spec.js +3 -3
  89. package/spec/type-name/parameter-as.spec.js +6 -6
  90. package/spec/type-name/type-name.spec.js +21 -19
@@ -53,15 +53,15 @@ describe('', () => {
53
53
  { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
54
54
  { "startIndex": 27, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
55
55
  { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
56
- { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
57
- { "startIndex": 41, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Ref Date'
58
- { "startIndex": 49, "endIndex": 50, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
56
+ { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
57
+ { "startIndex": 41, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Ref Date'
58
+ { "startIndex": 49, "endIndex": 50, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
59
59
  { "startIndex": 50, "endIndex": 51, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
60
60
  { "startIndex": 51, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
61
61
  { "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
62
- { "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
63
- { "startIndex": 59, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // '99/99/9999'
64
- { "startIndex": 69, "endIndex": 70, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
62
+ { "startIndex": 58, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
63
+ { "startIndex": 59, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '99/99/9999'
64
+ { "startIndex": 69, "endIndex": 70, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
65
65
  ],
66
66
  [
67
67
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -69,15 +69,15 @@ describe('', () => {
69
69
  { "startIndex": 25, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
70
70
  { "startIndex": 26, "endIndex": 38, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
71
71
  { "startIndex": 38, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
72
- { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
73
- { "startIndex": 40, "endIndex": 51, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Open Amount'
74
- { "startIndex": 51, "endIndex": 52, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
72
+ { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
73
+ { "startIndex": 40, "endIndex": 51, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Open Amount'
74
+ { "startIndex": 51, "endIndex": 52, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
75
75
  { "startIndex": 52, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
76
76
  { "startIndex": 53, "endIndex": 59, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
77
77
  { "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
78
- { "startIndex": 60, "endIndex": 61, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
79
- { "startIndex": 61, "endIndex": 76, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // '->>>,>>>,>>9.99'
80
- { "startIndex": 76, "endIndex": 77, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
78
+ { "startIndex": 60, "endIndex": 61, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
79
+ { "startIndex": 61, "endIndex": 76, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>>,>>9.99'
80
+ { "startIndex": 76, "endIndex": 77, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
81
81
  ],
82
82
  [
83
83
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -89,15 +89,15 @@ describe('', () => {
89
89
  { "startIndex": 30, "endIndex": 31, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
90
90
  { "startIndex": 31, "endIndex": 43, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
91
91
  { "startIndex": 43, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
92
- { "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
93
- { "startIndex": 45, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Cust Ref'
94
- { "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
92
+ { "startIndex": 44, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
93
+ { "startIndex": 45, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Cust Ref'
94
+ { "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
95
95
  { "startIndex": 54, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
96
96
  { "startIndex": 55, "endIndex": 61, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
97
97
  { "startIndex": 61, "endIndex": 62, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
98
- { "startIndex": 62, "endIndex": 63, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
99
- { "startIndex": 63, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'X(12)'
100
- { "startIndex": 68, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
98
+ { "startIndex": 62, "endIndex": 63, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
99
+ { "startIndex": 63, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'X(12)'
100
+ { "startIndex": 68, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
101
101
  ],
102
102
  [
103
103
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -105,9 +105,9 @@ describe('', () => {
105
105
  { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
106
106
  { "startIndex": 34, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
107
107
  { "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
108
- { "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
109
- { "startIndex": 48, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Remark'
110
- { "startIndex": 54, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
108
+ { "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
109
+ { "startIndex": 48, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Remark'
110
+ { "startIndex": 54, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
111
111
  ],
112
112
  [
113
113
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -123,15 +123,15 @@ describe('', () => {
123
123
  { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
124
124
  { "startIndex": 27, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
125
125
  { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
126
- { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
127
- { "startIndex": 41, "endIndex": 61, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Open Discount Amount'
128
- { "startIndex": 61, "endIndex": 62, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
126
+ { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
127
+ { "startIndex": 41, "endIndex": 61, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Open Discount Amount'
128
+ { "startIndex": 61, "endIndex": 62, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
129
129
  { "startIndex": 62, "endIndex": 63, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
130
130
  { "startIndex": 63, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
131
131
  { "startIndex": 69, "endIndex": 70, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
132
- { "startIndex": 70, "endIndex": 71, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
133
- { "startIndex": 71, "endIndex": 85, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // '>>>,>>>,>>9.99'
134
- { "startIndex": 85, "endIndex": 86, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
132
+ { "startIndex": 70, "endIndex": 71, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
133
+ { "startIndex": 71, "endIndex": 85, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '>>>,>>>,>>9.99'
134
+ { "startIndex": 85, "endIndex": 86, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
135
135
  ],
136
136
  [
137
137
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -139,15 +139,15 @@ describe('', () => {
139
139
  { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
140
140
  { "startIndex": 27, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
141
141
  { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
142
- { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
143
- { "startIndex": 41, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Original Amount'
144
- { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
142
+ { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
143
+ { "startIndex": 41, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Original Amount'
144
+ { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
145
145
  { "startIndex": 57, "endIndex": 58, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
146
146
  { "startIndex": 58, "endIndex": 64, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
147
147
  { "startIndex": 64, "endIndex": 65, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
148
- { "startIndex": 65, "endIndex": 66, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
149
- { "startIndex": 66, "endIndex": 81, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // '->>>,>>>,>>9.99'
150
- { "startIndex": 81, "endIndex": 82, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
148
+ { "startIndex": 65, "endIndex": 66, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
149
+ { "startIndex": 66, "endIndex": 81, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>>,>>9.99'
150
+ { "startIndex": 81, "endIndex": 82, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
151
151
  ],
152
152
  [
153
153
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -155,9 +155,9 @@ describe('', () => {
155
155
  { "startIndex": 34, "endIndex": 35, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
156
156
  { "startIndex": 35, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
157
157
  { "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
158
- { "startIndex": 48, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
159
- { "startIndex": 49, "endIndex": 65, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Entered Currency'
160
- { "startIndex": 65, "endIndex": 66, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
158
+ { "startIndex": 48, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
159
+ { "startIndex": 49, "endIndex": 65, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Entered Currency'
160
+ { "startIndex": 65, "endIndex": 66, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
161
161
  ],
162
162
  [
163
163
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -165,15 +165,15 @@ describe('', () => {
165
165
  { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
166
166
  { "startIndex": 34, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
167
167
  { "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
168
- { "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
169
- { "startIndex": 48, "endIndex": 78, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Open Amount (Entered Currency)'
170
- { "startIndex": 78, "endIndex": 79, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
168
+ { "startIndex": 47, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
169
+ { "startIndex": 48, "endIndex": 78, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Open Amount (Entered Currency)'
170
+ { "startIndex": 78, "endIndex": 79, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
171
171
  { "startIndex": 79, "endIndex": 80, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
172
172
  { "startIndex": 80, "endIndex": 86, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
173
173
  { "startIndex": 86, "endIndex": 87, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
174
- { "startIndex": 87, "endIndex": 88, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
175
- { "startIndex": 88, "endIndex": 103, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // '->>>,>>>,>>9.99'
176
- { "startIndex": 103, "endIndex": 104, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
174
+ { "startIndex": 87, "endIndex": 88, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
175
+ { "startIndex": 88, "endIndex": 103, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>>,>>9.99'
176
+ { "startIndex": 103, "endIndex": 104, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
177
177
  ],
178
178
  [
179
179
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -181,9 +181,9 @@ describe('', () => {
181
181
  { "startIndex": 38, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
182
182
  { "startIndex": 39, "endIndex": 51, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
183
183
  { "startIndex": 51, "endIndex": 52, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
184
- { "startIndex": 52, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
185
- { "startIndex": 53, "endIndex": 92, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Open Discount Amount (Entered Currency)'
186
- { "startIndex": 92, "endIndex": 93, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
184
+ { "startIndex": 52, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
185
+ { "startIndex": 53, "endIndex": 92, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Open Discount Amount (Entered Currency)'
186
+ { "startIndex": 92, "endIndex": 93, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
187
187
  ],
188
188
  [
189
189
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -191,15 +191,15 @@ describe('', () => {
191
191
  { "startIndex": 24, "endIndex": 25, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
192
192
  { "startIndex": 25, "endIndex": 37, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
193
193
  { "startIndex": 37, "endIndex": 38, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
194
- { "startIndex": 38, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
195
- { "startIndex": 39, "endIndex": 64, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Amount (Entered Currency)'
196
- { "startIndex": 64, "endIndex": 65, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
194
+ { "startIndex": 38, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
195
+ { "startIndex": 39, "endIndex": 64, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Amount (Entered Currency)'
196
+ { "startIndex": 64, "endIndex": 65, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
197
197
  { "startIndex": 65, "endIndex": 66, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
198
198
  { "startIndex": 66, "endIndex": 72, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
199
199
  { "startIndex": 72, "endIndex": 73, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
200
- { "startIndex": 73, "endIndex": 74, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
201
- { "startIndex": 74, "endIndex": 89, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // '->>>,>>>,>>9.99'
202
- { "startIndex": 89, "endIndex": 90, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
200
+ { "startIndex": 73, "endIndex": 74, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
201
+ { "startIndex": 74, "endIndex": 89, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '->>>,>>>,>>9.99'
202
+ { "startIndex": 89, "endIndex": 90, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
203
203
  ],
204
204
  [
205
205
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -211,9 +211,9 @@ describe('', () => {
211
211
  { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
212
212
  { "startIndex": 28, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'COLUMN-LABEL'
213
213
  { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
214
- { "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
215
- { "startIndex": 42, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Customer ID'
216
- { "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
214
+ { "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
215
+ { "startIndex": 42, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Customer ID'
216
+ { "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
217
217
  ],
218
218
  [
219
219
  { "startIndex": 0, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -18,9 +18,9 @@ describe('', () => {
18
18
  { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
19
19
  { "startIndex": 11, "endIndex": 15, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'file'
20
20
  { "startIndex": 15, "endIndex": 16, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
21
- { "startIndex": 16, "endIndex": 17, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
22
- { "startIndex": 17, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'fasafs.gif'
23
- { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
21
+ { "startIndex": 16, "endIndex": 17, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
22
+ { "startIndex": 17, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'fasafs.gif'
23
+ { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
24
24
  { "startIndex": 28, "endIndex": 29, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] }, // '.'
25
25
  ]
26
26
  ];
@@ -14,9 +14,9 @@ describe('', () => {
14
14
  { "startIndex": 25, "endIndex": 26, "scopes": ["source.abl"] }, // ' '
15
15
  { "startIndex": 26, "endIndex": 31, "scopes": ["source.abl", "keyword.other.abl"] }, // 'TABLE'
16
16
  { "startIndex": 31, "endIndex": 32, "scopes": ["source.abl"] }, // ' '
17
- { "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
18
- { "startIndex": 33, "endIndex": 41, "scopes": ["source.abl", "string.double.complex.abl"] }, // 'Customer'
19
- { "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
17
+ { "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
18
+ { "startIndex": 33, "endIndex": 41, "scopes": ["source.abl", "string.quoted.double.abl"] }, // 'Customer'
19
+ { "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
20
20
  { "startIndex": 42, "endIndex": 43, "scopes": ["source.abl", "punctuation.terminator.abl"] } // '.'
21
21
  ];
22
22
  shared.itShouldMatchExpectedScopes(statement, expectedTokens);
@@ -53,9 +53,9 @@ describe('', () => {
53
53
  { "startIndex": 49, "endIndex": 50, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
54
54
  { "startIndex": 50, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'label'
55
55
  { "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
56
- { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
57
- { "startIndex": 57, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'theCustomer'
58
- { "startIndex": 68, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
56
+ { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
57
+ { "startIndex": 57, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'theCustomer'
58
+ { "startIndex": 68, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
59
59
  { "startIndex": 69, "endIndex": 70, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
60
60
  { "startIndex": 70, "endIndex": 79, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'preselect'
61
61
  { "startIndex": 79, "endIndex": 80, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] } // '.'
@@ -81,9 +81,9 @@ describe('', () => {
81
81
  { "startIndex": 49, "endIndex": 50, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
82
82
  { "startIndex": 50, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'label'
83
83
  { "startIndex": 55, "endIndex": 56, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
84
- { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
85
- { "startIndex": 57, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'theCustomer'
86
- { "startIndex": 68, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
84
+ { "startIndex": 56, "endIndex": 57, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
85
+ { "startIndex": 57, "endIndex": 68, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'theCustomer'
86
+ { "startIndex": 68, "endIndex": 69, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
87
87
  { "startIndex": 69, "endIndex": 70, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
88
88
  { "startIndex": 70, "endIndex": 71, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] } // '.'
89
89
  ];
@@ -113,9 +113,9 @@ describe('', () => {
113
113
  { "startIndex": 59, "endIndex": 60, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
114
114
  { "startIndex": 60, "endIndex": 74, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'serialize-name'
115
115
  { "startIndex": 74, "endIndex": 75, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
116
- { "startIndex": 75, "endIndex": 76, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
117
- { "startIndex": 76, "endIndex": 87, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'theCustomer'
118
- { "startIndex": 87, "endIndex": 88, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
116
+ { "startIndex": 75, "endIndex": 76, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
117
+ { "startIndex": 76, "endIndex": 87, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'theCustomer'
118
+ { "startIndex": 87, "endIndex": 88, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
119
119
  { "startIndex": 88, "endIndex": 89, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] } // '.'
120
120
  ],
121
121
  [
@@ -158,9 +158,9 @@ DEFINE new shared priVATE FRAME FRAME-A
158
158
  ],
159
159
  [
160
160
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
161
- { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
162
- { "startIndex": 11, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Select shipping location prefix'
163
- { "startIndex": 42, "endIndex": 43, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
161
+ { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
162
+ { "startIndex": 11, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Select shipping location prefix'
163
+ { "startIndex": 42, "endIndex": 43, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
164
164
  ],
165
165
  [
166
166
  { "startIndex": 0, "endIndex": 5, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -182,9 +182,9 @@ DEFINE new shared priVATE FRAME FRAME-A
182
182
  ],
183
183
  [
184
184
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
185
- { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
186
- { "startIndex": 11, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Enter sales location prefix.'
187
- { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
185
+ { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
186
+ { "startIndex": 11, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Enter sales location prefix.'
187
+ { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
188
188
  ],
189
189
  [
190
190
  { "startIndex": 0, "endIndex": 5, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -204,9 +204,9 @@ DEFINE new shared priVATE FRAME FRAME-A
204
204
  ],
205
205
  [
206
206
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
207
- { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
208
- { "startIndex": 11, "endIndex": 33, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Select location prefix'
209
- { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
207
+ { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
208
+ { "startIndex": 11, "endIndex": 33, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Select location prefix'
209
+ { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
210
210
  ],
211
211
  [
212
212
  { "startIndex": 0, "endIndex": 5, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -228,17 +228,17 @@ DEFINE new shared priVATE FRAME FRAME-A
228
228
  ],
229
229
  [
230
230
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
231
- { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
232
- { "startIndex": 11, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Enter group ID.'
233
- { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
231
+ { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
232
+ { "startIndex": 11, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Enter group ID.'
233
+ { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
234
234
  ],
235
235
  [
236
236
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
237
237
  { "startIndex": 10, "endIndex": 15, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'LABEL'
238
238
  { "startIndex": 15, "endIndex": 16, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
239
- { "startIndex": 16, "endIndex": 17, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
240
- { "startIndex": 17, "endIndex": 25, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Group ID'
241
- { "startIndex": 25, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
239
+ { "startIndex": 16, "endIndex": 17, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
240
+ { "startIndex": 17, "endIndex": 25, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Group ID'
241
+ { "startIndex": 25, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
242
242
  ],
243
243
  [
244
244
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -286,9 +286,9 @@ DEFINE new shared priVATE FRAME FRAME-A
286
286
  ],
287
287
  [
288
288
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
289
- { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
290
- { "startIndex": 11, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Select group ID.'
291
- { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
289
+ { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
290
+ { "startIndex": 11, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Select group ID.'
291
+ { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
292
292
  ],
293
293
  [
294
294
  { "startIndex": 0, "endIndex": 5, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -310,24 +310,24 @@ DEFINE new shared priVATE FRAME FRAME-A
310
310
  ],
311
311
  [
312
312
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
313
- { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
314
- { "startIndex": 11, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Enter agent code.'
315
- { "startIndex": 28, "endIndex": 29, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] } // '"'
313
+ { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
314
+ { "startIndex": 11, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Enter agent code.'
315
+ { "startIndex": 28, "endIndex": 29, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] } // '"'
316
316
  ],
317
317
  [
318
318
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
319
319
  { "startIndex": 10, "endIndex": 15, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'LABEL'
320
320
  { "startIndex": 15, "endIndex": 16, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
321
- { "startIndex": 16, "endIndex": 17, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
322
- { "startIndex": 17, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'Agent Code'
323
- { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
321
+ { "startIndex": 16, "endIndex": 17, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
322
+ { "startIndex": 17, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'Agent Code'
323
+ { "startIndex": 27, "endIndex": 28, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
324
324
  { "startIndex": 28, "endIndex": 29, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
325
325
  { "startIndex": 29, "endIndex": 35, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'FORMAT'
326
326
  { "startIndex": 35, "endIndex": 36, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
327
- { "startIndex": 36, "endIndex": 37, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
328
- { "startIndex": 37, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // 'X(8)'
329
- { "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
330
- { "startIndex": 42, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "support.other.abl"] } // ':U'
327
+ { "startIndex": 36, "endIndex": 37, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
328
+ { "startIndex": 37, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // 'X(8)'
329
+ { "startIndex": 41, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
330
+ { "startIndex": 42, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "support.other.abl"] } // ':U'
331
331
  ],
332
332
  [
333
333
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -435,18 +435,20 @@ describe('', () => {
435
435
  ],
436
436
  [
437
437
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
438
- { "startIndex": 10, "endIndex": 13, "scopes": ["source.abl", "meta.define.abl", "storage.type.function.abl"] }, // '&IF'
438
+ { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
439
+ { "startIndex": 11, "endIndex": 13, "scopes": ["source.abl", "meta.define.abl", "keyword.control.directive.conditional.abl"] }, // 'IF'
439
440
  { "startIndex": 13, "endIndex": 14, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
440
- { "startIndex": 14, "endIndex": 15, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
441
- { "startIndex": 15, "endIndex": 31, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl"] }, // '{&WINDOW-SYSTEM}'
442
- { "startIndex": 31, "endIndex": 32, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
441
+ { "startIndex": 14, "endIndex": 15, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
442
+ { "startIndex": 15, "endIndex": 31, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl"] }, // '{&WINDOW-SYSTEM}'
443
+ { "startIndex": 31, "endIndex": 32, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
443
444
  { "startIndex": 32, "endIndex": 35, "scopes": ["source.abl", "meta.define.abl"] }, // ' = '
444
- { "startIndex": 35, "endIndex": 36, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
445
- { "startIndex": 36, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl"] }, // 'TTY'
446
- { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
447
- { "startIndex": 40, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "support.other.abl"] }, // ':U'
445
+ { "startIndex": 35, "endIndex": 36, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
446
+ { "startIndex": 36, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl"] }, // 'TTY'
447
+ { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
448
+ { "startIndex": 40, "endIndex": 42, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "support.other.abl"] }, // ':U'
448
449
  { "startIndex": 42, "endIndex": 43, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
449
- { "startIndex": 43, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "storage.type.function.abl"] }, // '&THEN'
450
+ { "startIndex": 43, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
451
+ { "startIndex": 44, "endIndex": 48, "scopes": ["source.abl", "meta.define.abl", "keyword.control.directive.conditional.abl"] }, // 'THEN'
450
452
  { "startIndex": 48, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
451
453
  { "startIndex": 49, "endIndex": 51, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'AT'
452
454
  { "startIndex": 51, "endIndex": 52, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -460,7 +462,8 @@ describe('', () => {
460
462
  ],
461
463
  [
462
464
  { "startIndex": 0, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
463
- { "startIndex": 10, "endIndex": 15, "scopes": ["source.abl", "meta.define.abl", "storage.type.function.abl"] }, // '&ELSE'
465
+ { "startIndex": 10, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
466
+ { "startIndex": 11, "endIndex": 15, "scopes": ["source.abl", "meta.define.abl", "keyword.control.directive.conditional.abl"] }, // 'ELSE'
464
467
  { "startIndex": 15, "endIndex": 16, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
465
468
  { "startIndex": 16, "endIndex": 18, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'AT'
466
469
  { "startIndex": 18, "endIndex": 19, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -472,24 +475,27 @@ describe('', () => {
472
475
  { "startIndex": 31, "endIndex": 32, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
473
476
  { "startIndex": 32, "endIndex": 33, "scopes": ["source.abl", "meta.define.abl", "constant.numeric.source.abl"] }, // '3'
474
477
  { "startIndex": 33, "endIndex": 34, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
475
- { "startIndex": 34, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "storage.type.function.abl"] }, // '&ENDIF'
478
+ { "startIndex": 34, "endIndex": 35, "scopes": ["source.abl", "meta.define.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
479
+ { "startIndex": 35, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "keyword.control.directive.conditional.abl"] }, // 'ENDIF'
476
480
  { "startIndex": 40, "endIndex": 41, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
477
481
  { "startIndex": 41, "endIndex": 49, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] } // 'NO-LABEL'
478
482
  ],
479
483
  [
480
484
  { "startIndex": 0, "endIndex": 5, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
481
- { "startIndex": 5, "endIndex": 8, "scopes": ["source.abl", "meta.define.abl", "storage.type.function.abl"] }, // '&IF'
485
+ { "startIndex": 5, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
486
+ { "startIndex": 6, "endIndex": 8, "scopes": ["source.abl", "meta.define.abl", "keyword.control.directive.conditional.abl"] }, // 'IF'
482
487
  { "startIndex": 8, "endIndex": 9, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
483
- { "startIndex": 9, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
484
- { "startIndex": 10, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl"] }, // '{&WINDOW-SYSTEM}'
485
- { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
488
+ { "startIndex": 9, "endIndex": 10, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
489
+ { "startIndex": 10, "endIndex": 26, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl"] }, // '{&WINDOW-SYSTEM}'
490
+ { "startIndex": 26, "endIndex": 27, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
486
491
  { "startIndex": 27, "endIndex": 31, "scopes": ["source.abl", "meta.define.abl"] }, // ' <> '
487
- { "startIndex": 31, "endIndex": 32, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "punctuation.definition.string.begin.abl"] }, // '''
488
- { "startIndex": 32, "endIndex": 35, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl"] }, // 'TTY'
489
- { "startIndex": 35, "endIndex": 36, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "punctuation.definition.string.end.abl"] }, // '''
490
- { "startIndex": 36, "endIndex": 38, "scopes": ["source.abl", "meta.define.abl", "string.single.complex.abl", "support.other.abl"] }, // ':U'
492
+ { "startIndex": 31, "endIndex": 32, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.begin.abl"] }, // '''
493
+ { "startIndex": 32, "endIndex": 35, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl"] }, // 'TTY'
494
+ { "startIndex": 35, "endIndex": 36, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "punctuation.definition.string.end.abl"] }, // '''
495
+ { "startIndex": 36, "endIndex": 38, "scopes": ["source.abl", "meta.define.abl", "string.quoted.single.abl", "support.other.abl"] }, // ':U'
491
496
  { "startIndex": 38, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
492
- { "startIndex": 39, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "storage.type.function.abl"] } // '&THEN'
497
+ { "startIndex": 39, "endIndex": 40, "scopes": ["source.abl", "meta.define.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
498
+ { "startIndex": 40, "endIndex": 44, "scopes": ["source.abl", "meta.define.abl", "keyword.control.directive.conditional.abl"] } // 'THEN'
493
499
  ],
494
500
  [
495
501
  { "startIndex": 0, "endIndex": 7, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
@@ -521,7 +527,8 @@ describe('', () => {
521
527
  ],
522
528
  [
523
529
  { "startIndex": 0, "endIndex": 5, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
524
- { "startIndex": 5, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "storage.type.function.abl"] } // '&ENDIF'
530
+ { "startIndex": 5, "endIndex": 6, "scopes": ["source.abl", "meta.define.abl", "punctuation.definition.preprocessor.abl"] }, // '&'
531
+ { "startIndex": 6, "endIndex": 11, "scopes": ["source.abl", "meta.define.abl", "keyword.control.directive.conditional.abl"] } // 'ENDIF'
525
532
  ],
526
533
  [
527
534
  { "startIndex": 0, "endIndex": 5, "scopes": ["source.abl", "meta.define.abl", "meta.function-call.abl"] }, // ' '
@@ -571,4 +578,3 @@ describe('', () => {
571
578
  ];
572
579
  shared.itShouldMatchExpectedScopes(statement, expectedTokens);
573
580
  })
574
-
@@ -105,9 +105,9 @@ describe('', () => {
105
105
  { "startIndex": 38, "endIndex": 39, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
106
106
  { "startIndex": 39, "endIndex": 45, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'format'
107
107
  { "startIndex": 45, "endIndex": 46, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
108
- { "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.begin.abl"] }, // '"'
109
- { "startIndex": 47, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl"] }, // '>>>.99'
110
- { "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "string.double.complex.abl", "punctuation.definition.string.end.abl"] }, // '"'
108
+ { "startIndex": 46, "endIndex": 47, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.begin.abl"] }, // '"'
109
+ { "startIndex": 47, "endIndex": 53, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl"] }, // '>>>.99'
110
+ { "startIndex": 53, "endIndex": 54, "scopes": ["source.abl", "meta.define.abl", "string.quoted.double.abl", "punctuation.definition.string.end.abl"] }, // '"'
111
111
  { "startIndex": 54, "endIndex": 55, "scopes": ["source.abl", "meta.define.abl"] }, // ' '
112
112
  { "startIndex": 55, "endIndex": 62, "scopes": ["source.abl", "meta.define.abl", "keyword.other.abl"] }, // 'no-undo'
113
113
  { "startIndex": 62, "endIndex": 63, "scopes": ["source.abl", "meta.define.abl", "punctuation.terminator.abl"] } // '.'