UNPKG

@abaplint/core

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