Some fixes for the new evaluator

This commit is contained in:
Jonathan Turner
2019-05-28 19:19:16 +12:00
parent d5255f6dbf
commit f44936ea5a
3 changed files with 454 additions and 398 deletions

View File

@ -17,6 +17,7 @@ Command: ParsedCommand = {
Leaf: Expression = {
<String> => Expression::Leaf(Leaf::String(<>)),
<Num> => Expression::Leaf(Leaf::Int(<>)),
<Size> => Expression::Leaf(Leaf::Int(<>)),
<Variable> => Expression::VariableReference(<>),
}

File diff suppressed because it is too large Load Diff