(context: ResolutionContext)
| 24 | languages: ['rust'], |
| 25 | |
| 26 | detect(context: ResolutionContext): boolean { |
| 27 | // Check for Cargo.toml (Rust project signature) |
| 28 | return context.fileExists('Cargo.toml'); |
| 29 | }, |
| 30 | |
| 31 | resolve(ref: UnresolvedRef, context: ResolutionContext): ResolvedRef | null { |
| 32 | // Pattern 1: Handler references |
nothing calls this directly
no test coverage detected