(&self, node: Node)
| 199 | |
| 200 | impl<'t> Walker<'t> { |
| 201 | fn text(&self, node: Node) -> &'t str { |
| 202 | &self.src[node.byte_range()] |
| 203 | } |
| 204 | fn line_of(&self, node: Node) -> u32 { |
| 205 | node.start_position().row as u32 + 1 |
| 206 | } |
no outgoing calls
no test coverage detected