rust/src/libsyntax_ext/standard_library_imports.rs

147 lines
5.0 KiB
Rust
Raw Normal View History

use syntax::{ast, attr};
use syntax::edition::Edition;
2019-08-25 15:03:24 -05:00
use syntax::ext::hygiene::AstPass;
use syntax::ext::base::Resolver;
use syntax::ptr::P;
2019-08-25 15:03:24 -05:00
use syntax::source_map::respan;
use syntax::symbol::{Ident, Symbol, kw, sym};
use syntax_pos::DUMMY_SP;
2015-06-30 22:05:17 -05:00
pub fn inject(
2019-08-25 15:03:24 -05:00
mut krate: ast::Crate,
resolver: &mut dyn Resolver,
alt_std_name: Option<Symbol>,
edition: Edition,
) -> (ast::Crate, Option<Symbol>) {
let rust_2018 = edition >= Edition::Edition2018;
// the first name in this list is the crate name of the crate with the prelude
2019-08-25 15:03:24 -05:00
let names: &[Symbol] = if attr::contains_name(&krate.attrs, sym::no_core) {
return (krate, None);
} else if attr::contains_name(&krate.attrs, sym::no_std) {
if attr::contains_name(&krate.attrs, sym::compiler_builtins) {
2019-08-25 15:03:24 -05:00
&[sym::core]
} else {
2019-08-25 15:03:24 -05:00
&[sym::core, sym::compiler_builtins]
}
} else {
2019-08-25 15:03:24 -05:00
&[sym::std]
};
2019-08-25 15:03:24 -05:00
let span = resolver.span_for_ast_pass(
DUMMY_SP,
AstPass::StdImports,
&[sym::prelude_import],
None,
);
// .rev() to preserve ordering above in combination with insert(0, ...)
2019-08-25 15:03:24 -05:00
for &orig_name_sym in names.iter().rev() {
2019-05-16 19:27:17 -05:00
let (rename, orig_name) = if rust_2018 {
2019-08-25 15:03:24 -05:00
(Ident::new(kw::Underscore, span), Some(orig_name_sym))
} else {
2019-08-25 15:03:24 -05:00
(Ident::with_dummy_span(orig_name_sym), None)
};
krate.module.items.insert(0, P(ast::Item {
attrs: vec![attr::mk_attr_outer(
2019-08-25 15:03:24 -05:00
attr::mk_word_item(ast::Ident::new(sym::macro_use, span))
)],
2019-08-25 15:03:24 -05:00
vis: respan(span, ast::VisibilityKind::Inherited),
node: ast::ItemKind::ExternCrate(alt_std_name.or(orig_name)),
2019-05-16 19:44:51 -05:00
ident: rename,
id: ast::DUMMY_NODE_ID,
2019-08-25 15:03:24 -05:00
span,
tokens: None,
}));
}
// the crates have been injected, the assumption is that the first one is the one with
// the prelude.
let name = names[0];
2019-08-25 15:03:24 -05:00
let segments = if rust_2018 {
[name, sym::prelude, sym::v1].iter()
.map(|symbol| ast::PathSegment::from_ident(ast::Ident::new(*symbol, span)))
.collect()
} else {
[kw::PathRoot, name, sym::prelude, sym::v1].iter()
.map(|symbol| ast::PathSegment::from_ident(ast::Ident::with_dummy_span(*symbol)))
.collect()
};
2019-08-25 15:03:24 -05:00
let use_item = P(ast::Item {
attrs: vec![attr::mk_attr_outer(
attr::mk_word_item(ast::Ident::new(sym::prelude_import, span)))],
vis: respan(span.shrink_to_lo(), ast::VisibilityKind::Inherited),
node: ast::ItemKind::Use(P(ast::UseTree {
2019-08-25 15:03:24 -05:00
prefix: ast::Path { segments, span },
kind: ast::UseTreeKind::Glob,
span,
})),
id: ast::DUMMY_NODE_ID,
ident: ast::Ident::invalid(),
span,
tokens: None,
2019-08-25 15:03:24 -05:00
});
let prelude_import_item = if rust_2018 {
let hygienic_extern_crate = P(ast::Item {
attrs: vec![],
vis: respan(span, ast::VisibilityKind::Inherited),
node: ast::ItemKind::ExternCrate(alt_std_name),
ident: ast::Ident::new(name, span),
id: ast::DUMMY_NODE_ID,
span,
tokens: None,
});
// Use an anonymous const to hide `extern crate std as hygienic_std`
// FIXME: Once inter-crate hygiene exists, this can just be `use_item`.
P(ast::Item {
attrs: Vec::new(),
vis: respan(span.shrink_to_lo(), ast::VisibilityKind::Inherited),
node: ast::ItemKind::Const(
P(ast::Ty {
id: ast::DUMMY_NODE_ID,
node: ast::TyKind::Tup(Vec::new()),
span,
}),
P(ast::Expr {
id: ast::DUMMY_NODE_ID,
attrs: syntax::ThinVec::new(),
node: ast::ExprKind::Block(P(ast::Block {
id: ast::DUMMY_NODE_ID,
rules: ast::BlockCheckMode::Default,
stmts: vec![
ast::Stmt {
id: ast::DUMMY_NODE_ID,
node: ast::StmtKind::Item(use_item),
span,
},
ast::Stmt {
id: ast::DUMMY_NODE_ID,
node: ast::StmtKind::Item(hygienic_extern_crate),
span,
}
],
span,
}), None),
span,
})
),
id: ast::DUMMY_NODE_ID,
ident: ast::Ident::new(kw::Underscore, span),
span,
tokens: None,
})
} else {
// Have `extern crate std` at the root, so don't need to create a named
// extern crate item.
use_item
};
krate.module.items.insert(0, prelude_import_item);
2019-08-25 15:03:24 -05:00
(krate, Some(name))
}