Gets a function target viewpoint on this builder. This locks the data for mutation until the returned value dies.
(&self)
| 89 | /// Gets a function target viewpoint on this builder. This locks the data for mutation |
| 90 | /// until the returned value dies. |
| 91 | pub fn get_target(&self) -> FunctionTarget<'_> { |
| 92 | FunctionTarget::new(self.fun_env, &self.data) |
| 93 | } |
| 94 | |
| 95 | /// Add a return parameter. |
| 96 | pub fn add_return(&mut self, ty: Type) -> usize { |
no outgoing calls