UNPKG

@sudoo/marked

Version:

JavaScript & TypeScript code runner in JavaScript, safe with marked territory, asynchronous

38 lines (37 loc) 1.91 kB
"use strict"; /** * @author WMXPY * @namespace Evaluate * @description Calculate */ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; Object.defineProperty(exports, "__esModule", { value: true }); exports.unaryExpressionEvaluator = exports.mountUnaryExpression = void 0; const error_code_1 = require("../declare/error-code"); const unary_1 = require("../operation/unary"); const error_1 = require("../util/error/error"); const mountUnaryExpression = (sandbox) => { sandbox.mount("UnaryExpression", exports.unaryExpressionEvaluator); }; exports.mountUnaryExpression = mountUnaryExpression; const unaryExpressionEvaluator = function (node, scope, trace) { return __awaiter(this, void 0, void 0, function* () { const nextTrace = trace.stack(node); const evalValue = () => __awaiter(this, void 0, void 0, function* () { return yield this.execute(node.argument, scope, nextTrace); }); const value = yield evalValue(); const operation = (0, unary_1.getUnaryOperation)(node.operator); if (operation === null) { throw (0, error_1.error)(error_code_1.ERROR_CODE.UNARY_NOT_SUPPORT, node.operator, node, trace); } return operation(value); }); }; exports.unaryExpressionEvaluator = unaryExpressionEvaluator;