aboutsummaryrefslogtreecommitdiff
path: root/src/server/collector.odin
diff options
context:
space:
mode:
authorBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-08-12 12:00:42 -0400
committerBrad Lewis <22850972+BradLewis@users.noreply.github.com>2025-08-12 12:00:42 -0400
commit1ba549a5efd458c62439dc7b5d400b3f5f823b26 (patch)
treea025c042a42c0e3ae5bd6e1e875b769804847ccb /src/server/collector.odin
parent613c9e6d59dfcdc72dfb3fcc72e63f1ed277cbfc (diff)
Show poly struct information on types from external packages and resolve identifier poly types
Diffstat (limited to 'src/server/collector.odin')
-rw-r--r--src/server/collector.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/collector.odin b/src/server/collector.odin
index cc72509..4af9d7c 100644
--- a/src/server/collector.odin
+++ b/src/server/collector.odin
@@ -162,8 +162,8 @@ collect_struct_fields :: proc(
}
}
+ b.poly = cast(^ast.Field_List)clone_type(struct_type.poly_params, collection.allocator, &collection.unique_strings)
value := to_symbol_struct_value(b)
- value.poly = cast(^ast.Field_List)clone_type(struct_type.poly_params, collection.allocator, &collection.unique_strings)
return value
}