(&self, node: Node)
| 251 | |
| 252 | impl<'t> Walker<'t> { |
| 253 | fn text(&self, node: Node) -> &'t str { |
| 254 | &self.src[node.byte_range()] |
| 255 | } |
| 256 | fn line_of(&self, node: Node) -> u32 { |
| 257 | node.start_position().row as u32 + 1 |
| 258 | } |
no outgoing calls
no test coverage detected