(node: SyntaxNode)
| 5 | import { getParserForFile } from "../../util/treeSitter.js"; |
| 6 | |
| 7 | function collapsedReplacement(node: SyntaxNode): string { |
| 8 | if (node.type === "statement_block") { |
| 9 | return "{ ... }"; |
| 10 | } |
| 11 | return "..."; |
| 12 | } |
| 13 | |
| 14 | function firstChild( |
| 15 | node: SyntaxNode, |
no outgoing calls
no test coverage detected