(&self)
| 193 | self.stack.last().map(|s| s.row).unwrap_or(0) |
| 194 | } |
| 195 | fn inside_class_like(&self) -> bool { |
| 196 | self.stack |
| 197 | .last() |
| 198 | .map(|s| matches!(s.kind, "class" | "struct" | "interface" | "trait" | "enum" | "module")) |
| 199 | .unwrap_or(false) |
| 200 | } |
| 201 | |
| 202 | fn push_ref_at(&mut self, from_row: u32, name: &str, kind_code: u8, node: Node) { |
| 203 | let name_ref = self.arena.put(name); |
no outgoing calls
no test coverage detected