(&self, node: Node)
| 438 | } |
| 439 | |
| 440 | fn is_static(&self, node: Node) -> bool { |
| 441 | (0..node.child_count()) |
| 442 | .filter_map(|i| node.child(i)) |
| 443 | .any(|c| c.kind() == "static_modifier") |
| 444 | } |
| 445 | |
| 446 | /// extractPhpReturnType — `self`/`static` collapse to the `'self'` marker |
| 447 | /// (#608 chained-call fuel); primitives/unions → None. |
no outgoing calls
no test coverage detected