(&mut self, stmt: &ast::Node)
| 219 | } |
| 220 | |
| 221 | fn visit_call_expr(&mut self, stmt: &ast::Node) -> Result<()> { |
| 222 | // TODO: here to add callback |
| 223 | (self.callback.precall)(&mut self.store_mgr, &mut self.env_mgr, stmt); |
| 224 | Ok(()) |
| 225 | } |
| 226 | |
| 227 | /// get the value of the Right Hand Expression |
| 228 | fn get_rvalue(&mut self, stmt: &ast::Node) -> Result<Symbol<T>> { |