@abaplint/core
Version:
abaplint - Core API
18 lines • 651 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.With = void 0;
const Expressions = require("../../2_statements/expressions");
const select_1 = require("../expressions/select");
const select_loop_1 = require("../expressions/select_loop");
class With {
runSyntax(node, input) {
for (const s of node.findAllExpressions(Expressions.Select)) {
select_1.Select.runSyntax(s, input);
}
for (const s of node.findAllExpressions(Expressions.SelectLoop)) {
select_loop_1.SelectLoop.runSyntax(s, input);
}
}
}
exports.With = With;
//# sourceMappingURL=with.js.map