@abaplint/transpiler-cli 2.7.65 → 2.7.67
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.
- package/build/bundle.js +6 -5
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -73261,11 +73261,12 @@ class Rearranger {
|
|
|
73261
73261
|
// multiplication/division and left to right
|
|
73262
73262
|
for (let i = arith.length - 1; i >= 0; i--) {
|
|
73263
73263
|
const a = arith[i];
|
|
73264
|
-
|
|
73265
|
-
|
|
73266
|
-
||
|
|
73267
|
-
||
|
|
73268
|
-
||
|
|
73264
|
+
const concat = a.concatTokens().toUpperCase();
|
|
73265
|
+
if (concat === "*"
|
|
73266
|
+
|| concat === "/"
|
|
73267
|
+
|| concat === "**"
|
|
73268
|
+
|| concat === "MOD"
|
|
73269
|
+
|| concat === "DIV") {
|
|
73269
73270
|
continue;
|
|
73270
73271
|
}
|
|
73271
73272
|
splitAt = a;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.67",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"author": "abaplint",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@abaplint/transpiler": "^2.7.
|
|
29
|
+
"@abaplint/transpiler": "^2.7.67",
|
|
30
30
|
"@types/glob": "^7.2.0",
|
|
31
31
|
"glob": "=7.2.0",
|
|
32
32
|
"@types/progress": "^2.0.5",
|