Environment - Attempt at nesting support
This commit is contained in:
parent
71ddef17d8
commit
c71bdd8c87
1 changed files with 28 additions and 8 deletions
|
@ -7,10 +7,24 @@ use super::{InterpreterResult, Value};
|
||||||
/// The execution environment.
|
/// The execution environment.
|
||||||
#[derive(Debug, Default)]
|
#[derive(Debug, Default)]
|
||||||
pub struct Environment {
|
pub struct Environment {
|
||||||
|
enclosing: Option<Box<Environment>>,
|
||||||
values: HashMap<String, Value>,
|
values: HashMap<String, Value>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Environment {
|
impl Environment {
|
||||||
|
/// Create an environment enclosed in another.
|
||||||
|
pub fn create_child(parent: Self) -> Self {
|
||||||
|
Self {
|
||||||
|
enclosing: Some(Box::new(parent)),
|
||||||
|
values: HashMap::default(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Restore an environment's parent.
|
||||||
|
pub fn restore_parent(self) -> Self {
|
||||||
|
*self.enclosing.unwrap()
|
||||||
|
}
|
||||||
|
|
||||||
/// Define a new variable.
|
/// Define a new variable.
|
||||||
pub fn define(&mut self, name: String, value: Value) {
|
pub fn define(&mut self, name: String, value: Value) {
|
||||||
self.values.insert(name, value);
|
self.values.insert(name, value);
|
||||||
|
@ -19,10 +33,13 @@ impl Environment {
|
||||||
/// Get the value of a variable.
|
/// Get the value of a variable.
|
||||||
pub fn get(&self, name: &Token) -> InterpreterResult {
|
pub fn get(&self, name: &Token) -> InterpreterResult {
|
||||||
match self.values.get(&name.lexeme as &str) {
|
match self.values.get(&name.lexeme as &str) {
|
||||||
None => Err(InterpreterError::new(
|
None => match &self.enclosing {
|
||||||
name,
|
None => Err(InterpreterError::new(
|
||||||
&format!("undefined variable '{}'", name.lexeme),
|
name,
|
||||||
)),
|
&format!("undefined variable '{}'", name.lexeme),
|
||||||
|
)),
|
||||||
|
Some(parent) => parent.get(name),
|
||||||
|
},
|
||||||
Some(value) => Ok(value.clone()),
|
Some(value) => Ok(value.clone()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -33,10 +50,13 @@ impl Environment {
|
||||||
self.values.insert(name.lexeme.clone(), value);
|
self.values.insert(name.lexeme.clone(), value);
|
||||||
Ok(Value::Nil)
|
Ok(Value::Nil)
|
||||||
} else {
|
} else {
|
||||||
Err(InterpreterError::new(
|
match &mut self.enclosing {
|
||||||
name,
|
None => Err(InterpreterError::new(
|
||||||
&format!("undefined variable '{}'", name.lexeme),
|
name,
|
||||||
))
|
&format!("undefined variable '{}'", name.lexeme),
|
||||||
|
)),
|
||||||
|
Some(parent) => parent.assign(name, value),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue