hyperformula
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
20 lines (15 loc) • 605 B
JavaScript
;
exports.__esModule = true;
exports.InterpreterState = void 0;
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
/**
* @license
* Copyright (c) 2021 Handsoncode. All rights reserved.
*/
var InterpreterState = function InterpreterState(formulaAddress, arraysFlag, formulaVertex) {
_classCallCheck(this, InterpreterState);
this.formulaAddress = formulaAddress;
this.arraysFlag = arraysFlag;
this.formulaVertex = formulaVertex;
};
exports.InterpreterState = InterpreterState;