(&self, node: Node)
| 141 | |
| 142 | impl<'t> Walker<'t> { |
| 143 | fn text(&self, node: Node) -> &'t str { |
| 144 | &self.src[node.byte_range()] |
| 145 | } |
| 146 | fn line_of(&self, node: Node) -> u32 { |
| 147 | node.start_position().row as u32 + 1 |
| 148 | } |
no outgoing calls
no test coverage detected