@abaplint/core 2.105.12 → 2.105.13
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/src/abap/2_statements/statements/end_test_seam.js +2 -1
- package/build/src/abap/2_statements/statements/test_seam.js +2 -1
- package/build/src/abap/5_syntax/expressions/inline_data.js +4 -1
- package/build/src/registry.js +1 -1
- package/build/src/rules/downport.js +4 -0
- package/package.json +3 -3
|
@@ -2,9 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.EndTestSeam = void 0;
|
|
4
4
|
const combi_1 = require("../combi");
|
|
5
|
+
const version_1 = require("../../../version");
|
|
5
6
|
class EndTestSeam {
|
|
6
7
|
getMatcher() {
|
|
7
|
-
return (0, combi_1.str)("END-TEST-SEAM");
|
|
8
|
+
return (0, combi_1.ver)(version_1.Version.v750, (0, combi_1.str)("END-TEST-SEAM"));
|
|
8
9
|
}
|
|
9
10
|
}
|
|
10
11
|
exports.EndTestSeam = EndTestSeam;
|
|
@@ -3,9 +3,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.TestSeam = void 0;
|
|
4
4
|
const combi_1 = require("../combi");
|
|
5
5
|
const expressions_1 = require("../expressions");
|
|
6
|
+
const version_1 = require("../../../version");
|
|
6
7
|
class TestSeam {
|
|
7
8
|
getMatcher() {
|
|
8
|
-
return (0, combi_1.seq)("TEST-SEAM", expressions_1.TestSeamName);
|
|
9
|
+
return (0, combi_1.ver)(version_1.Version.v750, (0, combi_1.seq)("TEST-SEAM", expressions_1.TestSeamName));
|
|
9
10
|
}
|
|
10
11
|
}
|
|
11
12
|
exports.TestSeam = TestSeam;
|
|
@@ -10,9 +10,12 @@ class InlineData {
|
|
|
10
10
|
var _a;
|
|
11
11
|
const token = (_a = node.findFirstExpression(Expressions.TargetField)) === null || _a === void 0 ? void 0 : _a.getFirstToken();
|
|
12
12
|
if (token && type) {
|
|
13
|
-
if (type instanceof basic_1.CSequenceType) {
|
|
13
|
+
if (type instanceof basic_1.CSequenceType || type instanceof basic_1.CLikeType) {
|
|
14
14
|
type = basic_1.StringType.get();
|
|
15
15
|
}
|
|
16
|
+
else if (type instanceof basic_1.CGenericType) {
|
|
17
|
+
throw new Error("InlineData, generic type C cannot be used for inferred type");
|
|
18
|
+
}
|
|
16
19
|
const identifier = new _typed_identifier_1.TypedIdentifier(token, filename, type, ["inline" /* IdentifierMeta.InlineDefinition */]);
|
|
17
20
|
scope.addIdentifier(identifier);
|
|
18
21
|
scope.addReference(token, identifier, _reference_1.ReferenceType.DataWriteReference, filename);
|
package/build/src/registry.js
CHANGED
|
@@ -1526,6 +1526,10 @@ LOOP AT ${groupTargetName}tab ${groupTarget}.`;
|
|
|
1526
1526
|
if (valueBody === undefined) {
|
|
1527
1527
|
return;
|
|
1528
1528
|
}
|
|
1529
|
+
const type = source.findDirectExpression(Expressions.TypeNameOrInfer);
|
|
1530
|
+
if (type === undefined || (type === null || type === void 0 ? void 0 : type.concatTokens()) !== "#") {
|
|
1531
|
+
return;
|
|
1532
|
+
}
|
|
1529
1533
|
const fieldAssignments = valueBody.findDirectExpressions(Expressions.FieldAssignment);
|
|
1530
1534
|
if (fieldAssignments.length === 0) {
|
|
1531
1535
|
return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/core",
|
|
3
|
-
"version": "2.105.
|
|
3
|
+
"version": "2.105.13",
|
|
4
4
|
"description": "abaplint - Core API",
|
|
5
5
|
"main": "build/src/index.js",
|
|
6
6
|
"typings": "build/abaplint.d.ts",
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
},
|
|
51
51
|
"homepage": "https://abaplint.org",
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@microsoft/api-extractor": "^7.39.
|
|
53
|
+
"@microsoft/api-extractor": "^7.39.4",
|
|
54
54
|
"@types/chai": "^4.3.11",
|
|
55
55
|
"@types/mocha": "^10.0.6",
|
|
56
|
-
"@types/node": "^20.11.
|
|
56
|
+
"@types/node": "^20.11.6",
|
|
57
57
|
"chai": "^4.4.1",
|
|
58
58
|
"eslint": "^8.56.0",
|
|
59
59
|
"mocha": "^10.2.0",
|