(expr: unknown, name: string)
| 21 | |
| 22 | // Helper to check if a Func has the expected structure |
| 23 | function isFuncWithName(expr: unknown, name: string): expr is Func { |
| 24 | return expr instanceof Func && expr.name === name |
| 25 | } |
| 26 | |
| 27 | describe(`buildCursor`, () => { |
| 28 | describe(`edge cases`, () => { |