@chix/flow
Version:
45 lines • 1.7 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var events_1 = require("../events");
var util_1 = require("../util");
var node_1 = require("./node");
function $FlowError(Base) {
return (function (_super) {
__extends(FlowError$, _super);
function FlowError$() {
return _super !== null && _super.apply(this, arguments) || this;
}
FlowError$.prototype.error = function (node, error) {
var _error = error instanceof Error ? error : Error(error);
var errorObject = {
msg: error,
node: node.export(),
};
node.setStatus('error');
node.event(events_1.LinkEvents.ERROR, errorObject);
return _error;
};
return FlowError$;
}(Base));
}
exports.$FlowError = $FlowError;
(function ($FlowError) {
function create(Base) {
return util_1.mixin($FlowError, node_1.$Node.create)(Base);
}
$FlowError.create = create;
})($FlowError = exports.$FlowError || (exports.$FlowError = {}));
//# sourceMappingURL=error.js.map