Skip to content

Commit 96d5f1e

Browse files
krunchingtonmockersf
authored andcommittedMar 27, 2025·
Fix relationship macro for multiple named members fields (#18530)
# Objective Fixes #18466 ## Solution Updated the macro generation pattern to place the comma in the correct place in the pattern. ## Testing - Tried named and unnamed fields in combination, and used rust expand macro tooling to see the generated code and verify its correctness (see screenshots in example below) --- ## Showcase Screenshot showing expanded macro with multiple named fields ![image](https://github.com/user-attachments/assets/7ecd324c-10ba-4b23-9b53-b94da03567d3) Screenshot showing expanded macro with single unnamed field ![image](https://github.com/user-attachments/assets/be72f061-5f07-4d19-b5f6-7ff6c35ec679) ## Migration Guide n/a
1 parent bf91501 commit 96d5f1e

File tree

2 files changed

+39
-2
lines changed

2 files changed

+39
-2
lines changed
 

‎crates/bevy_ecs/macros/src/component.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ fn derive_relationship(
746746
#[inline]
747747
fn from(entity: #bevy_ecs_path::entity::Entity) -> Self {
748748
Self {
749-
#(#members: core::default::Default::default(),),*
749+
#(#members: core::default::Default::default(),)*
750750
#relationship_member: entity
751751
}
752752
}
@@ -809,7 +809,7 @@ fn derive_relationship_target(
809809
#[inline]
810810
fn from_collection_risky(collection: Self::Collection) -> Self {
811811
Self {
812-
#(#members: core::default::Default::default(),),*
812+
#(#members: core::default::Default::default(),)*
813813
#relationship_member: collection
814814
}
815815
}

‎crates/bevy_ecs/src/relationship/mod.rs

+37
Original file line numberDiff line numberDiff line change
@@ -385,4 +385,41 @@ mod tests {
385385
assert!(!world.entity(b).contains::<Rel>());
386386
assert!(!world.entity(b).contains::<RelTarget>());
387387
}
388+
389+
#[test]
390+
fn relationship_with_multiple_non_target_fields_compiles() {
391+
#[derive(Component)]
392+
#[relationship(relationship_target=Target)]
393+
#[expect(dead_code, reason = "test struct")]
394+
struct Source {
395+
#[relationship]
396+
target: Entity,
397+
foo: u8,
398+
bar: u8,
399+
}
400+
401+
#[derive(Component)]
402+
#[relationship_target(relationship=Source)]
403+
struct Target(Vec<Entity>);
404+
405+
// No assert necessary, looking to make sure compilation works with the macros
406+
}
407+
#[test]
408+
fn relationship_target_with_multiple_non_target_fields_compiles() {
409+
#[derive(Component)]
410+
#[relationship(relationship_target=Target)]
411+
struct Source(Entity);
412+
413+
#[derive(Component)]
414+
#[relationship_target(relationship=Source)]
415+
#[expect(dead_code, reason = "test struct")]
416+
struct Target {
417+
#[relationship]
418+
target: Vec<Entity>,
419+
foo: u8,
420+
bar: u8,
421+
}
422+
423+
// No assert necessary, looking to make sure compilation works with the macros
424+
}
388425
}

0 commit comments

Comments
 (0)
Please sign in to comment.