(name: string, text: string)
| 36 | } |
| 37 | |
| 38 | export function createMockCapture(name: string, text: string): MockCapture { |
| 39 | return { |
| 40 | name, |
| 41 | node: { text }, |
| 42 | } |
| 43 | } |
| 44 | |
| 45 | export function createMockTreeSitterCaptures( |
| 46 | items: Array<{ name: string; text: string }>, |
no outgoing calls
no test coverage detected