@abaplint/runtime 2.5.3 → 2.5.4

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.
@@ -38,10 +38,10 @@ function eq(left, right) {
38
38
  }
39
39
  if (left instanceof types_1.Structure || right instanceof types_1.Structure) {
40
40
  if (!(right instanceof types_1.Structure)) {
41
- return false;
41
+ return eq(left.getCharacter(), right);
42
42
  }
43
43
  if (!(left instanceof types_1.Structure)) {
44
- return false;
44
+ return eq(left, right.getCharacter());
45
45
  }
46
46
  const l = left.get();
47
47
  const r = right.get();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.5.3",
3
+ "version": "2.5.4",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",