(componentId: string, name: string, line: number, column: number)
| 134 | } |
| 135 | |
| 136 | private pushRef(componentId: string, name: string, line: number, column: number): void { |
| 137 | this.unresolvedReferences.push({ |
| 138 | fromNodeId: componentId, |
| 139 | referenceName: name, |
| 140 | referenceKind: 'references', |
| 141 | line, |
| 142 | column, |
| 143 | filePath: this.filePath, |
| 144 | language: 'razor', |
| 145 | }); |
| 146 | } |
| 147 | |
| 148 | private extractDirectives(componentId: string): void { |
| 149 | const lines = this.source.split('\n'); |
no outgoing calls
no test coverage detected