(reference: string, context: ResolutionContext)
| 56 | } |
| 57 | |
| 58 | resolve(reference: string, context: ResolutionContext): any { |
| 59 | return this.resolveInternal(reference, context, false) |
| 60 | } |
| 61 | |
| 62 | async resolveAsync(reference: string, context: ResolutionContext): Promise<any> { |
| 63 | if (!this.navigatePathAsync) { |
no test coverage detected