rename std::vec_ng -> std::vec

Closes #12771
This commit is contained in:
Daniel Micay 2014-03-20 03:35:51 -04:00
parent 7aded2adb6
commit 14f656d1a7
174 changed files with 290 additions and 287 deletions

View file

@ -14,7 +14,7 @@ use ext::base::ExtCtxt;
use ext::build::AstBuilder;
use ext::deriving::generic::*;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_clone(cx: &mut ExtCtxt,
span: Span,

View file

@ -14,7 +14,7 @@ use ext::base::ExtCtxt;
use ext::build::AstBuilder;
use ext::deriving::generic::*;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_eq(cx: &mut ExtCtxt,
span: Span,

View file

@ -15,7 +15,7 @@ use ext::base::ExtCtxt;
use ext::build::AstBuilder;
use ext::deriving::generic::*;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_ord(cx: &mut ExtCtxt,
span: Span,

View file

@ -14,7 +14,7 @@ use ext::base::ExtCtxt;
use ext::build::AstBuilder;
use ext::deriving::generic::*;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_totaleq(cx: &mut ExtCtxt,
span: Span,

View file

@ -16,7 +16,7 @@ use ext::build::AstBuilder;
use ext::deriving::generic::*;
use std::cmp::{Ordering, Equal, Less, Greater};
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_totalord(cx: &mut ExtCtxt,
span: Span,

View file

@ -21,7 +21,7 @@ use ext::deriving::generic::*;
use parse::token::InternedString;
use parse::token;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_decodable(cx: &mut ExtCtxt,
span: Span,

View file

@ -14,7 +14,7 @@ use ext::base::ExtCtxt;
use ext::build::AstBuilder;
use ext::deriving::generic::*;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_default(cx: &mut ExtCtxt,
span: Span,

View file

@ -89,7 +89,7 @@ use ext::build::AstBuilder;
use ext::deriving::generic::*;
use parse::token;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_encodable(cx: &mut ExtCtxt,
span: Span,

View file

@ -187,8 +187,8 @@ use codemap::Span;
use opt_vec;
use parse::token::InternedString;
use std::vec_ng::Vec;
use std::vec_ng;
use std::vec::Vec;
use std::vec;
pub use self::ty::*;
mod ty;
@ -407,7 +407,7 @@ impl<'a> TraitDef<'a> {
cx.item(
self.span,
ident,
vec_ng::append(vec!(attr), self.attributes.as_slice()),
vec::append(vec!(attr), self.attributes.as_slice()),
ast::ItemImpl(trait_generics, opt_trait_ref,
self_type, methods.map(|x| *x)))
}

View file

@ -14,7 +14,7 @@ use ext::base::ExtCtxt;
use ext::build::AstBuilder;
use ext::deriving::generic::*;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_hash(cx: &mut ExtCtxt,
span: Span,

View file

@ -16,7 +16,7 @@ use ext::build::AstBuilder;
use ext::deriving::generic::*;
use parse::token::InternedString;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_from_primitive(cx: &mut ExtCtxt,
span: Span,

View file

@ -15,7 +15,7 @@ use ext::base::ExtCtxt;
use ext::build::{AstBuilder};
use ext::deriving::generic::*;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_rand(cx: &mut ExtCtxt,
span: Span,

View file

@ -19,7 +19,7 @@ use ext::deriving::generic::*;
use parse::token;
use collections::HashMap;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_show(cx: &mut ExtCtxt,
span: Span,

View file

@ -20,7 +20,7 @@ use ext::build::AstBuilder;
use codemap::{Span,respan};
use opt_vec;
use std::vec_ng::Vec;
use std::vec::Vec;
/// The types of pointers
pub enum PtrTy<'a> {

View file

@ -14,7 +14,7 @@ use ext::base::ExtCtxt;
use ext::build::AstBuilder;
use ext::deriving::generic::*;
use std::vec_ng::Vec;
use std::vec::Vec;
pub fn expand_deriving_zero(cx: &mut ExtCtxt,
span: Span,