@abaplint/transpiler 1.8.29 → 1.8.30

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.
@@ -5,9 +5,9 @@ const abaplint = require("@abaplint/core");
5
5
  const chunk_1 = require("../chunk");
6
6
  class AppendTranspiler {
7
7
  transpile(node, traversal) {
8
- const concat = node.concatTokens();
8
+ const concat = node.concatTokens().toUpperCase();
9
9
  const target = traversal.traverse(node.findDirectExpression(abaplint.Expressions.Target));
10
- if (concat.toUpperCase().includes("INITIAL LINE")) {
10
+ if (concat.includes("INITIAL LINE")) {
11
11
  const assigning = node.findExpressionAfterToken("ASSIGNING");
12
12
  const into = node.findExpressionAfterToken("INTO");
13
13
  if (assigning) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler",
3
- "version": "1.8.29",
3
+ "version": "1.8.30",
4
4
  "description": "Transpiler",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",
@@ -27,7 +27,7 @@
27
27
  "author": "abaplint",
28
28
  "license": "MIT",
29
29
  "dependencies": {
30
- "@abaplint/core": "^2.85.54",
30
+ "@abaplint/core": "^2.86.2",
31
31
  "source-map": "^0.7.3"
32
32
  },
33
33
  "devDependencies": {