Remove unused imports throughout

This commit is contained in:
Alex Crichton 2013-03-22 22:26:32 -04:00
parent 3d588c5286
commit fa7772893a
12 changed files with 5 additions and 22 deletions

View file

@ -19,11 +19,8 @@ use parse::parser::Parser;
use parse::token::{Token, EOF, to_str, nonterminal};
use parse::token;
use core::option::{Option, Some, None};
use core::str;
use core::uint;
use core::vec;
use std::oldmap::HashMap;
use core::hashmap::linear::LinearMap;
use core::prelude::*;
/* This is an Earley-like parser, without support for in-grammar nonterminals,
only by calling out to the main rust parser for named nonterminals (which it