Configuration for factory generation
| 15 | |
| 16 | /// Configuration for factory generation |
| 17 | pub struct FactoryConfig<'a> { |
| 18 | pub analyzed_imports: &'a AnalyzedImports, |
| 19 | pub import_chains: BTreeMap<String, Tokens<Go>>, |
| 20 | pub wasm_var_name: &'a GoIdentifier, |
| 21 | } |
| 22 | |
| 23 | /// Generator for factory and instance types |
| 24 | pub struct FactoryGenerator<'a> { |
nothing calls this directly
no outgoing calls
no test coverage detected