UNPKG

@abaplint/core

Version:
14 lines 430 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.If = void 0; const Expressions = require("../../2_statements/expressions"); const cond_1 = require("../expressions/cond"); class If { runSyntax(node, input) { for (const s of node.findDirectExpressions(Expressions.Cond)) { cond_1.Cond.runSyntax(s, input); } } } exports.If = If; //# sourceMappingURL=if.js.map