UNPKG

@abaplint/core

Version:
22 lines 813 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.While = void 0; const Expressions = require("../../2_statements/expressions"); const source_1 = require("../expressions/source"); const cond_1 = require("../expressions/cond"); const target_1 = require("../expressions/target"); class While { runSyntax(node, input) { for (const s of node.findDirectExpressions(Expressions.Cond)) { cond_1.Cond.runSyntax(s, input); } for (const s of node.findDirectExpressions(Expressions.Source)) { source_1.Source.runSyntax(s, input); } for (const s of node.findDirectExpressions(Expressions.Target)) { target_1.Target.runSyntax(s, input); } } } exports.While = While; //# sourceMappingURL=while.js.map