Clear local variables while preserving session state
(&mut self)
| 197 | |
| 198 | /// Clear local variables while preserving session state |
| 199 | pub fn clear_locals(&mut self) { |
| 200 | self.variables.clear(); |
| 201 | self.variable_types.clear(); |
| 202 | } |
| 203 | |
| 204 | /// Set the current graph for execution |
| 205 | pub fn set_current_graph(&mut self, graph: std::sync::Arc<crate::storage::GraphCache>) { |
no test coverage detected