@abaplint/transpiler-cli 2.7.133 → 2.7.135
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/bundle.js +207 -14
- package/package.json +5 -5
package/build/bundle.js
CHANGED
|
@@ -3682,7 +3682,7 @@ class DataDefinition extends combi_1.Expression {
|
|
|
3682
3682
|
getRunnable() {
|
|
3683
3683
|
const simple = (0, combi_1.opt)((0, combi_1.per)("READ-ONLY", Expressions.Type, Expressions.Length, Expressions.Decimals, Expressions.Value));
|
|
3684
3684
|
const table = (0, combi_1.seq)(Expressions.TypeTable, (0, combi_1.optPrio)("READ-ONLY"));
|
|
3685
|
-
return (0, combi_1.seq)(Expressions.DefinitionName, (0, combi_1.optPrio)(Expressions.ConstantFieldLength), (0, combi_1.alt)(simple, table));
|
|
3685
|
+
return (0, combi_1.seq)(Expressions.DefinitionName, (0, combi_1.optPrio)(Expressions.ConstantFieldLength), (0, combi_1.alt)(simple, table, Expressions.TypeStructure));
|
|
3686
3686
|
}
|
|
3687
3687
|
}
|
|
3688
3688
|
exports.DataDefinition = DataDefinition;
|
|
@@ -4811,6 +4811,7 @@ __exportStar(__webpack_require__(/*! ./string_template_formatting */ "./node_mod
|
|
|
4811
4811
|
__exportStar(__webpack_require__(/*! ./string_template_source */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/string_template_source.js"), exports);
|
|
4812
4812
|
__exportStar(__webpack_require__(/*! ./string_template */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/string_template.js"), exports);
|
|
4813
4813
|
__exportStar(__webpack_require__(/*! ./super_class_name */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/super_class_name.js"), exports);
|
|
4814
|
+
__exportStar(__webpack_require__(/*! ./type_structure */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/type_structure.js"), exports);
|
|
4814
4815
|
__exportStar(__webpack_require__(/*! ./switch_body */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/switch_body.js"), exports);
|
|
4815
4816
|
__exportStar(__webpack_require__(/*! ./table_body */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/table_body.js"), exports);
|
|
4816
4817
|
__exportStar(__webpack_require__(/*! ./table_expression */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/table_expression.js"), exports);
|
|
@@ -8094,6 +8095,31 @@ exports.TypeParam = TypeParam;
|
|
|
8094
8095
|
|
|
8095
8096
|
/***/ }),
|
|
8096
8097
|
|
|
8098
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/type_structure.js":
|
|
8099
|
+
/*!***********************************************************************************************!*\
|
|
8100
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/type_structure.js ***!
|
|
8101
|
+
\***********************************************************************************************/
|
|
8102
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
8103
|
+
|
|
8104
|
+
"use strict";
|
|
8105
|
+
|
|
8106
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
8107
|
+
exports.TypeStructure = void 0;
|
|
8108
|
+
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
8109
|
+
const _1 = __webpack_require__(/*! . */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/index.js");
|
|
8110
|
+
class TypeStructure extends combi_1.Expression {
|
|
8111
|
+
getRunnable() {
|
|
8112
|
+
// todo, add version,
|
|
8113
|
+
const hier = (0, combi_1.seq)("HIERARCHY", _1.NamespaceSimpleName);
|
|
8114
|
+
const evt = (0, combi_1.seq)("EVENT", _1.EventName);
|
|
8115
|
+
return (0, combi_1.seq)("TYPE STRUCTURE FOR", (0, combi_1.altPrio)(hier, evt));
|
|
8116
|
+
}
|
|
8117
|
+
}
|
|
8118
|
+
exports.TypeStructure = TypeStructure;
|
|
8119
|
+
//# sourceMappingURL=type_structure.js.map
|
|
8120
|
+
|
|
8121
|
+
/***/ }),
|
|
8122
|
+
|
|
8097
8123
|
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/type_table.js":
|
|
8098
8124
|
/*!*******************************************************************************************!*\
|
|
8099
8125
|
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/type_table.js ***!
|
|
@@ -8122,7 +8148,7 @@ class TypeTable extends combi_1.Expression {
|
|
|
8122
8148
|
// "WITH" is not allowed as a field name in keys
|
|
8123
8149
|
const typetable = (0, combi_1.alt)(generic, (0, combi_1.seq)(normal1, (0, combi_1.alt)((0, combi_1.opt)((0, combi_1.per)(header, initial, (0, combi_1.plusPrio)(type_table_key_1.TypeTableKey))), (0, combi_1.seq)((0, combi_1.plus)(type_table_key_1.TypeTableKey), (0, combi_1.optPrio)(initial)))));
|
|
8124
8150
|
const occurs = (0, combi_1.seq)("OCCURS", _1.Integer);
|
|
8125
|
-
const derived = (0, combi_1.ver)(version_1.Version.v754, (0, combi_1.seq)("TABLE FOR", (0, combi_1.altPrio)("ACTION IMPORT", "ACTION RESULT", "CREATE", "FAILED", "LOCK", "READ RESULT", "UPDATE"), _1.TypeName));
|
|
8151
|
+
const derived = (0, combi_1.ver)(version_1.Version.v754, (0, combi_1.seq)("TABLE FOR", (0, combi_1.altPrio)("ACTION IMPORT", "ACTION RESULT", "CREATE", "EVENT", "FAILED", "LOCK", "READ RESULT", "UPDATE"), _1.TypeName));
|
|
8126
8152
|
const oldType = (0, combi_1.seq)((0, combi_1.opt)("REF TO"), _1.TypeName, (0, combi_1.alt)((0, combi_1.seq)(occurs, (0, combi_1.opt)(header)), header));
|
|
8127
8153
|
const oldLike = (0, combi_1.seq)((0, combi_1.opt)("REF TO"), field_chain_1.FieldChain, (0, combi_1.alt)((0, combi_1.seq)(occurs, (0, combi_1.opt)(header)), header));
|
|
8128
8154
|
const ret = (0, combi_1.altPrio)((0, combi_1.seq)(occurs, (0, combi_1.opt)(header)), (0, combi_1.seq)("LIKE", (0, combi_1.alt)(oldLike, likeType, rangeLike)), (0, combi_1.seq)("TYPE", (0, combi_1.alt)(oldType, typetable, rangeType, derived)));
|
|
@@ -12771,6 +12797,7 @@ __exportStar(__webpack_require__(/*! ./free */ "./node_modules/@abaplint/core/bu
|
|
|
12771
12797
|
__exportStar(__webpack_require__(/*! ./endon */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/endon.js"), exports);
|
|
12772
12798
|
__exportStar(__webpack_require__(/*! ./fetch_next_cursor */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/fetch_next_cursor.js"), exports);
|
|
12773
12799
|
__exportStar(__webpack_require__(/*! ./reserve */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/reserve.js"), exports);
|
|
12800
|
+
__exportStar(__webpack_require__(/*! ./raise_entity_event */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/raise_entity_event.js"), exports);
|
|
12774
12801
|
__exportStar(__webpack_require__(/*! ./refresh_control */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/refresh_control.js"), exports);
|
|
12775
12802
|
__exportStar(__webpack_require__(/*! ./delete_dynpro */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/delete_dynpro.js"), exports);
|
|
12776
12803
|
__exportStar(__webpack_require__(/*! ./generate_dynpro */ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/generate_dynpro.js"), exports);
|
|
@@ -14189,6 +14216,28 @@ exports.Raise = Raise;
|
|
|
14189
14216
|
|
|
14190
14217
|
/***/ }),
|
|
14191
14218
|
|
|
14219
|
+
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/raise_entity_event.js":
|
|
14220
|
+
/*!**************************************************************************************************!*\
|
|
14221
|
+
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/raise_entity_event.js ***!
|
|
14222
|
+
\**************************************************************************************************/
|
|
14223
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
14224
|
+
|
|
14225
|
+
"use strict";
|
|
14226
|
+
|
|
14227
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
14228
|
+
exports.RaiseEntityEvent = void 0;
|
|
14229
|
+
const combi_1 = __webpack_require__(/*! ../combi */ "./node_modules/@abaplint/core/build/src/abap/2_statements/combi.js");
|
|
14230
|
+
const expressions_1 = __webpack_require__(/*! ../expressions */ "./node_modules/@abaplint/core/build/src/abap/2_statements/expressions/index.js");
|
|
14231
|
+
class RaiseEntityEvent {
|
|
14232
|
+
getMatcher() {
|
|
14233
|
+
return (0, combi_1.seq)("RAISE ENTITY EVENT", expressions_1.EventName, "FROM", expressions_1.Source);
|
|
14234
|
+
}
|
|
14235
|
+
}
|
|
14236
|
+
exports.RaiseEntityEvent = RaiseEntityEvent;
|
|
14237
|
+
//# sourceMappingURL=raise_entity_event.js.map
|
|
14238
|
+
|
|
14239
|
+
/***/ }),
|
|
14240
|
+
|
|
14192
14241
|
/***/ "./node_modules/@abaplint/core/build/src/abap/2_statements/statements/raise_event.js":
|
|
14193
14242
|
/*!*******************************************************************************************!*\
|
|
14194
14243
|
!*** ./node_modules/@abaplint/core/build/src/abap/2_statements/statements/raise_event.js ***!
|
|
@@ -16129,7 +16178,7 @@ const version_1 = __webpack_require__(/*! ../../../version */ "./node_modules/@a
|
|
|
16129
16178
|
class Type {
|
|
16130
16179
|
getMatcher() {
|
|
16131
16180
|
const simple = (0, combi_1.per)(Expressions.Type, Expressions.Decimals, Expressions.Length);
|
|
16132
|
-
const def = (0, combi_1.seq)(Expressions.NamespaceSimpleName, (0, combi_1.opt)(Expressions.ConstantFieldLength), (0, combi_1.opt)((0, combi_1.alt)(simple, Expressions.TypeTable)));
|
|
16181
|
+
const def = (0, combi_1.seq)(Expressions.NamespaceSimpleName, (0, combi_1.opt)(Expressions.ConstantFieldLength), (0, combi_1.opt)((0, combi_1.alt)(simple, Expressions.TypeTable, Expressions.TypeStructure)));
|
|
16133
16182
|
// todo, BOXED is only allowed with structures inside structures?
|
|
16134
16183
|
const boxed = (0, combi_1.ver)(version_1.Version.v702, "BOXED");
|
|
16135
16184
|
const ret = (0, combi_1.seq)("TYPES", def, (0, combi_1.opt)(boxed));
|
|
@@ -16704,7 +16753,7 @@ class Write {
|
|
|
16704
16753
|
const as = (0, combi_1.seq)("AS", (0, combi_1.altPrio)("LINE", "ICON", "CHECKBOX", "SYMBOL"));
|
|
16705
16754
|
const to = (0, combi_1.seq)("TO", expressions_1.Target);
|
|
16706
16755
|
const options = (0, combi_1.per)(mask, to, (0, combi_1.seq)("EXPONENT", expressions_1.Source), "NO-GROUPING", "NO-ZERO", "CENTERED", (0, combi_1.seq)("INPUT", (0, combi_1.opt)(onOff)), "NO-GAP", "LEFT-JUSTIFIED", as, (0, combi_1.seq)("FRAMES", onOff), (0, combi_1.seq)("HOTSPOT", (0, combi_1.opt)(onOff)), "RIGHT-JUSTIFIED", (0, combi_1.seq)("TIME ZONE", expressions_1.Source), (0, combi_1.seq)("UNDER", expressions_1.Source), (0, combi_1.seq)("STYLE", expressions_1.Source), (0, combi_1.seq)("ROUND", expressions_1.Source), (0, combi_1.seq)("QUICKINFO", expressions_1.Source), "ENVIRONMENT TIME FORMAT", dateFormat, (0, combi_1.seq)("UNIT", expressions_1.Source), (0, combi_1.seq)("INTENSIFIED", (0, combi_1.opt)(onOff)), (0, combi_1.seq)("INDEX", expressions_1.Source), (0, combi_1.seq)("DECIMALS", expressions_1.Source), (0, combi_1.seq)("INVERSE", (0, combi_1.opt)(onOff)), expressions_1.Color, (0, combi_1.seq)("CURRENCY", expressions_1.Source), "NO-SIGN");
|
|
16707
|
-
const ret = (0, combi_1.seq)("WRITE", (0, combi_1.opt)(expressions_1.WriteOffsetLength), (0, combi_1.altPrio)(expressions_1.Source, expressions_1.Dynamic, "/"), (0, combi_1.opt)(options));
|
|
16756
|
+
const ret = (0, combi_1.seq)("WRITE", (0, combi_1.alt)("AT /", (0, combi_1.seq)((0, combi_1.opt)(expressions_1.WriteOffsetLength), (0, combi_1.altPrio)(expressions_1.Source, expressions_1.Dynamic, "/"), (0, combi_1.opt)(options))));
|
|
16708
16757
|
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
|
|
16709
16758
|
}
|
|
16710
16759
|
}
|
|
@@ -17969,7 +18018,7 @@ class Normal {
|
|
|
17969
18018
|
getMatcher() {
|
|
17970
18019
|
// note that the sequence of alternatives here influences performance
|
|
17971
18020
|
return (0, _combi_1.alt)((0, _combi_1.sta)(Statements.Move), (0, _combi_1.sta)(Statements.Call), (0, _combi_1.sta)(Statements.Data), (0, _combi_1.sub)(Structures.If), (0, _combi_1.sta)(Statements.Clear), (0, _combi_1.sta)(Statements.FieldSymbol), (0, _combi_1.sta)(Statements.CreateObject), (0, _combi_1.sta)(Statements.CallFunction), (0, _combi_1.sta)(_statement_1.MacroCall), (0, _combi_1.sub)(Structures.LoopAtScreen), (0, _combi_1.sub)(Structures.Loop), (0, _combi_1.sta)(Statements.Append), (0, _combi_1.sub)(Structures.Try), (0, _combi_1.sta)(Statements.ReadTable), (0, _combi_1.sta)(Statements.Assert), (0, _combi_1.sta)(Statements.Return), (0, _combi_1.sta)(Statements.Select), (0, _combi_1.sta)(Statements.Assign), (0, _combi_1.sta)(Statements.InsertInternal), (0, _combi_1.sta)(Statements.DeleteInternal), (0, _combi_1.sta)(Statements.Concatenate), (0, _combi_1.sub)(Structures.Case), (0, _combi_1.sub)(Structures.CaseType), (0, _combi_1.sub)(Structures.Enhancement), (0, _combi_1.sub)(Structures.EnhancementSection), (0, _combi_1.sta)(Statements.AddCorresponding), (0, _combi_1.sta)(Statements.Add), (0, _combi_1.sta)(Statements.AssignLocalCopy), (0, _combi_1.sta)(Statements.AuthorityCheck), (0, _combi_1.sta)(Statements.Back), (0, _combi_1.sta)(Statements.Break), (0, _combi_1.sta)(Statements.BreakId), (0, _combi_1.sta)(Statements.CallDatabase), (0, _combi_1.sta)(Statements.CallDialog), (0, _combi_1.sta)(Statements.CallKernel), (0, _combi_1.sta)(Statements.CallOLE), (0, _combi_1.sta)(Statements.CallScreen), (0, _combi_1.sta)(Statements.ModifyScreen), (0, _combi_1.sta)(Statements.CallSelectionScreen), (0, _combi_1.sta)(Statements.CallTransaction), (0, _combi_1.sta)(Statements.CallTransformation), (0, _combi_1.sta)(Statements.Check), (0, _combi_1.sta)(Statements.ClassDefinitionLoad), (0, _combi_1.sta)(Statements.CloseCursor), (0, _combi_1.sta)(Statements.CloseDataset), (0, _combi_1.sta)(Statements.Collect), (0, _combi_1.sta)(Statements.Commit), (0, _combi_1.sta)(Statements.Communication), (0, _combi_1.sta)(Statements.Compute), (0, _combi_1.sta)(Statements.CallBadi), (0, _combi_1.sta)(Statements.Condense), (0, _combi_1.sta)(Statements.Constant), (0, _combi_1.sta)(Statements.Contexts), (0, _combi_1.sta)(Statements.Continue), (0, _combi_1.sta)(Statements.ConvertText), (0, _combi_1.sta)(Statements.Convert), (0, _combi_1.sta)(Statements.CreateData), (0, _combi_1.sta)(Statements.CreateOLE), (0, _combi_1.sta)(Statements.DeleteCluster), (0, _combi_1.sta)(Statements.DeleteDatabase), (0, _combi_1.sta)(Statements.DeleteDataset), (0, _combi_1.sta)(Statements.DeleteDynpro), (0, _combi_1.sta)(Statements.DeleteMemory), (0, _combi_1.sta)(Statements.DeleteReport), (0, _combi_1.sta)(Statements.DeleteTextpool), (0, _combi_1.sta)(Statements.Demand), (0, _combi_1.sta)(Statements.Describe), (0, _combi_1.sta)(Statements.Detail), (0, _combi_1.sta)(Statements.Divide), (0, _combi_1.sta)(Statements.EditorCall), (0, _combi_1.sta)(Statements.EnhancementPoint), (0, _combi_1.sta)(Statements.Exit), (0, _combi_1.sta)(Statements.ExportDynpro), (0, _combi_1.sta)(Statements.Export), (0, _combi_1.sta)(Statements.Extract), (0, _combi_1.sta)(Statements.FetchNextCursor), (0, _combi_1.sta)(Statements.FieldGroup), (0, _combi_1.sta)(Statements.Fields), (0, _combi_1.sta)(Statements.Find), (0, _combi_1.sta)(Statements.Format), (0, _combi_1.sta)(Statements.FreeMemory), (0, _combi_1.sta)(Statements.FreeObject), (0, _combi_1.sta)(Statements.Free), (0, _combi_1.sta)(Statements.GenerateDynpro), (0, _combi_1.sta)(Statements.GenerateReport), (0, _combi_1.sta)(Statements.GenerateSubroutine), (0, _combi_1.sta)(Statements.GetBadi), (0, _combi_1.sta)(Statements.GetBit), (0, _combi_1.sta)(Statements.GetCursor), (0, _combi_1.sta)(Statements.GetDataset), (0, _combi_1.sta)(Statements.GetLocale), (0, _combi_1.sta)(Statements.GetParameter), (0, _combi_1.sta)(Statements.GetPFStatus), (0, _combi_1.sta)(Statements.GetProperty), (0, _combi_1.sta)(Statements.GetReference), (0, _combi_1.sta)(Statements.GetRunTime), (0, _combi_1.sta)(Statements.GetTime), (0, _combi_1.sta)(Statements.Hide), (0, _combi_1.sta)(Statements.Nodes), (0, _combi_1.sta)(Statements.ImportDynpro), (0, _combi_1.sta)(Statements.ImportNametab), (0, _combi_1.sta)(Statements.MoveCorresponding), (0, _combi_1.sta)(Statements.Import), (0, _combi_1.sta)(Statements.Infotypes), (0, _combi_1.sta)(Statements.Include), // include does not have to be at top level
|
|
17972
|
-
(0, _combi_1.sta)(Statements.InsertDatabase), (0, _combi_1.sta)(Statements.InsertReport), (0, _combi_1.sta)(Statements.InsertTextpool), (0, _combi_1.sta)(Statements.InsertFieldGroup), (0, _combi_1.sta)(Statements.InterfaceLoad), (0, _combi_1.sta)(Statements.Leave), (0, _combi_1.sta)(Statements.LoadReport), (0, _combi_1.sta)(Statements.Local), (0, _combi_1.sta)(Statements.With), (0, _combi_1.sta)(Statements.LogPoint), (0, _combi_1.sta)(Statements.Message), (0, _combi_1.sta)(Statements.ModifyLine), (0, _combi_1.sta)(Statements.ModifyDatabase), (0, _combi_1.sta)(Statements.ModifyInternal), (0, _combi_1.sta)(Statements.Multiply), (0, _combi_1.sta)(Statements.NewLine), (0, _combi_1.sta)(Statements.NewPage), (0, _combi_1.sta)(Statements.OpenCursor), (0, _combi_1.sta)(Statements.OpenDataset), (0, _combi_1.sta)(Statements.Overlay), (0, _combi_1.sta)(Statements.Pack), (0, _combi_1.sta)(Statements.Perform), (0, _combi_1.sta)(Statements.FormDefinition), (0, _combi_1.sta)(Statements.Position), (0, _combi_1.sta)(Statements.Put), (0, _combi_1.sta)(Statements.PrintControl), (0, _combi_1.sta)(Statements.RaiseEvent), (0, _combi_1.sta)(Statements.Raise), (0, _combi_1.sta)(Statements.Ranges), (0, _combi_1.sta)(Statements.ReadDataset), (0, _combi_1.sta)(Statements.ReadLine), (0, _combi_1.sta)(Statements.ReadReport), (0, _combi_1.sta)(Statements.ReadTextpool), (0, _combi_1.sta)(Statements.Receive), (0, _combi_1.sta)(Statements.RefreshControl), (0, _combi_1.sta)(Statements.Refresh), (0, _combi_1.sta)(Statements.Reject), (0, _combi_1.sta)(Statements.Replace), (0, _combi_1.sta)(Statements.Reserve), (0, _combi_1.sta)(Statements.Resume), (0, _combi_1.sta)(Statements.Retry), (0, _combi_1.sta)(Statements.Rollback), (0, _combi_1.sta)(Statements.Scan), (0, _combi_1.sta)(Statements.ScrollList), (0, _combi_1.sta)(Statements.Search), (0, _combi_1.sta)(Statements.SetBit), (0, _combi_1.sta)(Statements.SetBlank), (0, _combi_1.sta)(Statements.SetCountry), (0, _combi_1.sta)(Statements.SetCursor), (0, _combi_1.sta)(Statements.SetDataset), (0, _combi_1.sta)(Statements.SetExtendedCheck), (0, _combi_1.sta)(Statements.SetHandler), (0, _combi_1.sta)(Statements.SetLanguage), (0, _combi_1.sta)(Statements.SetLeft), (0, _combi_1.sta)(Statements.SetLocale), (0, _combi_1.sta)(Statements.SetMargin), (0, _combi_1.sta)(Statements.SetParameter), (0, _combi_1.sta)(Statements.SetPFStatus), (0, _combi_1.sta)(Statements.SetProperty), (0, _combi_1.sta)(Statements.SetRunTime), (0, _combi_1.sta)(Statements.SetScreen), (0, _combi_1.sta)(Statements.SetTitlebar), (0, _combi_1.sta)(Statements.SetUserCommand), (0, _combi_1.sta)(Statements.SetUpdateTask), (0, _combi_1.sta)(Statements.Shift), (0, _combi_1.sta)(Statements.Skip), (0, _combi_1.sta)(Statements.SortDataset), (0, _combi_1.sta)(Statements.Sort), (0, _combi_1.sta)(Statements.Static), (0, _combi_1.sta)(Statements.Split), (0, _combi_1.sta)(Statements.Stop), (0, _combi_1.sta)(Statements.Submit), (0, _combi_1.sta)(Statements.Summary), (0, _combi_1.sta)(Statements.SubtractCorresponding), (0, _combi_1.sta)(Statements.Subtract), (0, _combi_1.sta)(Statements.SuppressDialog), (0, _combi_1.sta)(Statements.Supply), (0, _combi_1.sta)(Statements.Sum), (0, _combi_1.sta)(Statements.SyntaxCheck), (0, _combi_1.sta)(Statements.SystemCall), (0, _combi_1.sta)(Statements.Tables), (0, _combi_1.sta)(Statements.Transfer), (0, _combi_1.sta)(Statements.Translate), (0, _combi_1.sta)(Statements.Type), (0, _combi_1.sta)(Statements.TypePools), (0, _combi_1.sta)(Statements.Uline), (0, _combi_1.sta)(Statements.Unassign), (0, _combi_1.sta)(Statements.Unpack), (0, _combi_1.sta)(Statements.UpdateDatabase), (0, _combi_1.sta)(Statements.Wait), (0, _combi_1.sta)(Statements.Window), (0, _combi_1.sta)(Statements.Write), (0, _combi_1.sta)(Statements.CommitEntities), (0, _combi_1.sta)(Statements.GetPermissions), (0, _combi_1.sta)(Statements.SetLocks), (0, _combi_1.sta)(Statements.ModifyEntities), (0, _combi_1.sta)(Statements.ReadEntities), (0, _combi_1.sta)(Statements.RollbackEntities), (0, _combi_1.sub)(Structures.Define), (0, _combi_1.sub)(Structures.TestInjection), (0, _combi_1.sub)(Structures.TestSeam), (0, _combi_1.sub)(Structures.TypeMesh), (0, _combi_1.sub)(Structures.Provide), (0, _combi_1.sub)(Structures.CatchSystemExceptions), (0, _combi_1.sub)(Structures.At), (0, _combi_1.sub)(Structures.AtFirst), (0, _combi_1.sub)(Structures.AtLast), (0, _combi_1.sub)(Structures.Constants), (0, _combi_1.sub)(Structures.Types), (0, _combi_1.sub)(Structures.Statics), (0, _combi_1.sub)(Structures.Select), (0, _combi_1.sub)(Structures.Data), (0, _combi_1.sub)(Structures.TypeEnum), (0, _combi_1.sub)(Structures.While), (0, _combi_1.sub)(Structures.With), (0, _combi_1.sub)(Structures.Do), (0, _combi_1.sub)(Structures.ExecSQL));
|
|
18021
|
+
(0, _combi_1.sta)(Statements.InsertDatabase), (0, _combi_1.sta)(Statements.InsertReport), (0, _combi_1.sta)(Statements.InsertTextpool), (0, _combi_1.sta)(Statements.InsertFieldGroup), (0, _combi_1.sta)(Statements.InterfaceLoad), (0, _combi_1.sta)(Statements.Leave), (0, _combi_1.sta)(Statements.LoadReport), (0, _combi_1.sta)(Statements.Local), (0, _combi_1.sta)(Statements.With), (0, _combi_1.sta)(Statements.LogPoint), (0, _combi_1.sta)(Statements.Message), (0, _combi_1.sta)(Statements.ModifyLine), (0, _combi_1.sta)(Statements.ModifyDatabase), (0, _combi_1.sta)(Statements.ModifyInternal), (0, _combi_1.sta)(Statements.Multiply), (0, _combi_1.sta)(Statements.NewLine), (0, _combi_1.sta)(Statements.NewPage), (0, _combi_1.sta)(Statements.OpenCursor), (0, _combi_1.sta)(Statements.OpenDataset), (0, _combi_1.sta)(Statements.Overlay), (0, _combi_1.sta)(Statements.Pack), (0, _combi_1.sta)(Statements.Perform), (0, _combi_1.sta)(Statements.FormDefinition), (0, _combi_1.sta)(Statements.Position), (0, _combi_1.sta)(Statements.Put), (0, _combi_1.sta)(Statements.PrintControl), (0, _combi_1.sta)(Statements.RaiseEvent), (0, _combi_1.sta)(Statements.RaiseEntityEvent), (0, _combi_1.sta)(Statements.Raise), (0, _combi_1.sta)(Statements.Ranges), (0, _combi_1.sta)(Statements.ReadDataset), (0, _combi_1.sta)(Statements.ReadLine), (0, _combi_1.sta)(Statements.ReadReport), (0, _combi_1.sta)(Statements.ReadTextpool), (0, _combi_1.sta)(Statements.Receive), (0, _combi_1.sta)(Statements.RefreshControl), (0, _combi_1.sta)(Statements.Refresh), (0, _combi_1.sta)(Statements.Reject), (0, _combi_1.sta)(Statements.Replace), (0, _combi_1.sta)(Statements.Reserve), (0, _combi_1.sta)(Statements.Resume), (0, _combi_1.sta)(Statements.Retry), (0, _combi_1.sta)(Statements.Rollback), (0, _combi_1.sta)(Statements.Scan), (0, _combi_1.sta)(Statements.ScrollList), (0, _combi_1.sta)(Statements.Search), (0, _combi_1.sta)(Statements.SetBit), (0, _combi_1.sta)(Statements.SetBlank), (0, _combi_1.sta)(Statements.SetCountry), (0, _combi_1.sta)(Statements.SetCursor), (0, _combi_1.sta)(Statements.SetDataset), (0, _combi_1.sta)(Statements.SetExtendedCheck), (0, _combi_1.sta)(Statements.SetHandler), (0, _combi_1.sta)(Statements.SetLanguage), (0, _combi_1.sta)(Statements.SetLeft), (0, _combi_1.sta)(Statements.SetLocale), (0, _combi_1.sta)(Statements.SetMargin), (0, _combi_1.sta)(Statements.SetParameter), (0, _combi_1.sta)(Statements.SetPFStatus), (0, _combi_1.sta)(Statements.SetProperty), (0, _combi_1.sta)(Statements.SetRunTime), (0, _combi_1.sta)(Statements.SetScreen), (0, _combi_1.sta)(Statements.SetTitlebar), (0, _combi_1.sta)(Statements.SetUserCommand), (0, _combi_1.sta)(Statements.SetUpdateTask), (0, _combi_1.sta)(Statements.Shift), (0, _combi_1.sta)(Statements.Skip), (0, _combi_1.sta)(Statements.SortDataset), (0, _combi_1.sta)(Statements.Sort), (0, _combi_1.sta)(Statements.Static), (0, _combi_1.sta)(Statements.Split), (0, _combi_1.sta)(Statements.Stop), (0, _combi_1.sta)(Statements.Submit), (0, _combi_1.sta)(Statements.Summary), (0, _combi_1.sta)(Statements.SubtractCorresponding), (0, _combi_1.sta)(Statements.Subtract), (0, _combi_1.sta)(Statements.SuppressDialog), (0, _combi_1.sta)(Statements.Supply), (0, _combi_1.sta)(Statements.Sum), (0, _combi_1.sta)(Statements.SyntaxCheck), (0, _combi_1.sta)(Statements.SystemCall), (0, _combi_1.sta)(Statements.Tables), (0, _combi_1.sta)(Statements.Transfer), (0, _combi_1.sta)(Statements.Translate), (0, _combi_1.sta)(Statements.Type), (0, _combi_1.sta)(Statements.TypePools), (0, _combi_1.sta)(Statements.Uline), (0, _combi_1.sta)(Statements.Unassign), (0, _combi_1.sta)(Statements.Unpack), (0, _combi_1.sta)(Statements.UpdateDatabase), (0, _combi_1.sta)(Statements.Wait), (0, _combi_1.sta)(Statements.Window), (0, _combi_1.sta)(Statements.Write), (0, _combi_1.sta)(Statements.CommitEntities), (0, _combi_1.sta)(Statements.GetPermissions), (0, _combi_1.sta)(Statements.SetLocks), (0, _combi_1.sta)(Statements.ModifyEntities), (0, _combi_1.sta)(Statements.ReadEntities), (0, _combi_1.sta)(Statements.RollbackEntities), (0, _combi_1.sub)(Structures.Define), (0, _combi_1.sub)(Structures.TestInjection), (0, _combi_1.sub)(Structures.TestSeam), (0, _combi_1.sub)(Structures.TypeMesh), (0, _combi_1.sub)(Structures.Provide), (0, _combi_1.sub)(Structures.CatchSystemExceptions), (0, _combi_1.sub)(Structures.At), (0, _combi_1.sub)(Structures.AtFirst), (0, _combi_1.sub)(Structures.AtLast), (0, _combi_1.sub)(Structures.Constants), (0, _combi_1.sub)(Structures.Types), (0, _combi_1.sub)(Structures.Statics), (0, _combi_1.sub)(Structures.Select), (0, _combi_1.sub)(Structures.Data), (0, _combi_1.sub)(Structures.TypeEnum), (0, _combi_1.sub)(Structures.While), (0, _combi_1.sub)(Structures.With), (0, _combi_1.sub)(Structures.Do), (0, _combi_1.sub)(Structures.ExecSQL));
|
|
17973
18022
|
}
|
|
17974
18023
|
}
|
|
17975
18024
|
exports.Normal = Normal;
|
|
@@ -23220,6 +23269,11 @@ class DataDefinition {
|
|
|
23220
23269
|
if (valueNode) {
|
|
23221
23270
|
value = new basic_types_1.BasicTypes(filename, scope).findValue(node);
|
|
23222
23271
|
}
|
|
23272
|
+
const name = node.findFirstExpression(Expressions.DefinitionName);
|
|
23273
|
+
const typeStructure = node.findFirstExpression(Expressions.TypeStructure);
|
|
23274
|
+
if (typeStructure && name) {
|
|
23275
|
+
return new _typed_identifier_1.TypedIdentifier(name.getFirstToken(), filename, new basic_1.VoidType("DataDefinition, TypeStructure"));
|
|
23276
|
+
}
|
|
23223
23277
|
const bfound = new basic_types_1.BasicTypes(filename, scope).simpleType(node);
|
|
23224
23278
|
if (bfound) {
|
|
23225
23279
|
if (value) {
|
|
@@ -23229,8 +23283,8 @@ class DataDefinition {
|
|
|
23229
23283
|
return bfound;
|
|
23230
23284
|
}
|
|
23231
23285
|
}
|
|
23232
|
-
const name = node.findFirstExpression(Expressions.DefinitionName);
|
|
23233
23286
|
if (name) {
|
|
23287
|
+
console.dir("undef");
|
|
23234
23288
|
return new _typed_identifier_1.TypedIdentifier(name.getFirstToken(), filename, new basic_1.UnknownType("DataDefinition, fallback"));
|
|
23235
23289
|
}
|
|
23236
23290
|
return undefined;
|
|
@@ -25233,7 +25287,7 @@ class Select {
|
|
|
25233
25287
|
const token = node.getFirstToken();
|
|
25234
25288
|
const from = node.findDirectExpression(Expressions.SQLFrom);
|
|
25235
25289
|
const dbSources = from ? new sql_from_1.SQLFrom().runSyntax(from, scope, filename) : [];
|
|
25236
|
-
if (
|
|
25290
|
+
if (from === undefined) {
|
|
25237
25291
|
throw new Error(`Missing FROM`);
|
|
25238
25292
|
}
|
|
25239
25293
|
const fields = this.findFields(node);
|
|
@@ -42526,6 +42580,37 @@ exports.ApplicationJobTemplate = ApplicationJobTemplate;
|
|
|
42526
42580
|
|
|
42527
42581
|
/***/ }),
|
|
42528
42582
|
|
|
42583
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/application_log_object.js":
|
|
42584
|
+
/*!*********************************************************************************!*\
|
|
42585
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/application_log_object.js ***!
|
|
42586
|
+
\*********************************************************************************/
|
|
42587
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
42588
|
+
|
|
42589
|
+
"use strict";
|
|
42590
|
+
|
|
42591
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
42592
|
+
exports.ApplicationLogObject = void 0;
|
|
42593
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
42594
|
+
class ApplicationLogObject extends _abstract_object_1.AbstractObject {
|
|
42595
|
+
getType() {
|
|
42596
|
+
return "APLO";
|
|
42597
|
+
}
|
|
42598
|
+
getAllowedNaming() {
|
|
42599
|
+
return {
|
|
42600
|
+
maxLength: 200,
|
|
42601
|
+
allowNamespace: true,
|
|
42602
|
+
};
|
|
42603
|
+
}
|
|
42604
|
+
getDescription() {
|
|
42605
|
+
// todo
|
|
42606
|
+
return undefined;
|
|
42607
|
+
}
|
|
42608
|
+
}
|
|
42609
|
+
exports.ApplicationLogObject = ApplicationLogObject;
|
|
42610
|
+
//# sourceMappingURL=application_log_object.js.map
|
|
42611
|
+
|
|
42612
|
+
/***/ }),
|
|
42613
|
+
|
|
42529
42614
|
/***/ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js":
|
|
42530
42615
|
/*!****************************************************************************************************!*\
|
|
42531
42616
|
!*** ./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js ***!
|
|
@@ -43135,6 +43220,37 @@ exports.BusinessObjectModel = BusinessObjectModel;
|
|
|
43135
43220
|
|
|
43136
43221
|
/***/ }),
|
|
43137
43222
|
|
|
43223
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/business_object_type.js":
|
|
43224
|
+
/*!*******************************************************************************!*\
|
|
43225
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/business_object_type.js ***!
|
|
43226
|
+
\*******************************************************************************/
|
|
43227
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
43228
|
+
|
|
43229
|
+
"use strict";
|
|
43230
|
+
|
|
43231
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
43232
|
+
exports.BusinessObjectType = void 0;
|
|
43233
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
43234
|
+
class BusinessObjectType extends _abstract_object_1.AbstractObject {
|
|
43235
|
+
getType() {
|
|
43236
|
+
return "SOBJ";
|
|
43237
|
+
}
|
|
43238
|
+
getAllowedNaming() {
|
|
43239
|
+
return {
|
|
43240
|
+
maxLength: 200,
|
|
43241
|
+
allowNamespace: true,
|
|
43242
|
+
};
|
|
43243
|
+
}
|
|
43244
|
+
getDescription() {
|
|
43245
|
+
// todo
|
|
43246
|
+
return undefined;
|
|
43247
|
+
}
|
|
43248
|
+
}
|
|
43249
|
+
exports.BusinessObjectType = BusinessObjectType;
|
|
43250
|
+
//# sourceMappingURL=business_object_type.js.map
|
|
43251
|
+
|
|
43252
|
+
/***/ }),
|
|
43253
|
+
|
|
43138
43254
|
/***/ "./node_modules/@abaplint/core/build/src/objects/cds_metadata_extension.js":
|
|
43139
43255
|
/*!*********************************************************************************!*\
|
|
43140
43256
|
!*** ./node_modules/@abaplint/core/build/src/objects/cds_metadata_extension.js ***!
|
|
@@ -44377,6 +44493,37 @@ exports.EventBinding = EventBinding;
|
|
|
44377
44493
|
|
|
44378
44494
|
/***/ }),
|
|
44379
44495
|
|
|
44496
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/event_consumer.js":
|
|
44497
|
+
/*!*************************************************************************!*\
|
|
44498
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/event_consumer.js ***!
|
|
44499
|
+
\*************************************************************************/
|
|
44500
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
44501
|
+
|
|
44502
|
+
"use strict";
|
|
44503
|
+
|
|
44504
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
44505
|
+
exports.EventConsumer = void 0;
|
|
44506
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
44507
|
+
class EventConsumer extends _abstract_object_1.AbstractObject {
|
|
44508
|
+
getType() {
|
|
44509
|
+
return "EEEC";
|
|
44510
|
+
}
|
|
44511
|
+
getAllowedNaming() {
|
|
44512
|
+
return {
|
|
44513
|
+
maxLength: 200,
|
|
44514
|
+
allowNamespace: true,
|
|
44515
|
+
};
|
|
44516
|
+
}
|
|
44517
|
+
getDescription() {
|
|
44518
|
+
// todo
|
|
44519
|
+
return undefined;
|
|
44520
|
+
}
|
|
44521
|
+
}
|
|
44522
|
+
exports.EventConsumer = EventConsumer;
|
|
44523
|
+
//# sourceMappingURL=event_consumer.js.map
|
|
44524
|
+
|
|
44525
|
+
/***/ }),
|
|
44526
|
+
|
|
44380
44527
|
/***/ "./node_modules/@abaplint/core/build/src/objects/extension_index.js":
|
|
44381
44528
|
/*!**************************************************************************!*\
|
|
44382
44529
|
!*** ./node_modules/@abaplint/core/build/src/objects/extension_index.js ***!
|
|
@@ -45360,6 +45507,7 @@ __exportStar(__webpack_require__(/*! ./activation_variant */ "./node_modules/@ab
|
|
|
45360
45507
|
__exportStar(__webpack_require__(/*! ./api_release_state */ "./node_modules/@abaplint/core/build/src/objects/api_release_state.js"), exports);
|
|
45361
45508
|
__exportStar(__webpack_require__(/*! ./application_job_catalog_entry */ "./node_modules/@abaplint/core/build/src/objects/application_job_catalog_entry.js"), exports);
|
|
45362
45509
|
__exportStar(__webpack_require__(/*! ./application_job_template */ "./node_modules/@abaplint/core/build/src/objects/application_job_template.js"), exports);
|
|
45510
|
+
__exportStar(__webpack_require__(/*! ./application_log_object */ "./node_modules/@abaplint/core/build/src/objects/application_log_object.js"), exports);
|
|
45363
45511
|
__exportStar(__webpack_require__(/*! ./assignment_service_to_authorization_group */ "./node_modules/@abaplint/core/build/src/objects/assignment_service_to_authorization_group.js"), exports);
|
|
45364
45512
|
__exportStar(__webpack_require__(/*! ./atc_check_category */ "./node_modules/@abaplint/core/build/src/objects/atc_check_category.js"), exports);
|
|
45365
45513
|
__exportStar(__webpack_require__(/*! ./atc_check_object */ "./node_modules/@abaplint/core/build/src/objects/atc_check_object.js"), exports);
|
|
@@ -45378,6 +45526,7 @@ __exportStar(__webpack_require__(/*! ./business_configuration_set */ "./node_mod
|
|
|
45378
45526
|
__exportStar(__webpack_require__(/*! ./business_function_assignment */ "./node_modules/@abaplint/core/build/src/objects/business_function_assignment.js"), exports);
|
|
45379
45527
|
__exportStar(__webpack_require__(/*! ./business_function_set_assignment */ "./node_modules/@abaplint/core/build/src/objects/business_function_set_assignment.js"), exports);
|
|
45380
45528
|
__exportStar(__webpack_require__(/*! ./business_object_model */ "./node_modules/@abaplint/core/build/src/objects/business_object_model.js"), exports);
|
|
45529
|
+
__exportStar(__webpack_require__(/*! ./business_object_type */ "./node_modules/@abaplint/core/build/src/objects/business_object_type.js"), exports);
|
|
45381
45530
|
__exportStar(__webpack_require__(/*! ./cds_metadata_extension */ "./node_modules/@abaplint/core/build/src/objects/cds_metadata_extension.js"), exports);
|
|
45382
45531
|
__exportStar(__webpack_require__(/*! ./change_document */ "./node_modules/@abaplint/core/build/src/objects/change_document.js"), exports);
|
|
45383
45532
|
__exportStar(__webpack_require__(/*! ./chapter_of_book_structure */ "./node_modules/@abaplint/core/build/src/objects/chapter_of_book_structure.js"), exports);
|
|
@@ -45404,6 +45553,8 @@ __exportStar(__webpack_require__(/*! ./ecatt_test_script */ "./node_modules/@aba
|
|
|
45404
45553
|
__exportStar(__webpack_require__(/*! ./enhancement_implementation */ "./node_modules/@abaplint/core/build/src/objects/enhancement_implementation.js"), exports);
|
|
45405
45554
|
__exportStar(__webpack_require__(/*! ./enhancement_spot */ "./node_modules/@abaplint/core/build/src/objects/enhancement_spot.js"), exports);
|
|
45406
45555
|
__exportStar(__webpack_require__(/*! ./event_binding */ "./node_modules/@abaplint/core/build/src/objects/event_binding.js"), exports);
|
|
45556
|
+
__exportStar(__webpack_require__(/*! ./event_binding */ "./node_modules/@abaplint/core/build/src/objects/event_binding.js"), exports);
|
|
45557
|
+
__exportStar(__webpack_require__(/*! ./event_consumer */ "./node_modules/@abaplint/core/build/src/objects/event_consumer.js"), exports);
|
|
45407
45558
|
__exportStar(__webpack_require__(/*! ./extension_index */ "./node_modules/@abaplint/core/build/src/objects/extension_index.js"), exports);
|
|
45408
45559
|
__exportStar(__webpack_require__(/*! ./field_catalog */ "./node_modules/@abaplint/core/build/src/objects/field_catalog.js"), exports);
|
|
45409
45560
|
__exportStar(__webpack_require__(/*! ./form_object_form */ "./node_modules/@abaplint/core/build/src/objects/form_object_form.js"), exports);
|
|
@@ -45447,6 +45598,7 @@ __exportStar(__webpack_require__(/*! ./personalization_object */ "./node_modules
|
|
|
45447
45598
|
__exportStar(__webpack_require__(/*! ./program */ "./node_modules/@abaplint/core/build/src/objects/program.js"), exports);
|
|
45448
45599
|
__exportStar(__webpack_require__(/*! ./proxy_object */ "./node_modules/@abaplint/core/build/src/objects/proxy_object.js"), exports);
|
|
45449
45600
|
__exportStar(__webpack_require__(/*! ./push_channel */ "./node_modules/@abaplint/core/build/src/objects/push_channel.js"), exports);
|
|
45601
|
+
__exportStar(__webpack_require__(/*! ./query_user_group */ "./node_modules/@abaplint/core/build/src/objects/query_user_group.js"), exports);
|
|
45450
45602
|
__exportStar(__webpack_require__(/*! ./restriction_field */ "./node_modules/@abaplint/core/build/src/objects/restriction_field.js"), exports);
|
|
45451
45603
|
__exportStar(__webpack_require__(/*! ./restriction_type */ "./node_modules/@abaplint/core/build/src/objects/restriction_type.js"), exports);
|
|
45452
45604
|
__exportStar(__webpack_require__(/*! ./rfc_service */ "./node_modules/@abaplint/core/build/src/objects/rfc_service.js"), exports);
|
|
@@ -46426,6 +46578,37 @@ exports.PushChannel = PushChannel;
|
|
|
46426
46578
|
|
|
46427
46579
|
/***/ }),
|
|
46428
46580
|
|
|
46581
|
+
/***/ "./node_modules/@abaplint/core/build/src/objects/query_user_group.js":
|
|
46582
|
+
/*!***************************************************************************!*\
|
|
46583
|
+
!*** ./node_modules/@abaplint/core/build/src/objects/query_user_group.js ***!
|
|
46584
|
+
\***************************************************************************/
|
|
46585
|
+
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
46586
|
+
|
|
46587
|
+
"use strict";
|
|
46588
|
+
|
|
46589
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
46590
|
+
exports.QueryUserGroup = void 0;
|
|
46591
|
+
const _abstract_object_1 = __webpack_require__(/*! ./_abstract_object */ "./node_modules/@abaplint/core/build/src/objects/_abstract_object.js");
|
|
46592
|
+
class QueryUserGroup extends _abstract_object_1.AbstractObject {
|
|
46593
|
+
getType() {
|
|
46594
|
+
return "AQBG";
|
|
46595
|
+
}
|
|
46596
|
+
getAllowedNaming() {
|
|
46597
|
+
return {
|
|
46598
|
+
maxLength: 200,
|
|
46599
|
+
allowNamespace: true,
|
|
46600
|
+
};
|
|
46601
|
+
}
|
|
46602
|
+
getDescription() {
|
|
46603
|
+
// todo
|
|
46604
|
+
return undefined;
|
|
46605
|
+
}
|
|
46606
|
+
}
|
|
46607
|
+
exports.QueryUserGroup = QueryUserGroup;
|
|
46608
|
+
//# sourceMappingURL=query_user_group.js.map
|
|
46609
|
+
|
|
46610
|
+
/***/ }),
|
|
46611
|
+
|
|
46429
46612
|
/***/ "./node_modules/@abaplint/core/build/src/objects/rename/rename_data_element.js":
|
|
46430
46613
|
/*!*************************************************************************************!*\
|
|
46431
46614
|
!*** ./node_modules/@abaplint/core/build/src/objects/rename/rename_data_element.js ***!
|
|
@@ -49687,7 +49870,7 @@ class Registry {
|
|
|
49687
49870
|
}
|
|
49688
49871
|
static abaplintVersion() {
|
|
49689
49872
|
// magic, see build script "version.sh"
|
|
49690
|
-
return "2.103.
|
|
49873
|
+
return "2.103.6";
|
|
49691
49874
|
}
|
|
49692
49875
|
getDDICReferences() {
|
|
49693
49876
|
return this.ddicReferences;
|
|
@@ -52902,9 +53085,8 @@ class CloudTypes {
|
|
|
52902
53085
|
this.reg = reg;
|
|
52903
53086
|
return this;
|
|
52904
53087
|
}
|
|
52905
|
-
|
|
52906
|
-
|
|
52907
|
-
|| obj instanceof Objects.ApplicationJobCatalogEntry
|
|
53088
|
+
static isCloud(obj) {
|
|
53089
|
+
return obj instanceof Objects.ApplicationJobCatalogEntry
|
|
52908
53090
|
|| obj instanceof Objects.ApplicationJobTemplate
|
|
52909
53091
|
|| obj instanceof Objects.AssignmentServiceToAuthorizationGroup
|
|
52910
53092
|
|| obj instanceof Objects.ATCCheckCategory
|
|
@@ -52918,11 +53100,14 @@ class CloudTypes {
|
|
|
52918
53100
|
|| obj instanceof Objects.BusinessCatalogAppAssignment
|
|
52919
53101
|
|| obj instanceof Objects.CDSMetadataExtension
|
|
52920
53102
|
|| obj instanceof Objects.Class
|
|
53103
|
+
|| obj instanceof Objects.ApplicationLogObject
|
|
52921
53104
|
|| obj instanceof Objects.CommunicationScenario
|
|
52922
53105
|
|| obj instanceof Objects.DataControl
|
|
52923
53106
|
|| obj instanceof Objects.DataDefinition
|
|
52924
53107
|
|| obj instanceof Objects.DataElement
|
|
52925
53108
|
|| obj instanceof Objects.Domain
|
|
53109
|
+
|| obj instanceof Objects.EventBinding
|
|
53110
|
+
|| obj instanceof Objects.EventConsumer
|
|
52926
53111
|
|| obj instanceof Objects.FunctionGroup
|
|
52927
53112
|
|| obj instanceof Objects.HttpService
|
|
52928
53113
|
|| obj instanceof Objects.IAMApp
|
|
@@ -52939,7 +53124,10 @@ class CloudTypes {
|
|
|
52939
53124
|
|| obj instanceof Objects.ServiceDefinition
|
|
52940
53125
|
|| obj instanceof Objects.Table
|
|
52941
53126
|
|| obj instanceof Objects.TableType
|
|
52942
|
-
|| obj instanceof Objects.Transformation
|
|
53127
|
+
|| obj instanceof Objects.Transformation;
|
|
53128
|
+
}
|
|
53129
|
+
run(obj) {
|
|
53130
|
+
if (this.reg.getConfig().getVersion() !== version_1.Version.Cloud || CloudTypes.isCloud(obj)) {
|
|
52943
53131
|
return [];
|
|
52944
53132
|
}
|
|
52945
53133
|
const position = new position_1.Position(1, 1);
|
|
@@ -80346,8 +80534,13 @@ class ReplaceTranspiler {
|
|
|
80346
80534
|
extra.push("of: " + new expressions_1.SourceTranspiler().transpile(o, traversal).getCode());
|
|
80347
80535
|
}
|
|
80348
80536
|
const length = node.findExpressionAfterToken("LENGTH");
|
|
80349
|
-
if (length
|
|
80350
|
-
|
|
80537
|
+
if (length) {
|
|
80538
|
+
if (length.get() instanceof abaplint.Expressions.Source) {
|
|
80539
|
+
extra.push("sectionLength: " + new expressions_1.SourceTranspiler().transpile(length, traversal).getCode());
|
|
80540
|
+
}
|
|
80541
|
+
else if (length.get() instanceof abaplint.Expressions.Target) {
|
|
80542
|
+
extra.push("replacementLength: " + new expressions_1.TargetTranspiler().transpile(length, traversal).getCode());
|
|
80543
|
+
}
|
|
80351
80544
|
}
|
|
80352
80545
|
const offset = node.findExpressionAfterToken("OFFSET");
|
|
80353
80546
|
if (offset && offset.get() instanceof abaplint.Expressions.Source) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abaplint/transpiler-cli",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.135",
|
|
4
4
|
"description": "Transpiler - Command Line Interface",
|
|
5
5
|
"funding": "https://github.com/sponsors/larshp",
|
|
6
6
|
"bin": {
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"author": "abaplint",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"devDependencies": {
|
|
29
|
-
"@abaplint/transpiler": "^2.7.
|
|
29
|
+
"@abaplint/transpiler": "^2.7.135",
|
|
30
30
|
"@types/glob": "^7.2.0",
|
|
31
31
|
"glob": "=7.2.0",
|
|
32
|
-
"@types/progress": "^2.0.
|
|
33
|
-
"@types/node": "^20.
|
|
34
|
-
"@abaplint/core": "^2.103.
|
|
32
|
+
"@types/progress": "^2.0.7",
|
|
33
|
+
"@types/node": "^20.9.0",
|
|
34
|
+
"@abaplint/core": "^2.103.6",
|
|
35
35
|
"progress": "^2.0.3",
|
|
36
36
|
"webpack": "^5.89.0",
|
|
37
37
|
"webpack-cli": "^5.1.4",
|