( reference: string, sourcePath: string, targetPath: string )
| 2621 | } |
| 2622 | |
| 2623 | private async taskReferenceMatches( |
| 2624 | reference: string, |
| 2625 | sourcePath: string, |
| 2626 | targetPath: string |
| 2627 | ): Promise<boolean> { |
| 2628 | const path = await this.resolveTaskReferencePath(reference, sourcePath); |
| 2629 | return path === normalizePath(targetPath); |
| 2630 | } |
| 2631 | |
| 2632 | private async resolveTaskReferencePath( |
| 2633 | reference: string, |
no test coverage detected