Open Hsilgos opened 2 months ago
For Flutter, the nested struct of an internal struct is exposed.
package sdk.core @Internal struct OuterStruct { struct InnerStruct { a: Int = 1 } inner: InnerStruct = {} }
Leads to
export 'src/sdk/core/outer_struct.dart' show OuterStruct_InnerStruct;
Expected: inter struct not exposed
Current workaround: Add @Internal tag to nested struct.
Hi @Hsilgos,
As we discussed in #1601, I will try implementing it.
The fix has been implemented in: https://github.com/heremaps/gluecodium/pull/1606
For Flutter, the nested struct of an internal struct is exposed.
Leads to
Expected: inter struct not exposed
Current workaround: Add @Internal tag to nested struct.