(&self, node: Node)
| 264 | // --- small helpers -------------------------------------------------------- |
| 265 | |
| 266 | fn text(&self, node: Node) -> &'t str { |
| 267 | &self.src[node.byte_range()] |
| 268 | } |
| 269 | |
| 270 | fn line_of(&self, node: Node) -> u32 { |
| 271 | node.start_position().row as u32 + 1 |
no outgoing calls
no test coverage detected