rust/src/librustsyntax/rustsyntax.rc

21 lines
287 B
Plaintext
Raw Normal View History

2012-03-22 17:27:35 -05:00
#[link(name = "rustsyntax",
vers = "0.2",
uuid = "c2b79dd0-a437-4ec7-95f9-858d77808c2f")];
#[crate_type = "lib"];
2012-03-22 17:35:22 -05:00
use std;
2012-03-22 19:31:32 -05:00
mod diagnostic;
2012-03-22 17:35:22 -05:00
mod codemap;
mod ast;
mod ast_util;
mod visit;
2012-03-22 19:21:34 -05:00
mod fold;
2012-03-22 18:58:30 -05:00
mod util {
mod interner;
}
mod parse {
mod token;
mod lexer;
2012-03-22 18:58:30 -05:00
}