(&self, node: Node)
| 438 | |
| 439 | impl<'t> Walker<'t> { |
| 440 | fn text(&self, node: Node) -> &'t str { |
| 441 | &self.src[node.byte_range()] |
| 442 | } |
| 443 | fn line_of(&self, node: Node) -> u32 { |
| 444 | node.start_position().row as u32 + 1 |
| 445 | } |
no outgoing calls
no test coverage detected