(&mut self, section: wasm_encoder::RawSection<'a>)
| 74 | |
| 75 | impl<'a> ComponentContext<'a> { |
| 76 | pub(crate) fn push_raw_section(&mut self, section: wasm_encoder::RawSection<'a>) { |
| 77 | self.sections.push(RawSection::Raw(section)); |
| 78 | } |
| 79 | |
| 80 | pub(crate) fn push_module_section(&mut self, module: ModuleContext<'a>) { |
| 81 | self.sections.push(RawSection::Module(module)); |