get mutable reference var stores in currrent path.
(&mut self)
| 542 | |
| 543 | /// get mutable reference var stores in currrent path. |
| 544 | fn get_current_storage_mut(&mut self) -> &mut HashMap<VarName, Symbol<T>> { |
| 545 | self.path_storage.get_mut(&self.path_id).unwrap() |
| 546 | } |
| 547 | |
| 548 | /// get the storage of a specific path. |
| 549 | fn get_storage_from_path(&self, path_id: usize) -> Option<&Storage<T>> { |
no outgoing calls
no test coverage detected