resolveBody ?? getChildByField(node, 'body') — the body-walk resolution.
(node: Node)
| 894 | |
| 895 | /// resolveBody ?? getChildByField(node, 'body') — the body-walk resolution. |
| 896 | fn body_of(node: Node) -> Option<Node> { |
| 897 | resolve_field_body(node).or_else(|| node.child_by_field_name("body")) |
| 898 | } |
| 899 | |
| 900 | fn opt_str(arena: &mut Arena, s: Option<&str>) -> StrRef { |
| 901 | match s { |
no test coverage detected