()
| 21 | } |
| 22 | |
| 23 | getChildContext() { |
| 24 | return { |
| 25 | registerInjector: (args) => this.registerInjector(args), |
| 26 | |
| 27 | removeInjector: (args) => this.removeInjector(args), |
| 28 | |
| 29 | updateInjector: (args) => this.updateInjector(args), |
| 30 | |
| 31 | registerInjectable: (args) => this.registerInjectable(args), |
| 32 | |
| 33 | removeInjectable: (args) => this.removeInjectable(args) |
| 34 | }; |
| 35 | } |
| 36 | |
| 37 | getRegistration(args) { |
| 38 | const { injectionId } = args; |
nothing calls this directly
no test coverage detected