isInsideClassLikeNode (:1486) — stack-top kind only.
(&self)
| 262 | } |
| 263 | /// isInsideClassLikeNode (:1486) — stack-top kind only. |
| 264 | fn inside_class_like(&self) -> bool { |
| 265 | self.stack |
| 266 | .last() |
| 267 | .map(|s| matches!(s.kind, "class" | "struct" | "interface" | "trait" | "enum" | "module")) |
| 268 | .unwrap_or(false) |
| 269 | } |
| 270 | |
| 271 | fn push_ref_at(&mut self, from_row: u32, name: &str, kind: &str, node: Node) { |
| 272 | let name_ref = self.arena.put(name); |
no outgoing calls
no test coverage detected