Add variable information to the plan
(&mut self, name: String, info: VariableInfo)
| 326 | |
| 327 | /// Add variable information to the plan |
| 328 | pub fn add_variable(&mut self, name: String, info: VariableInfo) { |
| 329 | self.variables.insert(name, info); |
| 330 | } |
| 331 | |
| 332 | /// Get variable information |
| 333 | pub fn get_variable(&self, name: &str) -> Option<&VariableInfo> { |
no test coverage detected