@abaplint/runtime 2.7.69 → 2.7.71

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.
@@ -50,7 +50,5 @@ export declare const $_backspace: Character;
50
50
  export declare const $_cr_lf: Character;
51
51
  export declare const $_formfeed: Character;
52
52
  export declare const $_horizontal_tab: Character;
53
- export declare const $_maxchar: Character;
54
- export declare const $_minchar: Character;
55
53
  export declare const $_newline: Character;
56
54
  export declare const $_vertical_tab: Character;
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.$_vertical_tab = exports.$_newline = exports.$_minchar = exports.$_maxchar = exports.$_horizontal_tab = exports.$_formfeed = exports.$_cr_lf = exports.$_backspace = exports.space = exports.abap_undefined = exports.abap_false = exports.abap_true = void 0;
17
+ exports.$_vertical_tab = exports.$_newline = exports.$_horizontal_tab = exports.$_formfeed = exports.$_cr_lf = exports.$_backspace = exports.space = exports.abap_undefined = exports.abap_false = exports.abap_true = void 0;
18
18
  const types_1 = require("../types");
19
19
  __exportStar(require("./abs"), exports);
20
20
  __exportStar(require("./boolc"), exports);
@@ -67,8 +67,10 @@ exports.$_backspace = new types_1.Character(1).set("\b").setConstant();
67
67
  exports.$_cr_lf = new types_1.Character(2).set("\r\n").setConstant();
68
68
  exports.$_formfeed = new types_1.Character(1).set("\f").setConstant();
69
69
  exports.$_horizontal_tab = new types_1.Character(1).set("\t").setConstant();
70
- exports.$_maxchar = new types_1.Character(1).set(Buffer.from("FDFF", "hex").toString()).setConstant();
71
- exports.$_minchar = new types_1.Character(1).set(Buffer.from("0000", "hex").toString()).setConstant();
72
70
  exports.$_newline = new types_1.Character(1).set("\n").setConstant();
73
71
  exports.$_vertical_tab = new types_1.Character(1).set("\v").setConstant();
72
+ /*
73
+ export const $_maxchar = new Character(1).set(Buffer.from("FDFF", "hex").toString()).setConstant();
74
+ export const $_minchar = new Character(1).set(Buffer.from("0000", "hex").toString()).setConstant();
75
+ */
74
76
  //# sourceMappingURL=index.js.map
@@ -27,5 +27,6 @@ exports.sy = new types_1.Structure({
27
27
  tzone: new types_1.Integer(),
28
28
  uname: new types_1.Character(12).set("USERNAME"),
29
29
  uzeit: new types_1.Time(),
30
+ dbsys: new types_1.Character(10),
30
31
  });
31
32
  //# sourceMappingURL=sy.js.map
@@ -8,11 +8,17 @@ export declare class Structure {
8
8
  private readonly value;
9
9
  private readonly qualifiedName;
10
10
  private readonly ddicName;
11
- private readonly renamingSuffix;
12
- constructor(fields: any, qualifiedName?: string, ddicName?: string, renamingSuffix?: any);
11
+ private readonly suffix;
12
+ private readonly asInclude;
13
+ constructor(fields: any, qualifiedName?: string, ddicName?: string, suffix?: any, asInclude?: any);
13
14
  clear(): this;
14
15
  getDDICName(): string | undefined;
15
- getRenamingSuffix(): any;
16
+ getRenamingSuffix(): {
17
+ [key: string]: string;
18
+ };
19
+ getAsInclude(): {
20
+ [key: string]: boolean;
21
+ };
16
22
  getQualifiedName(): string | undefined;
17
23
  set(input: Structure | string | INumeric | Table | ICharacter | FieldSymbol | undefined): this | undefined;
18
24
  private setCharacter;
@@ -8,11 +8,12 @@ const _parse_1 = require("../operators/_parse");
8
8
  const character_1 = require("./character");
9
9
  const throw_error_1 = require("../throw_error");
10
10
  class Structure {
11
- constructor(fields, qualifiedName, ddicName, renamingSuffix) {
11
+ constructor(fields, qualifiedName, ddicName, suffix, asInclude) {
12
12
  this.value = fields;
13
13
  this.qualifiedName = qualifiedName === null || qualifiedName === void 0 ? void 0 : qualifiedName.toUpperCase();
14
14
  this.ddicName = ddicName === null || ddicName === void 0 ? void 0 : ddicName.toUpperCase();
15
- this.renamingSuffix = renamingSuffix;
15
+ this.suffix = suffix;
16
+ this.asInclude = asInclude;
16
17
  }
17
18
  clear() {
18
19
  for (const f in this.value) {
@@ -25,7 +26,10 @@ class Structure {
25
26
  return this.ddicName;
26
27
  }
27
28
  getRenamingSuffix() {
28
- return this.renamingSuffix;
29
+ return this.suffix;
30
+ }
31
+ getAsInclude() {
32
+ return this.asInclude;
29
33
  }
30
34
  getQualifiedName() {
31
35
  return this.qualifiedName;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.7.69",
3
+ "version": "2.7.71",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",