@abaplint/cli 2.102.38 → 2.102.39
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 +15 -5
- package/package.json +2 -2
package/build/cli.js
CHANGED
|
@@ -19385,8 +19385,14 @@ class BuiltIn {
|
|
|
19385
19385
|
}
|
|
19386
19386
|
getTypes() {
|
|
19387
19387
|
const ret = this.buildSY();
|
|
19388
|
-
|
|
19389
|
-
|
|
19388
|
+
{
|
|
19389
|
+
const id = new tokens_1.Identifier(new position_1.Position(1, 1), "abap_bool");
|
|
19390
|
+
ret.push(new _typed_identifier_1.TypedIdentifier(id, BuiltIn.filename, new basic_1.CharacterType(1, { qualifiedName: "ABAP_BOOL", ddicName: "ABAP_BOOL" })));
|
|
19391
|
+
}
|
|
19392
|
+
{
|
|
19393
|
+
const id = new tokens_1.Identifier(new position_1.Position(1, 1), "cursor");
|
|
19394
|
+
ret.push(new _typed_identifier_1.TypedIdentifier(id, BuiltIn.filename, basic_1.IntegerType.get({ qualifiedName: "CURSOR", ddicName: "CURSOR" })));
|
|
19395
|
+
}
|
|
19390
19396
|
return ret;
|
|
19391
19397
|
}
|
|
19392
19398
|
get(extras) {
|
|
@@ -39682,8 +39688,12 @@ class AbstractFile {
|
|
|
39682
39688
|
// handle additional escaping
|
|
39683
39689
|
split[0] = split[0].replace(/%3e/g, ">");
|
|
39684
39690
|
split[0] = split[0].replace(/%3c/g, "<");
|
|
39685
|
-
// handle namespace
|
|
39686
|
-
|
|
39691
|
+
// handle abapGit namespace
|
|
39692
|
+
split[0] = split[0].toUpperCase().replace(/#/g, "/");
|
|
39693
|
+
// handle AFF namespace
|
|
39694
|
+
split[0] = split[0].replace("(", "/");
|
|
39695
|
+
split[0] = split[0].replace(")", "/");
|
|
39696
|
+
return split[0];
|
|
39687
39697
|
}
|
|
39688
39698
|
}
|
|
39689
39699
|
exports.AbstractFile = AbstractFile;
|
|
@@ -48883,7 +48893,7 @@ class Registry {
|
|
|
48883
48893
|
}
|
|
48884
48894
|
static abaplintVersion() {
|
|
48885
48895
|
// magic, see build script "version.sh"
|
|
48886
|
-
return "2.102.
|
|
48896
|
+
return "2.102.39";
|
|
48887
48897
|
}
|
|
48888
48898
|
getDDICReferences() {
|
|
48889
48899
|
return this.ddicReferences;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/cli",
|
|
3
|
-
"version": "2.102.
|
|
3
|
+
"version": "2.102.39",
|
|
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.102.
|
|
41
|
+
"@abaplint/core": "^2.102.39",
|
|
42
42
|
"@types/chai": "^4.3.6",
|
|
43
43
|
"@types/glob": "^7.2.0",
|
|
44
44
|
"@types/minimist": "^1.2.2",
|