* Extract framework-specific nodes and references from a file. * * Returns route nodes, middleware nodes, etc., plus unresolved references * that link those nodes to handlers (view classes, controller methods, * included modules). Unresolved references flow into the normal resolution
(filePath: string, content: string)
| 187 | * pipeline; the framework's own `resolve()` is one of the strategies tried. |
| 188 | */ |
| 189 | extract?(filePath: string, content: string): FrameworkExtractionResult; |
| 190 | /** |
| 191 | * Cross-file finalization pass, called once after all per-file extraction |
| 192 | * completes (and again on every incremental sync). Used by frameworks where |
no outgoing calls
no test coverage detected