@abaplint/runtime 2.10.80 → 2.10.81

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.
@@ -28,7 +28,7 @@ class ABAPRegExp {
28
28
  throw new Error("FIND, runtime, no input, regex empty");
29
29
  }
30
30
  }
31
- const ignoreCase = options.ignoringCase === true ? "i" : "";
31
+ let ignoreCase = options.ignoringCase === true ? "i" : "";
32
32
  const allOccurrences = options.all === true ? "g" : "";
33
33
  let r = options.regex;
34
34
  if (r === undefined) {
@@ -47,7 +47,7 @@ class ABAPRegExp {
47
47
  r = obj.mv_pattern.get();
48
48
  // @ts-ignore
49
49
  if (obj.mv_ignore_case.get() === "X") {
50
- options.ignoringCase = true;
50
+ ignoreCase = 'i';
51
51
  }
52
52
  }
53
53
  else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.10.80",
3
+ "version": "2.10.81",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",