1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//! HIR datatypes. See the [rustc dev guide] for more info.
//!
//! [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/hir.html
// tidy-alphabetical-start
// ---------------------------------------------------------------------------------------------
// STD IS BANNED IN THIS CRATE.
//
// `#![no_std]` above is the ban and the compiler is the enforcer: without `extern crate std;`
// there is no `std` in the extern prelude, so any `std::` path fails to resolve and the build
// stops. Do not add that line back to make an error go away - the error is the point. Whatever
// needed `std` either has a `core`/`alloc` equivalent, belongs in `ekostd`, or is a
// dependency that has to be replaced.
//
// The prelude is the part a grep cannot see: `Vec`, `String`, `Box`, `format!`, `vec!`,
// `thread_local!` and `println!` name no path. Under `#![no_std]` they resolve through `alloc`
// and `eko` instead, which is why those imports appear at the top of every file here.
// ---------------------------------------------------------------------------------------------
// Only for `IntoDiagArg::into_diag_arg`, whose signature takes a `&mut Option<PathBuf>` -
// a parameter this crate never reads (it is `_` at every site here). The std dependency
// belongs to the diagnostics layer that defines the trait, not to this crate, and it goes
// when that layer does.
// tidy-alphabetical-end
pub use *;
pub use crate;
pub use crate*;
pub use cratedef_id;
// FIXME: Remove this use tree, replace by `crate::rustc_hir::attrs` or `rustc_attr_ir` imports
pub use ;
pub use crateArena;