Kill unused code
This commit is contained in:
parent
192a6bf6e1
commit
c6509338d8
@ -21,12 +21,6 @@ impl EvaluatorState {
|
|||||||
fn get_var(&self, var: &str) -> Option<&Sexp> {
|
fn get_var(&self, var: &str) -> Option<&Sexp> {
|
||||||
self.vars.get(var)
|
self.vars.get(var)
|
||||||
}
|
}
|
||||||
fn push_env(&mut self) {
|
|
||||||
|
|
||||||
}
|
|
||||||
fn pop_env(&mut self) {
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct Rukka {
|
pub struct Rukka {
|
||||||
@ -166,7 +160,7 @@ impl EvaluatorState {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
fn apply(&mut self, function: Sexp, operands: Sexp) -> Result<Sexp, String> {
|
fn apply(&mut self, _function: Sexp, _operands: Sexp) -> Result<Sexp, String> {
|
||||||
Err(format!("Not implemented"))
|
Err(format!("Not implemented"))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user