@abaplint/cli 2.118.3 → 2.118.4
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 +5 -2
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -23552,6 +23552,7 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
|
23552
23552
|
exports.TypeUtils = void 0;
|
|
23553
23553
|
const types_1 = __webpack_require__(/*! ../types */ "./node_modules/@abaplint/core/build/src/abap/types/index.js");
|
|
23554
23554
|
const basic_1 = __webpack_require__(/*! ../types/basic */ "./node_modules/@abaplint/core/build/src/abap/types/basic/index.js");
|
|
23555
|
+
const enum_type_1 = __webpack_require__(/*! ../types/basic/enum_type */ "./node_modules/@abaplint/core/build/src/abap/types/basic/enum_type.js");
|
|
23555
23556
|
const cgeneric_type_1 = __webpack_require__(/*! ../types/basic/cgeneric_type */ "./node_modules/@abaplint/core/build/src/abap/types/basic/cgeneric_type.js");
|
|
23556
23557
|
const Expressions = __webpack_require__(/*! ../2_statements/expressions */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/index.js");
|
|
23557
23558
|
// todo: refactor to static? for performance
|
|
@@ -23628,7 +23629,8 @@ class TypeUtils {
|
|
|
23628
23629
|
|| type instanceof basic_1.DataType
|
|
23629
23630
|
|| type instanceof basic_1.CLikeType
|
|
23630
23631
|
|| type instanceof basic_1.PackedType
|
|
23631
|
-
|| type instanceof basic_1.TimeType
|
|
23632
|
+
|| type instanceof basic_1.TimeType
|
|
23633
|
+
|| type instanceof enum_type_1.EnumType) {
|
|
23632
23634
|
return true;
|
|
23633
23635
|
}
|
|
23634
23636
|
return false;
|
|
@@ -38907,6 +38909,7 @@ __exportStar(__webpack_require__(/*! ./date_type */ "./node_modules/@abaplint/co
|
|
|
38907
38909
|
__exportStar(__webpack_require__(/*! ./decfloat_type */ "./node_modules/@abaplint/core/build/src/abap/types/basic/decfloat_type.js"), exports);
|
|
38908
38910
|
__exportStar(__webpack_require__(/*! ./decfloat16_type */ "./node_modules/@abaplint/core/build/src/abap/types/basic/decfloat16_type.js"), exports);
|
|
38909
38911
|
__exportStar(__webpack_require__(/*! ./decfloat34_type */ "./node_modules/@abaplint/core/build/src/abap/types/basic/decfloat34_type.js"), exports);
|
|
38912
|
+
__exportStar(__webpack_require__(/*! ./enum_type */ "./node_modules/@abaplint/core/build/src/abap/types/basic/enum_type.js"), exports);
|
|
38910
38913
|
__exportStar(__webpack_require__(/*! ./float_type */ "./node_modules/@abaplint/core/build/src/abap/types/basic/float_type.js"), exports);
|
|
38911
38914
|
__exportStar(__webpack_require__(/*! ./floating_point_type */ "./node_modules/@abaplint/core/build/src/abap/types/basic/floating_point_type.js"), exports);
|
|
38912
38915
|
__exportStar(__webpack_require__(/*! ./generic_object_reference_type */ "./node_modules/@abaplint/core/build/src/abap/types/basic/generic_object_reference_type.js"), exports);
|
|
@@ -55886,7 +55889,7 @@ class Registry {
|
|
|
55886
55889
|
}
|
|
55887
55890
|
static abaplintVersion() {
|
|
55888
55891
|
// magic, see build script "version.sh"
|
|
55889
|
-
return "2.118.
|
|
55892
|
+
return "2.118.4";
|
|
55890
55893
|
}
|
|
55891
55894
|
getDDICReferences() {
|
|
55892
55895
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.118.
|
|
3
|
+
"version": "2.118.4",
|
|
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.118.
|
|
41
|
+
"@abaplint/core": "^2.118.4",
|
|
42
42
|
"@types/chai": "^4.3.20",
|
|
43
43
|
"@types/minimist": "^1.2.5",
|
|
44
44
|
"@types/mocha": "^10.0.10",
|