@abaplint/runtime 2.11.42 → 2.11.43

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.
@@ -32,7 +32,7 @@ function expandDynamic(code, evaluate) {
32
32
  }
33
33
  }
34
34
  // todo more here, this is just one simple case,
35
- regex = / <(\w+)>-(\w+)/;
35
+ regex = / @?<(\w+)>-(\w+)/;
36
36
  while (true) {
37
37
  const match = code.match(regex);
38
38
  if (match && match[1] && match[2]) {
@@ -52,7 +52,7 @@ function expandDynamic(code, evaluate) {
52
52
  }
53
53
  }
54
54
  // todo more here, this is just one simple case,
55
- regex = / <(\w+)>/;
55
+ regex = / @?<(\w+)>/;
56
56
  while (true) {
57
57
  const match = code.match(regex);
58
58
  if (match && match[1]) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.11.42",
3
+ "version": "2.11.43",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",