initial commit - far from runnable
This commit is contained in:
commit
db057ce342
8614 changed files with 1032171 additions and 0 deletions
18
node_modules/rxjs/dist/esm5/internal/testing/SubscriptionLoggable.js
generated
vendored
Normal file
18
node_modules/rxjs/dist/esm5/internal/testing/SubscriptionLoggable.js
generated
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { SubscriptionLog } from './SubscriptionLog';
|
||||
var SubscriptionLoggable = (function () {
|
||||
function SubscriptionLoggable() {
|
||||
this.subscriptions = [];
|
||||
}
|
||||
SubscriptionLoggable.prototype.logSubscribedFrame = function () {
|
||||
this.subscriptions.push(new SubscriptionLog(this.scheduler.now()));
|
||||
return this.subscriptions.length - 1;
|
||||
};
|
||||
SubscriptionLoggable.prototype.logUnsubscribedFrame = function (index) {
|
||||
var subscriptionLogs = this.subscriptions;
|
||||
var oldSubscriptionLog = subscriptionLogs[index];
|
||||
subscriptionLogs[index] = new SubscriptionLog(oldSubscriptionLog.subscribedFrame, this.scheduler.now());
|
||||
};
|
||||
return SubscriptionLoggable;
|
||||
}());
|
||||
export { SubscriptionLoggable };
|
||||
//# sourceMappingURL=SubscriptionLoggable.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue