UNPKG

@digifi/jexl

Version:

Javascript Expression Language: Powerful context-based expression parser and evaluator

24 lines (23 loc) 1.69 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass")); var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck")); var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn")); var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf")); var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits")); function _callSuper(t, o, e) { return o = (0, _getPrototypeOf2.default)(o), (0, _possibleConstructorReturn2.default)(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], (0, _getPrototypeOf2.default)(t).constructor) : o.apply(t, e)); } function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); } var ExecutionError = require('./ExecutionError'); var MissedVariableError = /*#__PURE__*/function (_ExecutionError) { function MissedVariableError(variable) { var _this; (0, _classCallCheck2.default)(this, MissedVariableError); _this = _callSuper(this, MissedVariableError, ["Variable ".concat(variable, " is not defined.")]); _this.variable = variable; _this.name = _this.constructor.name; return _this; } (0, _inherits2.default)(MissedVariableError, _ExecutionError); return (0, _createClass2.default)(MissedVariableError); }(ExecutionError); module.exports = MissedVariableError;