@abaplint/core
Version:
abaplint - Core API
14 lines • 563 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Collect = void 0;
const combi_1 = require("../combi");
const expressions_1 = require("../expressions");
class Collect {
getMatcher() {
const into = (0, combi_1.seq)("INTO", expressions_1.Target);
const assigning = (0, combi_1.seq)("ASSIGNING", expressions_1.FSTarget);
return (0, combi_1.seq)("COLLECT", expressions_1.Source, (0, combi_1.opt)(into), (0, combi_1.opt)(assigning));
}
}
exports.Collect = Collect;
//# sourceMappingURL=collect.js.map