UNPKG

@abaplint/core

Version:
20 lines 731 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Receive = void 0; const Expressions = require("../../2_statements/expressions"); const target_1 = require("../expressions/target"); const source_1 = require("../expressions/source"); class Receive { runSyntax(node, input) { // todo, lots of work here, similar to call_function.ts // just recurse for (const s of node.findAllExpressions(Expressions.Source)) { source_1.Source.runSyntax(s, input); } for (const t of node.findAllExpressions(Expressions.Target)) { target_1.Target.runSyntax(t, input); } } } exports.Receive = Receive; //# sourceMappingURL=receive.js.map