@abaplint/core 2.102.16 → 2.102.17
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.
|
@@ -129,16 +129,16 @@ class BuiltIn {
|
|
|
129
129
|
get(extras) {
|
|
130
130
|
const ret = this.buildSY();
|
|
131
131
|
ret.push(this.buildVariable("screen")); // todo, add structure, or alternatively make native Statements
|
|
132
|
-
ret.push(this.buildConstant("%_BACKSPACE"));
|
|
133
|
-
ret.push(this.buildConstant("%_CHARSIZE"));
|
|
134
|
-
ret.push(this.buildConstant("%_CR_LF"));
|
|
135
132
|
ret.push(this.buildConstant("%_ENDIAN"));
|
|
136
|
-
ret.push(this.buildConstant("%
|
|
137
|
-
ret.push(this.buildConstant("%
|
|
138
|
-
ret.push(this.buildConstant("%
|
|
139
|
-
ret.push(this.buildConstant("%
|
|
140
|
-
ret.push(this.buildConstant("%
|
|
141
|
-
ret.push(this.buildConstant("%
|
|
133
|
+
ret.push(this.buildConstant("%_CHARSIZE"));
|
|
134
|
+
ret.push(this.buildConstant("%_BACKSPACE", new basic_1.CharacterType(1), "\b"));
|
|
135
|
+
ret.push(this.buildConstant("%_CR_LF", new basic_1.CharacterType(2), "\r\n"));
|
|
136
|
+
ret.push(this.buildConstant("%_FORMFEED", new basic_1.CharacterType(1), "\f"));
|
|
137
|
+
ret.push(this.buildConstant("%_HORIZONTAL_TAB", new basic_1.CharacterType(1), "\t"));
|
|
138
|
+
ret.push(this.buildConstant("%_MAXCHAR", new basic_1.CharacterType(1), Buffer.from("FDFF", "hex").toString()));
|
|
139
|
+
ret.push(this.buildConstant("%_MINCHAR", new basic_1.CharacterType(1), Buffer.from("0000", "hex").toString()));
|
|
140
|
+
ret.push(this.buildConstant("%_NEWLINE", new basic_1.CharacterType(1), "\n"));
|
|
141
|
+
ret.push(this.buildConstant("%_VERTICAL_TAB", new basic_1.CharacterType(1), "\v"));
|
|
142
142
|
ret.push(this.buildConstant("abap_false", new basic_1.CharacterType(1, { qualifiedName: "ABAP_BOOL", ddicName: "ABAP_BOOL" }), "' '"));
|
|
143
143
|
ret.push(this.buildConstant("abap_true", new basic_1.CharacterType(1, { qualifiedName: "ABAP_BOOL", ddicName: "ABAP_BOOL" }), "'X'"));
|
|
144
144
|
ret.push(this.buildConstant("abap_undefined", new basic_1.CharacterType(1, { qualifiedName: "ABAP_BOOL", ddicName: "ABAP_BOOL" }), "'-'"));
|
package/build/src/registry.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.102.
|
|
3
|
+
"version": "2.102.17",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
},
|
|
51
51
|
"homepage": "https://abaplint.org",
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@microsoft/api-extractor": "^7.36.
|
|
53
|
+
"@microsoft/api-extractor": "^7.36.4",
|
|
54
54
|
"@types/chai": "^4.3.5",
|
|
55
55
|
"@types/mocha": "^10.0.1",
|
|
56
56
|
"@types/node": "^20.4.8",
|