UNPKG

@digifi/jexl

Version:

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

37 lines (23 loc) 1.92 kB
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck")); var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits")); var _possibleConstructorReturn2 = _interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn")); var _getPrototypeOf2 = _interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf")); function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = (0, _getPrototypeOf2.default)(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = (0, _getPrototypeOf2.default)(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return (0, _possibleConstructorReturn2.default)(this, result); }; } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } } var ExecutionError = require('./ExecutionError'); var MissedVariableError = /*#__PURE__*/function (_ExecutionError) { (0, _inherits2.default)(MissedVariableError, _ExecutionError); var _super = _createSuper(MissedVariableError); function MissedVariableError(variable) { var _this; (0, _classCallCheck2.default)(this, MissedVariableError); _this = _super.call(this, "Variable ".concat(variable, " is not defined.")); _this.variable = variable; _this.name = _this.constructor.name; return _this; } return MissedVariableError; }(ExecutionError); module.exports = MissedVariableError;