(reference: string, context: ResolutionContext)
| 60 | } |
| 61 | |
| 62 | async resolveAsync(reference: string, context: ResolutionContext): Promise<any> { |
| 63 | if (!this.navigatePathAsync) { |
| 64 | return this.resolve(reference, context) |
| 65 | } |
| 66 | return this.resolveInternal(reference, context, true) |
| 67 | } |
| 68 | |
| 69 | private async resolveInternal( |
| 70 | reference: string, |
nothing calls this directly
no test coverage detected