(&mut self, name: String, value: Option<RuntimeValue>)
| 124 | } |
| 125 | |
| 126 | fn add_variable(&mut self, name: String, value: Option<RuntimeValue>) { |
| 127 | self.variables.push((name, value)); |
| 128 | } |
| 129 | |
| 130 | fn update_variable(&mut self, name: String, value: Option<RuntimeValue>) { |
| 131 | for i in 0..self.variables.len() { |