@abaplint/core 2.82.7 → 2.82.8
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.
|
@@ -4,6 +4,7 @@ exports.TableType = void 0;
|
|
|
4
4
|
const _abstract_object_1 = require("./_abstract_object");
|
|
5
5
|
const Types = require("../abap/types/basic");
|
|
6
6
|
const ddic_1 = require("../ddic");
|
|
7
|
+
const basic_1 = require("../abap/types/basic");
|
|
7
8
|
class TableType extends _abstract_object_1.AbstractObject {
|
|
8
9
|
constructor() {
|
|
9
10
|
super(...arguments);
|
|
@@ -55,6 +56,9 @@ class TableType extends _abstract_object_1.AbstractObject {
|
|
|
55
56
|
references.push({ object: lookup.object });
|
|
56
57
|
}
|
|
57
58
|
}
|
|
59
|
+
else if (this.parsedXML.rowkind === "R" && this.parsedXML.rowtype === "OBJECT") {
|
|
60
|
+
type = new Types.TableType(new basic_1.GenericObjectReferenceType(), { withHeader: false }, this.getName());
|
|
61
|
+
}
|
|
58
62
|
else if (this.parsedXML.rowkind === "R" && this.parsedXML.rowtype !== undefined) {
|
|
59
63
|
const lookup = ddic.lookupObject(this.parsedXML.rowtype);
|
|
60
64
|
type = new Types.TableType(lookup.type, { withHeader: false }, this.getName());
|
package/build/src/registry.js
CHANGED