@abaplint/core
Version:
abaplint - Core API
18 lines • 644 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SQLSource = void 0;
const Expressions = require("../../2_statements/expressions");
const source_1 = require("./source");
class SQLSource {
static runSyntax(node, input) {
for (const s of node.findAllExpressions(Expressions.Source)) {
return source_1.Source.runSyntax(s, input);
}
for (const s of node.findAllExpressions(Expressions.SimpleSource3)) {
return source_1.Source.runSyntax(s, input);
}
return undefined;
}
}
exports.SQLSource = SQLSource;
//# sourceMappingURL=sql_source.js.map