@abaplint/transpiler 2.7.72 → 2.7.73

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.
@@ -37,8 +37,8 @@ export interface IOutputFile {
37
37
  exports: readonly string[];
38
38
  }
39
39
  export declare enum UnknownTypesEnum {
40
- "compileError" = 0,
41
- "runtimeError" = 1
40
+ compileError = "compileError",
41
+ runtimeError = "runtimeError"
42
42
  }
43
43
  export interface ITranspilerOptions {
44
44
  /** ignore syntax check, used for internal testing */
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.UnknownTypesEnum = void 0;
4
4
  var UnknownTypesEnum;
5
5
  (function (UnknownTypesEnum) {
6
- UnknownTypesEnum[UnknownTypesEnum["compileError"] = 0] = "compileError";
7
- UnknownTypesEnum[UnknownTypesEnum["runtimeError"] = 1] = "runtimeError";
6
+ UnknownTypesEnum["compileError"] = "compileError";
7
+ UnknownTypesEnum["runtimeError"] = "runtimeError";
8
8
  })(UnknownTypesEnum || (exports.UnknownTypesEnum = UnknownTypesEnum = {}));
9
9
  //# sourceMappingURL=types.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abaplint/transpiler",
3
- "version": "2.7.72",
3
+ "version": "2.7.73",
4
4
  "description": "Transpiler",
5
5
  "main": "build/src/index.js",
6
6
  "typings": "build/src/index.d.ts",