Clear all data structures in this context.
(&mut self)
| 83 | |
| 84 | /// Clear all data structures in this context. |
| 85 | pub fn clear(&mut self) { |
| 86 | self.func.clear(); |
| 87 | self.cfg.clear(); |
| 88 | self.domtree.clear(); |
| 89 | self.loop_analysis.clear(); |
| 90 | self.compiled_code = None; |
| 91 | self.want_disasm = false; |
| 92 | } |
| 93 | |
| 94 | /// Returns the compilation result for this function, available after any `compile` function |
| 95 | /// has been called. |