Evaluate binding declarations

This commit is contained in:
greg 2018-02-26 18:18:42 -08:00
parent 0e3320e183
commit 1064d9993a
1 changed files with 4 additions and 0 deletions

View File

@ -104,6 +104,10 @@ impl<'a> State<'a> {
};
}
},
Binding { name, constant, expr } => {
let val = self.eval_expr(expr)?;
self.values.insert(name.clone(), ValueEntry::Binding { val });
},
_ => return Err(format!("Declaration evaluation not yet implemented"))
}
Ok(())