hyperformula-dc
Version:
HyperFormula is a JavaScript engine for efficient processing of spreadsheet-like data and formulas
36 lines (29 loc) • 1.35 kB
JavaScript
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
/**
* @license
* Copyright (c) 2021 Handsoncode. All rights reserved.
*/
export var DetailedCellError = /*#__PURE__*/function () {
function DetailedCellError(error, value, address) {
_classCallCheck(this, DetailedCellError);
var _a;
this.value = value;
this.address = address;
this.type = error.type;
this.message = (_a = error.message) !== null && _a !== void 0 ? _a : '';
}
_createClass(DetailedCellError, [{
key: "toString",
value: function toString() {
return this.value;
}
}, {
key: "valueOf",
value: function valueOf() {
return this.value;
}
}]);
return DetailedCellError;
}();