@abaplint/runtime 2.7.124 → 2.7.125

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.
@@ -6,9 +6,12 @@ import { INumeric } from "./_numeric";
6
6
  export declare class Hex implements ICharacter {
7
7
  private value;
8
8
  private readonly length;
9
+ private readonly qualifiedName;
9
10
  constructor(input?: {
10
11
  length?: number;
12
+ qualifiedName?: string;
11
13
  });
14
+ getQualifiedName(): string | undefined;
12
15
  set(value: ICharacter | INumeric | string | number | Integer | Float): this;
13
16
  getLength(): number;
14
17
  clear(): void;
@@ -8,8 +8,12 @@ const throw_error_1 = require("../throw_error");
8
8
  class Hex {
9
9
  constructor(input) {
10
10
  this.length = (input === null || input === void 0 ? void 0 : input.length) ? input === null || input === void 0 ? void 0 : input.length : 1;
11
+ this.qualifiedName = input === null || input === void 0 ? void 0 : input.qualifiedName;
11
12
  this.clear();
12
13
  }
14
+ getQualifiedName() {
15
+ return this.qualifiedName;
16
+ }
13
17
  set(value) {
14
18
  if (typeof value === "string") {
15
19
  this.value = value;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/runtime",
3
- "version": "2.7.124",
3
+ "version": "2.7.125",
4
4
  "description": "Transpiler - Runtime",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",