(store, parentSub, onStateChange)
| 19536 | |
| 19537 | var Subscription = function () { |
| 19538 | function Subscription(store, parentSub, onStateChange) { |
| 19539 | _classCallCheck(this, Subscription); |
| 19540 | |
| 19541 | this.store = store; |
| 19542 | this.parentSub = parentSub; |
| 19543 | this.onStateChange = onStateChange; |
| 19544 | this.unsubscribe = null; |
| 19545 | this.listeners = nullListeners; |
| 19546 | } |
| 19547 | |
| 19548 | Subscription.prototype.addNestedSub = function addNestedSub(listener) { |
| 19549 | this.trySubscribe(); |
nothing calls this directly
no test coverage detected