UNPKG

@abaplint/core

Version:
22 lines 853 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CallBadi = void 0; const Expressions = require("../../2_statements/expressions"); const source_1 = require("../expressions/source"); const target_1 = require("../expressions/target"); const dynamic_1 = require("../expressions/dynamic"); class CallBadi { runSyntax(node, input) { for (const s of node.findAllExpressions(Expressions.Source)) { new source_1.Source().runSyntax(s, input); } for (const t of node.findAllExpressions(Expressions.Target)) { new target_1.Target().runSyntax(t, input); } for (const d of node.findAllExpressions(Expressions.Dynamic)) { new dynamic_1.Dynamic().runSyntax(d, input); } } } exports.CallBadi = CallBadi; //# sourceMappingURL=call_badi.js.map