@abaplint/core 2.93.85 → 2.93.86
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.
|
@@ -108,6 +108,7 @@ class StatementParser {
|
|
|
108
108
|
const concat = statement.concatTokens().toUpperCase();
|
|
109
109
|
if (concat.startsWith("CALL METHOD ") === false
|
|
110
110
|
&& concat.startsWith("RAISE EXCEPTION TYPE ") === false
|
|
111
|
+
&& concat.startsWith("LOOP AT ") === false
|
|
111
112
|
&& concat.startsWith("CALL FUNCTION ") === false) {
|
|
112
113
|
for (const { first, second } of this.buildSplits(statement.getTokens())) {
|
|
113
114
|
if (second.length === 1) {
|
package/build/src/registry.js
CHANGED
|
@@ -225,6 +225,8 @@ Only one transformation is applied to a statement at a time, so multiple steps m
|
|
|
225
225
|
ret.push(Issue.atStatement(lowFile, lowStatements[0], message, this.getMetadata().key));
|
|
226
226
|
*/
|
|
227
227
|
// hmm, add some way to disable lazyUnknown() in statement_parser.ts
|
|
228
|
+
// alternatively explicit enable it in vscode, its only relevant when a user is
|
|
229
|
+
// actively editing the files
|
|
228
230
|
continue;
|
|
229
231
|
}
|
|
230
232
|
for (let i = 0; i < lowStatements.length; i++) {
|