(token: any, notFoundValue?: any, flags?: InternalInjectFlags | InjectOptions)
| 897 | ) {} |
| 898 | |
| 899 | get(token: any, notFoundValue?: any, flags?: InternalInjectFlags | InjectOptions): any { |
| 900 | return getOrCreateInjectable( |
| 901 | this._tNode, |
| 902 | this._lView, |
| 903 | token, |
| 904 | convertToBitFlags(flags), |
| 905 | notFoundValue, |
| 906 | ); |
| 907 | } |
| 908 | } |
| 909 | |
| 910 | /** Creates a `NodeInjector` for the current node. */ |
nothing calls this directly
no test coverage detected