Add an intital HIR and lowering step

This commit is contained in:
Nick Cameron 2015-07-31 00:04:06 -07:00
parent cfd76b364c
commit facdf2ebb1
160 changed files with 13917 additions and 4451 deletions

View file

@ -73,6 +73,7 @@ extern crate graphviz;
extern crate libc;
extern crate rustc_llvm;
extern crate rustc_back;
extern crate rustc_front;
extern crate rustc_data_structures;
extern crate serialize;
extern crate rbml;
@ -101,7 +102,9 @@ pub mod back {
pub use rustc_back::svh;
}
pub mod ast_map;
pub mod front {
pub mod map;
}
pub mod middle {
pub mod astconv_util;