@abaplint/core
Version:
abaplint - Core API
15 lines • 517 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ElseIf = void 0;
const _combi_1 = require("./_combi");
const Statements = require("../../2_statements/statements");
const body_1 = require("./body");
class ElseIf {
getMatcher() {
const body = (0, _combi_1.opt)((0, _combi_1.sub)(body_1.Body));
const elseif = (0, _combi_1.seq)((0, _combi_1.sta)(Statements.ElseIf), body);
return elseif;
}
}
exports.ElseIf = ElseIf;
//# sourceMappingURL=elseif.js.map