12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- "use strict";
- var __values = (this && this.__values) || function(o) {
- var s = typeof Symbol === "function" && Symbol.iterator, m = s && o[s], i = 0;
- if (m) return m.call(o);
- if (o && typeof o.length === "number") return {
- next: function () {
- if (o && i >= o.length) o = void 0;
- return { value: o && o[i++], done: !o };
- }
- };
- throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
- };
- var __importDefault = (this && this.__importDefault) || function (mod) {
- return (mod && mod.__esModule) ? mod : { "default": mod };
- };
- var _a;
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.ConfigMacrosConfiguration = void 0;
- var Configuration_js_1 = require("../Configuration.js");
- var Options_js_1 = require("../../../util/Options.js");
- var SymbolMap_js_1 = require("../SymbolMap.js");
- var ParseMethods_js_1 = __importDefault(require("../ParseMethods.js"));
- var Symbol_js_1 = require("../Symbol.js");
- var NewcommandMethods_js_1 = __importDefault(require("../newcommand/NewcommandMethods.js"));
- var NewcommandItems_js_1 = require("../newcommand/NewcommandItems.js");
- var MACROSMAP = 'configmacros-map';
- var ENVIRONMENTMAP = 'configmacros-env-map';
- function configmacrosInit(config) {
- new SymbolMap_js_1.CommandMap(MACROSMAP, {}, {});
- new SymbolMap_js_1.EnvironmentMap(ENVIRONMENTMAP, ParseMethods_js_1.default.environment, {}, {});
- config.append(Configuration_js_1.Configuration.local({
- handler: {
- macro: [MACROSMAP],
- environment: [ENVIRONMENTMAP]
- },
- priority: 3
- }));
- }
- function configmacrosConfig(_config, jax) {
- configMacros(jax);
- configEnvironments(jax);
- }
- function configMacros(jax) {
- var e_1, _a;
- var handler = jax.parseOptions.handlers.retrieve(MACROSMAP);
- var macros = jax.parseOptions.options.macros;
- try {
- for (var _b = __values(Object.keys(macros)), _c = _b.next(); !_c.done; _c = _b.next()) {
- var cs = _c.value;
- var def = (typeof macros[cs] === 'string' ? [macros[cs]] : macros[cs]);
- var macro = Array.isArray(def[2]) ?
- new Symbol_js_1.Macro(cs, NewcommandMethods_js_1.default.MacroWithTemplate, def.slice(0, 2).concat(def[2])) :
- new Symbol_js_1.Macro(cs, NewcommandMethods_js_1.default.Macro, def);
- handler.add(cs, macro);
- }
- }
- catch (e_1_1) { e_1 = { error: e_1_1 }; }
- finally {
- try {
- if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
- }
- finally { if (e_1) throw e_1.error; }
- }
- }
- function configEnvironments(jax) {
- var e_2, _a;
- var handler = jax.parseOptions.handlers.retrieve(ENVIRONMENTMAP);
- var environments = jax.parseOptions.options.environments;
- try {
- for (var _b = __values(Object.keys(environments)), _c = _b.next(); !_c.done; _c = _b.next()) {
- var env = _c.value;
- handler.add(env, new Symbol_js_1.Macro(env, NewcommandMethods_js_1.default.BeginEnv, [true].concat(environments[env])));
- }
- }
- catch (e_2_1) { e_2 = { error: e_2_1 }; }
- finally {
- try {
- if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
- }
- finally { if (e_2) throw e_2.error; }
- }
- }
- exports.ConfigMacrosConfiguration = Configuration_js_1.Configuration.create('configmacros', {
- init: configmacrosInit,
- config: configmacrosConfig,
- items: (_a = {},
- _a[NewcommandItems_js_1.BeginEnvItem.prototype.kind] = NewcommandItems_js_1.BeginEnvItem,
- _a),
- options: {
- macros: (0, Options_js_1.expandable)({}),
- environments: (0, Options_js_1.expandable)({})
- }
- });
- //# sourceMappingURL=ConfigMacrosConfiguration.js.map
|