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-12-23 16:41:37 -06:00
|
|
|
|
|
|
|
use core::vec;
|
2012-09-04 13:54:36 -05:00
|
|
|
use syntax::ast;
|
|
|
|
use syntax::ast_util::*;
|
|
|
|
use syntax::attr;
|
2012-12-23 16:41:37 -06:00
|
|
|
use syntax::codemap;
|
|
|
|
use syntax::fold;
|
2012-01-26 17:20:29 -06:00
|
|
|
|
|
|
|
export maybe_inject_libcore_ref;
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
const CORE_VERSION: &static/str = "0.6";
|
|
|
|
|
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-12-23 16:41:37 -06:00
|
|
|
fn spanned<T: Copy>(x: T) -> ast::spanned<T> {
|
|
|
|
return {node: x, span: dummy_sp()};
|
2012-01-26 17:20:29 -06:00
|
|
|
}
|
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
let precursor = @{
|
|
|
|
fold_crate: |crate, span, fld| {
|
|
|
|
let n1 = sess.next_node_id();
|
|
|
|
let vi1 = @{node: ast::view_item_use(sess.ident_of(~"core"),
|
|
|
|
~[],
|
|
|
|
n1),
|
|
|
|
attrs: ~[
|
|
|
|
spanned({
|
|
|
|
style: ast::attr_inner,
|
|
|
|
value: spanned(ast::meta_name_value(
|
|
|
|
~"vers",
|
|
|
|
spanned(ast::lit_str(
|
|
|
|
@CORE_VERSION.to_str()))
|
|
|
|
)),
|
|
|
|
is_sugared_doc: false
|
|
|
|
})
|
|
|
|
],
|
|
|
|
vis: ast::private,
|
|
|
|
span: dummy_sp()};
|
|
|
|
|
|
|
|
let vis = vec::append(~[vi1], crate.module.view_items);
|
|
|
|
let mut new_module = { view_items: vis, ..crate.module };
|
|
|
|
new_module = fld.fold_mod(new_module);
|
|
|
|
|
|
|
|
let new_crate = { module: new_module, ..crate };
|
|
|
|
(new_crate, span)
|
|
|
|
},
|
|
|
|
fold_mod: |module, fld| {
|
|
|
|
let n2 = sess.next_node_id();
|
|
|
|
|
|
|
|
let vp = @spanned(
|
|
|
|
ast::view_path_glob(ident_to_path(dummy_sp(),
|
|
|
|
sess.ident_of(~"core")),
|
|
|
|
n2));
|
|
|
|
let vi2 = @{node: ast::view_item_import(~[vp]),
|
|
|
|
attrs: ~[],
|
|
|
|
vis: ast::private,
|
|
|
|
span: dummy_sp()};
|
|
|
|
|
|
|
|
let vis = vec::append(~[vi2], module.view_items);
|
|
|
|
let new_module = { view_items: vis, ..module };
|
|
|
|
fold::noop_fold_mod(new_module, fld)
|
|
|
|
},
|
|
|
|
..*fold::default_ast_fold()
|
|
|
|
};
|
|
|
|
|
|
|
|
let fold = fold::make_fold(precursor);
|
|
|
|
@fold.fold_crate(*crate)
|
2012-01-26 17:20:29 -06:00
|
|
|
}
|