@abaplint/transpiler 2.8.19 → 2.8.21
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.
|
@@ -19,7 +19,7 @@ class ConstantTranspiler {
|
|
|
19
19
|
code = `new abap.types.Integer8().set("${concat}")`;
|
|
20
20
|
}
|
|
21
21
|
else if (parsed > 2147483647 || parsed < -2147483648) {
|
|
22
|
-
code = `new abap.types.Integer8().set(${concat})`;
|
|
22
|
+
code = `new abap.types.Integer8().set("${concat}")`;
|
|
23
23
|
}
|
|
24
24
|
else if (parsed >= -10 && parsed <= 200) {
|
|
25
25
|
code = `abap.IntegerFactory.get(${concat})`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.21",
|
|
4
4
|
"description": "Transpiler",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/src/index.d.ts",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"author": "abaplint",
|
|
30
30
|
"license": "MIT",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@abaplint/core": "^2.106.
|
|
32
|
+
"@abaplint/core": "^2.106.5",
|
|
33
33
|
"source-map": "^0.7.4"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/chai": "^4.3.14",
|
|
37
37
|
"@types/mocha": "^10.0.6",
|
|
38
38
|
"chai": "^4.4.1",
|
|
39
|
-
"mocha": "^10.
|
|
39
|
+
"mocha": "^10.4.0",
|
|
40
40
|
"source-map-support": "^0.5.21",
|
|
41
41
|
"typescript": "^5.4.3"
|
|
42
42
|
}
|