(self, tokens: &mut Tokens<Go>)
| 162 | |
| 163 | impl<'a> FormatInto<Go> for &FactoryGenerator<'a> { |
| 164 | fn format_into(self, tokens: &mut Tokens<Go>) { |
| 165 | self.generate_factory(tokens); |
| 166 | tokens.push(); |
| 167 | self.generate_instance(tokens); |
| 168 | tokens.push(); |
| 169 | self.generate_write_string(tokens); |
| 170 | tokens.push(); |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | #[cfg(test)] |
nothing calls this directly
no test coverage detected