@abaplint/transpiler-cli 1.6.40 → 1.6.41
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 +1 -1
- package/package.json +2 -2
package/build/bundle.js
CHANGED
|
@@ -12160,7 +12160,7 @@ eval("\r\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\r\n
|
|
|
12160
12160
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
12161
12161
|
|
|
12162
12162
|
"use strict";
|
|
12163
|
-
eval("\r\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\r\nexports.ArithOperatorTranspiler = void 0;\r\nconst chunk_1 = __webpack_require__(/*! ../chunk */ \"./node_modules/@abaplint/transpiler/build/src/chunk.js\");\r\nclass ArithOperatorTranspiler {\r\n transpile(node, traversal) {\r\n switch (node.concatTokens()) {\r\n case \"+\":\r\n return new chunk_1.Chunk().append(\"abap.operators.add\", node, traversal);\r\n case \"-\":\r\n return new chunk_1.Chunk().append(\"abap.operators.minus\", node, traversal);\r\n case \"*\":\r\n return new chunk_1.Chunk().append(\"abap.operators.multiply\", node, traversal);\r\n case \"/\":\r\n return new chunk_1.Chunk().append(\"abap.operators.divide\", node, traversal);\r\n case \"**\":\r\n return new chunk_1.Chunk().append(\"abap.operators.power\", node, traversal);\r\n case \"DIV\":\r\n return new chunk_1.Chunk().append(\"abap.operators.div\", node, traversal);\r\n case \"MOD\":\r\n return new chunk_1.Chunk().append(\"abap.operators.mod\", node, traversal);\r\n case \"BIT-AND\":\r\n return new chunk_1.Chunk().append(\"abap.operators.bitand\", node, traversal);\r\n case \"BIT-OR\":\r\n return new chunk_1.Chunk().append(\"abap.operators.bitor\", node, traversal);\r\n case \"BIT-XOR\":\r\n return new chunk_1.Chunk().append(\"abap.operators.bitxor\", node, traversal);\r\n default:\r\n return new chunk_1.Chunk().append(\".ArithOperatorUnknown\", node, traversal);\r\n }\r\n }\r\n}\r\nexports.ArithOperatorTranspiler = ArithOperatorTranspiler;\r\n//# sourceMappingURL=arith_operator.js.map\n\n//# sourceURL=webpack://@abaplint/transpiler-cli/./node_modules/@abaplint/transpiler/build/src/expressions/arith_operator.js?");
|
|
12163
|
+
eval("\r\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\r\nexports.ArithOperatorTranspiler = void 0;\r\nconst chunk_1 = __webpack_require__(/*! ../chunk */ \"./node_modules/@abaplint/transpiler/build/src/chunk.js\");\r\nclass ArithOperatorTranspiler {\r\n transpile(node, traversal) {\r\n switch (node.concatTokens().toUpperCase()) {\r\n case \"+\":\r\n return new chunk_1.Chunk().append(\"abap.operators.add\", node, traversal);\r\n case \"-\":\r\n return new chunk_1.Chunk().append(\"abap.operators.minus\", node, traversal);\r\n case \"*\":\r\n return new chunk_1.Chunk().append(\"abap.operators.multiply\", node, traversal);\r\n case \"/\":\r\n return new chunk_1.Chunk().append(\"abap.operators.divide\", node, traversal);\r\n case \"**\":\r\n return new chunk_1.Chunk().append(\"abap.operators.power\", node, traversal);\r\n case \"DIV\":\r\n return new chunk_1.Chunk().append(\"abap.operators.div\", node, traversal);\r\n case \"MOD\":\r\n return new chunk_1.Chunk().append(\"abap.operators.mod\", node, traversal);\r\n case \"BIT-AND\":\r\n return new chunk_1.Chunk().append(\"abap.operators.bitand\", node, traversal);\r\n case \"BIT-OR\":\r\n return new chunk_1.Chunk().append(\"abap.operators.bitor\", node, traversal);\r\n case \"BIT-XOR\":\r\n return new chunk_1.Chunk().append(\"abap.operators.bitxor\", node, traversal);\r\n default:\r\n return new chunk_1.Chunk().append(\".ArithOperatorUnknown\", node, traversal);\r\n }\r\n }\r\n}\r\nexports.ArithOperatorTranspiler = ArithOperatorTranspiler;\r\n//# sourceMappingURL=arith_operator.js.map\n\n//# sourceURL=webpack://@abaplint/transpiler-cli/./node_modules/@abaplint/transpiler/build/src/expressions/arith_operator.js?");
|
|
12164
12164
|
|
|
12165
12165
|
/***/ }),
|
|
12166
12166
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.41",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"bin": {
|
|
6
6
|
"abap_transpile": "./abap_transpile"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"author": "abaplint",
|
|
23
23
|
"license": "MIT",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@abaplint/transpiler": "^1.6.
|
|
25
|
+
"@abaplint/transpiler": "^1.6.41",
|
|
26
26
|
"@types/glob": "^7.1.4",
|
|
27
27
|
"glob": "^7.2.0",
|
|
28
28
|
"@types/progress": "^2.0.5",
|