(&self, node: Node)
| 178 | |
| 179 | impl<'t> Walker<'t> { |
| 180 | fn text(&self, node: Node) -> &'t str { |
| 181 | &self.src[node.byte_range()] |
| 182 | } |
| 183 | fn line_of(&self, node: Node) -> u32 { |
| 184 | node.start_position().row as u32 + 1 |
| 185 | } |
no outgoing calls
no test coverage detected