@abaplint/core 2.112.2 → 2.112.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/src/registry.js
CHANGED
|
@@ -133,7 +133,7 @@ DATA: BEGIN OF blah ##NEEDED,
|
|
|
133
133
|
if (p === undefined) {
|
|
134
134
|
return [];
|
|
135
135
|
}
|
|
136
|
-
const concat = next.concatTokens().toUpperCase();
|
|
136
|
+
const concat = (next === null || next === void 0 ? void 0 : next.concatTokens().toUpperCase()) || "";
|
|
137
137
|
if (concat.includes(" SY-SUBRC")) {
|
|
138
138
|
const message = "SUBRC_OK can be removed as sy-subrc is checked";
|
|
139
139
|
const fix = edit_helper_1.EditHelper.deleteToken(file, p);
|