Kill comments

This commit is contained in:
greg 2018-05-14 22:56:26 -07:00
parent 7ab385d398
commit 8378170fbd
1 changed files with 0 additions and 14 deletions

View File

@ -284,20 +284,6 @@ impl<'a> State<'a> {
None => return Err(format!("Couldn't find value {}", name)),
}
})
/*
None => match self.values.lookup(&name) {
None => return Err(format!("Value {} not found", *name)),
Some(lookup) => match lookup {
Binding { val, .. } => Ok(
if let Expr::Func(Func::UserDefined { name: None, params, body }) = val {
Expr::Func(Func::UserDefined { name: Some(name.clone()), params: params.clone(), body: body.clone() }) //TODO here is unnecessary cloning
} else {
val.clone()
})
}
}
*/
}
}