@abaplint/runtime 2.11.43 → 2.11.44
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.
|
@@ -12,7 +12,7 @@ function expandDynamic(code, evaluate) {
|
|
|
12
12
|
// yea, this is also wrong,
|
|
13
13
|
code = code.replace(/ EQ /g, " = ");
|
|
14
14
|
// todo more here, this is just one simple case,
|
|
15
|
-
let regex = /(\w+) IN
|
|
15
|
+
let regex = /(\w+) IN @?<(\w+)>-(\w+)/;
|
|
16
16
|
while (true) {
|
|
17
17
|
const match = code.match(regex);
|
|
18
18
|
if (match && match[1] && match[2] && match[3]) {
|