rust/src/librustsyntax/rustsyntax.rc

16 lines
227 B
Plaintext
Raw Normal View History

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