2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
use driver::session::Session;
|
2012-09-04 13:54:36 -05:00
|
|
|
use syntax::codemap;
|
|
|
|
use syntax::ast;
|
|
|
|
use syntax::ast_util::*;
|
|
|
|
use syntax::attr;
|
2012-01-26 17:20:29 -06:00
|
|
|
|
|
|
|
export maybe_inject_libcore_ref;
|
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
fn maybe_inject_libcore_ref(sess: Session,
|
2012-01-26 17:20:29 -06:00
|
|
|
crate: @ast::crate) -> @ast::crate {
|
2012-01-26 18:23:34 -06:00
|
|
|
if use_core(crate) {
|
2012-01-26 17:20:29 -06:00
|
|
|
inject_libcore_ref(sess, crate)
|
|
|
|
} else {
|
|
|
|
crate
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-26 18:23:34 -06:00
|
|
|
fn use_core(crate: @ast::crate) -> bool {
|
2012-07-14 00:57:48 -05:00
|
|
|
!attr::attrs_contains_name(crate.node.attrs, ~"no_core")
|
2012-01-26 18:23:34 -06:00
|
|
|
}
|
|
|
|
|
2012-10-15 16:56:42 -05:00
|
|
|
fn inject_libcore_ref(sess: Session,
|
2012-01-26 17:20:29 -06:00
|
|
|
crate: @ast::crate) -> @ast::crate {
|
|
|
|
|
2012-09-07 16:52:28 -05:00
|
|
|
fn spanned<T: Copy>(x: T) -> @ast::spanned<T> {
|
2012-08-01 19:30:05 -05:00
|
|
|
return @{node: x,
|
2012-04-13 03:46:56 -05:00
|
|
|
span: dummy_sp()};
|
2012-01-26 17:20:29 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
let n1 = sess.next_node_id();
|
|
|
|
let n2 = sess.next_node_id();
|
|
|
|
|
2012-07-18 18:18:02 -05:00
|
|
|
let vi1 = @{node: ast::view_item_use(sess.ident_of(~"core"), ~[], n1),
|
2012-06-29 18:26:56 -05:00
|
|
|
attrs: ~[],
|
2012-11-13 17:43:54 -06:00
|
|
|
vis: ast::private,
|
2012-05-08 16:01:38 -05:00
|
|
|
span: dummy_sp()};
|
2012-07-18 18:18:02 -05:00
|
|
|
let vp = spanned(ast::view_path_glob(
|
|
|
|
ident_to_path(dummy_sp(), sess.ident_of(~"core")),
|
|
|
|
n2));
|
2012-06-29 18:26:56 -05:00
|
|
|
let vi2 = @{node: ast::view_item_import(~[vp]),
|
|
|
|
attrs: ~[],
|
2012-11-13 17:43:54 -06:00
|
|
|
vis: ast::private,
|
2012-05-08 16:01:38 -05:00
|
|
|
span: dummy_sp()};
|
2012-01-26 17:20:29 -06:00
|
|
|
|
2012-06-29 18:26:56 -05:00
|
|
|
let vis = vec::append(~[vi1, vi2], crate.node.module.view_items);
|
2012-01-26 17:20:29 -06:00
|
|
|
|
2012-09-04 15:29:32 -05:00
|
|
|
return @{node: {module: { view_items: vis,.. crate.node.module },
|
|
|
|
.. crate.node},.. *crate }
|
2012-01-26 17:20:29 -06:00
|
|
|
}
|