(scope: Scope)
| 36 | } |
| 37 | |
| 38 | disconnectContextForScope(scope: Scope) { |
| 39 | const context = this.contextsByScope.get(scope) |
| 40 | if (context) { |
| 41 | this.connectedContexts.delete(context) |
| 42 | context.disconnect() |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | private fetchContextForScope(scope: Scope): Context { |
| 47 | let context = this.contextsByScope.get(scope) |
no test coverage detected