@abaplint/core
Version:
abaplint - Core API
15 lines • 765 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ComponentChain = void 0;
const combi_1 = require("../combi");
const _1 = require(".");
const table_body_1 = require("./table_body");
class ComponentChain extends combi_1.Expression {
getRunnable() {
const chain = (0, combi_1.seq)(_1.ComponentName, (0, combi_1.star)((0, combi_1.altPrio)((0, combi_1.seq)(_1.ArrowOrDash, (0, combi_1.altPrio)("*", _1.ComponentName)), _1.TableExpression)));
const ret = (0, combi_1.seq)(chain, (0, combi_1.optPrio)(table_body_1.TableBody), (0, combi_1.optPrio)(_1.FieldOffset), (0, combi_1.optPrio)(_1.FieldLength));
return ret;
}
}
exports.ComponentChain = ComponentChain;
//# sourceMappingURL=component_chain.js.map