@abaplint/core
Version:
abaplint - Core API
16 lines • 719 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogPoint = void 0;
const combi_1 = require("../combi");
const expressions_1 = require("../expressions");
const version_1 = require("../../../version");
class LogPoint {
getMatcher() {
const subkey = (0, combi_1.seq)("SUBKEY", expressions_1.Source);
const fields = (0, combi_1.seq)("FIELDS", (0, combi_1.plus)(expressions_1.Source));
const ret = (0, combi_1.seq)("LOG-POINT ID", expressions_1.NamespaceSimpleName, (0, combi_1.opt)(subkey), (0, combi_1.opt)(fields));
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
}
}
exports.LogPoint = LogPoint;
//# sourceMappingURL=log_point.js.map