Kill unneeded import

This commit is contained in:
greg 2018-05-12 12:37:49 -07:00
parent e5b6b41422
commit e2703121d8
1 changed files with 0 additions and 2 deletions

View File

@ -305,8 +305,6 @@ impl Expr {
impl<'a> State<'a> {
pub fn evaluate(&mut self, ast: ReducedAST, repl: bool) -> Vec<Result<String, String>> {
use ast_reducing::*;
let mut acc = vec![];
for statement in ast.0 {
match self.statement(statement) {