@abaplint/core
Version:
abaplint - Core API
16 lines • 708 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.SetLocale = void 0;
const combi_1 = require("../combi");
const expressions_1 = require("../expressions");
const version_1 = require("../../../version");
class SetLocale {
getMatcher() {
const country = (0, combi_1.seq)("COUNTRY", expressions_1.Source);
const modifier = (0, combi_1.seq)("MODIFIER", expressions_1.Source);
const ret = (0, combi_1.seq)("SET LOCALE LANGUAGE", expressions_1.Source, (0, combi_1.opt)(country), (0, combi_1.opt)(modifier));
return (0, combi_1.verNot)(version_1.Version.Cloud, ret);
}
}
exports.SetLocale = SetLocale;
//# sourceMappingURL=set_locale.js.map