@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("%_FORMFEED"));
137
- ret.push(this.buildConstant("%_HORIZONTAL_TAB"));
138
- ret.push(this.buildConstant("%_MAXCHAR"));
139
- ret.push(this.buildConstant("%_MINCHAR"));
140
- ret.push(this.buildConstant("%_NEWLINE"));
141
- ret.push(this.buildConstant("%_VERTICAL_TAB"));
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" }), "'-'"));
@@ -65,7 +65,7 @@ class Registry {
65
65
  }
66
66
  static abaplintVersion() {
67
67
  // magic, see build script "version.sh"
68
- return "2.102.16";
68
+ return "2.102.17";
69
69
  }
70
70
  getDDICReferences() {
71
71
  return this.ddicReferences;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/core",
3
- "version": "2.102.16",
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.3",
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",