(&mut self, parallel: bool)
| 2114 | /// By default parallel compilation is enabled. |
| 2115 | #[cfg(feature = "parallel-compilation")] |
| 2116 | pub fn parallel_compilation(&mut self, parallel: bool) -> &mut Self { |
| 2117 | self.parallel_compilation = parallel; |
| 2118 | self |
| 2119 | } |
| 2120 | |
| 2121 | /// Configures whether compiled artifacts will contain information to map |
| 2122 | /// native program addresses back to the original wasm module. |
no outgoing calls
no test coverage detected