(&mut self, program: String)
| 137 | } |
| 138 | |
| 139 | fn run(&mut self, program: String) -> Result<()> { |
| 140 | self.clear(); |
| 141 | self.compile(&mut program.as_bytes()) |
| 142 | } |
| 143 | |
| 144 | /// Drops any deferred actions from the most recent async upcall. |
| 145 | fn clear_actions(&mut self) { |
no test coverage detected