| 119 | } |
| 120 | |
| 121 | export interface BuildFuncInfo { |
| 122 | functionName: string; // The actual builder function name |
| 123 | modulePath: string; // Module path from import (if imported) |
| 124 | type: 'partial' | 'lambda' | 'closure' | 'direct'; // How the function is referenced |
| 125 | } |
| 126 | |
| 127 | export interface NodeParseContext { |
| 128 | nodes: string[]; |
nothing calls this directly
no outgoing calls
no test coverage detected