add IteratorUtil to the prelude

This commit is contained in:
Daniel Micay 2013-06-11 23:54:05 -04:00
parent 38e05747b5
commit 585f5f7f79
115 changed files with 6 additions and 174 deletions

View file

@ -10,7 +10,6 @@
/* The compiler code necessary to support the bytes! extension. */
use core::iterator::IteratorUtil;
use ast;
use codemap::span;
use ext::base::*;

View file

@ -174,7 +174,6 @@ use opt_vec;
use core::uint;
use core::vec;
use core::iterator::IteratorUtil;
pub use self::ty::*;
mod ty;

View file

@ -16,7 +16,6 @@ use ext::base::ExtCtxt;
use ext::build::AstBuilder;
use ext::deriving::generic::*;
use core::iterator::IteratorUtil;
pub fn expand_deriving_iter_bytes(cx: @ExtCtxt,
span: span,

View file

@ -19,7 +19,6 @@ library.
*/
use core::prelude::*;
use core::iterator::IteratorUtil;
use ast::{enum_def, ident, item, Generics, meta_item, struct_def};
use ext::base::ExtCtxt;

View file

@ -27,7 +27,6 @@ use parse::token::{ident_to_str, intern};
use visit;
use visit::Visitor;
use core::iterator::IteratorUtil;
use core::vec;
pub fn expand_expr(extsbox: @mut SyntaxEnv,

View file

@ -23,7 +23,6 @@ use ext::quote::rt::*;
use opt_vec;
use opt_vec::OptVec;
use core::iterator::IteratorUtil;
use core::vec;
pub trait gen_send {

View file

@ -22,7 +22,6 @@ use parse::parser::Parser;
use parse::token::{Token, EOF, to_str, nonterminal, get_ident_interner, ident_to_str};
use parse::token;
use core::iterator::IteratorUtil;
use core::hashmap::HashMap;
use core::uint;
use core::vec;

View file

@ -19,7 +19,6 @@ use parse::token::{EOF, INTERPOLATED, IDENT, Token, nt_ident};
use parse::token::{ident_to_str};
use parse::lexer::TokenAndSpan;
use core::iterator::IteratorUtil;
use core::hashmap::HashMap;
use core::option;