@abaplint/cli 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.
- package/build/cli.js +10 -10
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -19387,16 +19387,16 @@ class BuiltIn {
|
|
|
19387
19387
|
get(extras) {
|
|
19388
19388
|
const ret = this.buildSY();
|
|
19389
19389
|
ret.push(this.buildVariable("screen")); // todo, add structure, or alternatively make native Statements
|
|
19390
|
-
ret.push(this.buildConstant("%_BACKSPACE"));
|
|
19391
|
-
ret.push(this.buildConstant("%_CHARSIZE"));
|
|
19392
|
-
ret.push(this.buildConstant("%_CR_LF"));
|
|
19393
19390
|
ret.push(this.buildConstant("%_ENDIAN"));
|
|
19394
|
-
ret.push(this.buildConstant("%
|
|
19395
|
-
ret.push(this.buildConstant("%
|
|
19396
|
-
ret.push(this.buildConstant("%
|
|
19397
|
-
ret.push(this.buildConstant("%
|
|
19398
|
-
ret.push(this.buildConstant("%
|
|
19399
|
-
ret.push(this.buildConstant("%
|
|
19391
|
+
ret.push(this.buildConstant("%_CHARSIZE"));
|
|
19392
|
+
ret.push(this.buildConstant("%_BACKSPACE", new basic_1.CharacterType(1), "\b"));
|
|
19393
|
+
ret.push(this.buildConstant("%_CR_LF", new basic_1.CharacterType(2), "\r\n"));
|
|
19394
|
+
ret.push(this.buildConstant("%_FORMFEED", new basic_1.CharacterType(1), "\f"));
|
|
19395
|
+
ret.push(this.buildConstant("%_HORIZONTAL_TAB", new basic_1.CharacterType(1), "\t"));
|
|
19396
|
+
ret.push(this.buildConstant("%_MAXCHAR", new basic_1.CharacterType(1), Buffer.from("FDFF", "hex").toString()));
|
|
19397
|
+
ret.push(this.buildConstant("%_MINCHAR", new basic_1.CharacterType(1), Buffer.from("0000", "hex").toString()));
|
|
19398
|
+
ret.push(this.buildConstant("%_NEWLINE", new basic_1.CharacterType(1), "\n"));
|
|
19399
|
+
ret.push(this.buildConstant("%_VERTICAL_TAB", new basic_1.CharacterType(1), "\v"));
|
|
19400
19400
|
ret.push(this.buildConstant("abap_false", new basic_1.CharacterType(1, { qualifiedName: "ABAP_BOOL", ddicName: "ABAP_BOOL" }), "' '"));
|
|
19401
19401
|
ret.push(this.buildConstant("abap_true", new basic_1.CharacterType(1, { qualifiedName: "ABAP_BOOL", ddicName: "ABAP_BOOL" }), "'X'"));
|
|
19402
19402
|
ret.push(this.buildConstant("abap_undefined", new basic_1.CharacterType(1, { qualifiedName: "ABAP_BOOL", ddicName: "ABAP_BOOL" }), "'-'"));
|
|
@@ -48624,7 +48624,7 @@ class Registry {
|
|
|
48624
48624
|
}
|
|
48625
48625
|
static abaplintVersion() {
|
|
48626
48626
|
// magic, see build script "version.sh"
|
|
48627
|
-
return "2.102.
|
|
48627
|
+
return "2.102.17";
|
|
48628
48628
|
}
|
|
48629
48629
|
getDDICReferences() {
|
|
48630
48630
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.102.
|
|
3
|
+
"version": "2.102.17",
|
|
4
4
|
"description": "abaplint - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"homepage": "https://abaplint.org",
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"@abaplint/core": "^2.102.
|
|
41
|
+
"@abaplint/core": "^2.102.17",
|
|
42
42
|
"@types/chai": "^4.3.5",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.2",
|