@abaplint/core 2.93.34 → 2.93.35
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/abaplint.d.ts
CHANGED
|
@@ -6176,6 +6176,11 @@ declare class View extends AbstractObject {
|
|
|
6176
6176
|
maxLength: number;
|
|
6177
6177
|
allowNamespace: boolean;
|
|
6178
6178
|
};
|
|
6179
|
+
getFields(): {
|
|
6180
|
+
VIEWFIELD: string;
|
|
6181
|
+
TABNAME: string;
|
|
6182
|
+
FIELDNAME: string;
|
|
6183
|
+
}[] | undefined;
|
|
6179
6184
|
getJoin(): {
|
|
6180
6185
|
LTAB: string;
|
|
6181
6186
|
LFIELD: string;
|
|
@@ -15,6 +15,13 @@ class View extends _abstract_object_1.AbstractObject {
|
|
|
15
15
|
allowNamespace: true,
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
|
+
getFields() {
|
|
19
|
+
var _a;
|
|
20
|
+
if (this.parsedData === undefined) {
|
|
21
|
+
this.parseXML();
|
|
22
|
+
}
|
|
23
|
+
return (_a = this.parsedData) === null || _a === void 0 ? void 0 : _a.fields;
|
|
24
|
+
}
|
|
18
25
|
getJoin() {
|
|
19
26
|
var _a;
|
|
20
27
|
if (this.parsedData === undefined) {
|
|
@@ -152,6 +152,7 @@ class Indent {
|
|
|
152
152
|
|| (this.options.selectionScreenBlockIndentation === true
|
|
153
153
|
&& type instanceof Statements.SelectionScreen
|
|
154
154
|
&& (statement.concatTokens().toUpperCase().includes("BEGIN OF SCREEN") ||
|
|
155
|
+
statement.concatTokens().toUpperCase().includes("BEGIN OF TABBED BLOCK") ||
|
|
155
156
|
statement.concatTokens().toUpperCase().includes("BEGIN OF BLOCK") ||
|
|
156
157
|
statement.concatTokens().toUpperCase().includes("BEGIN OF LINE")))
|
|
157
158
|
|| type instanceof Statements.StartOfSelection
|
package/build/src/registry.js
CHANGED