UNPKG

@abaplint/core

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