|
"use strict"; |
|
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 (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; |
|
return extendStatics(d, b); |
|
}; |
|
return function (d, b) { |
|
if (typeof b !== "function" && b !== null) |
|
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); |
|
extendStatics(d, b); |
|
function __() { this.constructor = d; } |
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); |
|
}; |
|
})(); |
|
Object.defineProperty(exports, "__esModule", { value: true }); |
|
exports.BehaviorSubject = void 0; |
|
var Subject_1 = require("./Subject"); |
|
var BehaviorSubject = (function (_super) { |
|
__extends(BehaviorSubject, _super); |
|
function BehaviorSubject(_value) { |
|
var _this = _super.call(this) || this; |
|
_this._value = _value; |
|
return _this; |
|
} |
|
Object.defineProperty(BehaviorSubject.prototype, "value", { |
|
get: function () { |
|
return this.getValue(); |
|
}, |
|
enumerable: false, |
|
configurable: true |
|
}); |
|
BehaviorSubject.prototype._subscribe = function (subscriber) { |
|
var subscription = _super.prototype._subscribe.call(this, subscriber); |
|
!subscription.closed && subscriber.next(this._value); |
|
return subscription; |
|
}; |
|
BehaviorSubject.prototype.getValue = function () { |
|
var _a = this, hasError = _a.hasError, thrownError = _a.thrownError, _value = _a._value; |
|
if (hasError) { |
|
throw thrownError; |
|
} |
|
this._throwIfClosed(); |
|
return _value; |
|
}; |
|
BehaviorSubject.prototype.next = function (value) { |
|
_super.prototype.next.call(this, (this._value = value)); |
|
}; |
|
return BehaviorSubject; |
|
}(Subject_1.Subject)); |
|
exports.BehaviorSubject = BehaviorSubject; |
|
|