rustc: Move codemap to rustsyntax
This commit is contained in:
parent
a0ed1fb20b
commit
140151f3f9
4 changed files with 14 additions and 1 deletions
|
|
@ -3,3 +3,5 @@
|
|||
uuid = "c2b79dd0-a437-4ec7-95f9-858d77808c2f")];
|
||||
|
||||
#[crate_type = "lib"];
|
||||
|
||||
mod codemap;
|
||||
|
|
|
|||
|
|
@ -75,7 +75,6 @@ mod syntax {
|
|||
|
||||
mod fold;
|
||||
mod visit;
|
||||
mod codemap;
|
||||
mod parse {
|
||||
mod lexer;
|
||||
mod parser;
|
||||
|
|
|
|||
12
src/rustc/syntax.rs
Normal file
12
src/rustc/syntax.rs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
// Temporary wrapper modules for migrating syntax to its own crate
|
||||
import rustsyntax::codemap;
|
||||
export codemap;
|
||||
|
||||
export ast;
|
||||
export ast_util;
|
||||
export visit;
|
||||
export fold;
|
||||
export parse;
|
||||
export ext;
|
||||
export print;
|
||||
export util;
|
||||
Loading…
Add table
Add a link
Reference in a new issue