|
|
@@ -20,8 +20,7 @@
|
|
|
//! kind is always `variable`, no signature, and EVERY direct `identifier`
|
|
|
//! child mints a node (`const MAX: u32 = OTHER;` → two nodes, `MAX` + the
|
|
|
//! phantom `OTHER`). Top-level initializer values are never body-walked.
|
|
|
-//! - Unit structs (`struct Unit;`, no body field) mint NO node; `mod_item`
|
|
|
-//! mints no module node and adds no QN prefix.
|
|
|
+//! - `mod_item` mints no module node and adds no QN prefix.
|
|
|
//! - Chained-call re-encode is scoped_identifier-gated (`Foo::new().bar()` →
|
|
|
//! `Foo::new().bar`); a call through a field of the enclosing type keeps
|
|
|
//! the owner-field shape (`self.inner.run()` → `self.inner.run`, #1585);
|
|
|
@@ -590,10 +589,12 @@ impl<'t> Walker<'t> {
|
|
|
self.stack.pop();
|
|
|
}
|
|
|
|
|
|
- /// Extract a Rust struct or union with a body; unit structs remain skipped.
|
|
|
+ /// Extract a Rust struct or union — the body field is OPTIONAL. A unit
|
|
|
+ /// struct (`struct U;`) has no body and is still a complete definition,
|
|
|
+ /// so it mints a node with no members; tuple structs' ordered_field_declaration_list
|
|
|
+ /// is a body. Mirrors the TS reference's `allowBodilessStruct`.
|
|
|
fn extract_aggregate(&mut self, node: Node<'t>, kind: &'static str) {
|
|
|
stack_guard!();
|
|
|
- let Some(body) = node.child_by_field_name("body") else { return };
|
|
|
let name = self.extract_name(node);
|
|
|
let extra = Extra {
|
|
|
docstring: preceding_docstring(node, self.src),
|
|
|
@@ -603,6 +604,10 @@ impl<'t> Walker<'t> {
|
|
|
let Some(row) = self.create_node(kind, &name, node, extra) else { return };
|
|
|
self.extract_inheritance(node, row);
|
|
|
|
|
|
+ // Unit structs have no body to walk — the node itself is the whole
|
|
|
+ // definition.
|
|
|
+ let Some(body) = node.child_by_field_name("body") else { return };
|
|
|
+
|
|
|
self.stack.push(Scope { row, kind, name });
|
|
|
for i in 0..body.named_child_count() {
|
|
|
if let Some(c) = body.named_child(i) {
|