( reference: string, sourcePath: string )
| 2613 | } |
| 2614 | |
| 2615 | private async resolveTaskReference( |
| 2616 | reference: string, |
| 2617 | sourcePath: string |
| 2618 | ): Promise<TaskInfo | null> { |
| 2619 | const path = await this.resolveTaskReferencePath(reference, sourcePath); |
| 2620 | return path ? await this.plugin.cacheManager.getTaskInfo(path) : null; |
| 2621 | } |
| 2622 | |
| 2623 | private async taskReferenceMatches( |
| 2624 | reference: string, |
no test coverage detected