@abaplint/core
Version:
abaplint - Core API
15 lines • 495 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogPoint = void 0;
const Expressions = require("../../2_statements/expressions");
const source_1 = require("../expressions/source");
class LogPoint {
runSyntax(node, input) {
// just recurse
for (const s of node.findDirectExpressions(Expressions.Source)) {
source_1.Source.runSyntax(s, input);
}
}
}
exports.LogPoint = LogPoint;
//# sourceMappingURL=log_point.js.map