| 4 | use crate::go::{imports::CONTEXT_CONTEXT, GoIdentifier, GoResult, GoType}; |
| 5 | |
| 6 | pub struct ExportConfig<'a> { |
| 7 | pub instance: &'a GoIdentifier, |
| 8 | pub world: &'a World, |
| 9 | pub resolve: &'a Resolve, |
| 10 | pub sizes: &'a SizeAlign, |
| 11 | } |
| 12 | |
| 13 | pub struct ExportGenerator<'a> { |
| 14 | config: ExportConfig<'a>, |
nothing calls this directly
no outgoing calls
no test coverage detected