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