Even more concise

This commit is contained in:
greg 2017-12-10 19:01:44 -08:00
parent 3386fcc505
commit 5e7aef1040
1 changed files with 7 additions and 11 deletions

View File

@ -82,17 +82,13 @@ impl EvaluatorState {
expr @ NumberAtom(_) => expr, expr @ NumberAtom(_) => expr,
True => True, True => True,
False => False, False => False,
Cons(box operator, box operands) => { Cons(box operator, box operands) => match operator {
match operator { SymbolAtom(ref sym) if match &sym[..] {
SymbolAtom(sym) => match &sym[..] { "quote" | "eq?" | "cons" | "car" | "cdr" | "atom?" | "define" | "lambda" | "if" | "cond" => true, _ => false
"quote" | "eq?" | "cons" | "car" | "cdr" | "atom?" | } => self.eval_special_form(sym, operands)?,
"define" | "lambda" | "if" | "cond" => self.eval_special_form(&sym[..], operands)?, _ => {
_ => { let evaled = self.eval(operator)?;
let evaled = self.eval(SymbolAtom(sym))?; self.apply(evaled, operands)?
self.apply(evaled, operands)?
}
},
_ => unimplemented!()
} }
}, },
Nil => Nil, Nil => Nil,