(&mut self, key: String, value: Value)
| 215 | } |
| 216 | |
| 217 | fn set_variable(&mut self, key: String, value: Value) { |
| 218 | self.variables.insert(key, value); |
| 219 | } |
| 220 | |
| 221 | fn get_variable(&self, key: &str) -> Option<&Value> { |
| 222 | self.variables.get(key) |
no test coverage detected