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
|
|
|
|
2012-04-06 00:30:26 +00:00
|
|
|
#[no_core];
|
|
|
|
|
|
|
|
use core(vers = "0.2");
|
|
|
|
use std(vers = "0.2");
|
|
|
|
|
|
|
|
import core::*;
|
2012-03-22 23:07:30 +00:00
|
|
|
|
2012-03-23 01:01:08 +00:00
|
|
|
mod attr;
|
2012-03-23 00:31:32 +00:00
|
|
|
mod diagnostic;
|
2012-03-22 22:35:22 +00:00
|
|
|
mod codemap;
|
2012-03-22 23:07:30 +00:00
|
|
|
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;
|
2012-03-23 00:49:30 +00:00
|
|
|
}
|
2012-04-18 02:34:44 +00:00
|
|
|
|
2012-03-23 00:49:30 +00:00
|
|
|
mod parse {
|
2012-04-18 02:34:44 +00:00
|
|
|
export parser;
|
|
|
|
export lexer;
|
|
|
|
export comments;
|
2012-04-18 03:41:04 +00:00
|
|
|
export prec;
|
2012-04-18 05:02:00 +00:00
|
|
|
export classify;
|
2012-04-20 03:51:31 +00:00
|
|
|
export attr;
|
2012-04-18 02:34:44 +00:00
|
|
|
|
2012-03-23 01:01:08 +00:00
|
|
|
mod eval;
|
2012-03-23 00:49:30 +00:00
|
|
|
mod lexer;
|
2012-03-23 01:01:08 +00:00
|
|
|
mod parser;
|
|
|
|
mod token;
|
2012-04-15 10:27:24 +00:00
|
|
|
mod comments;
|
2012-04-20 03:51:31 +00:00
|
|
|
mod attr;
|
2012-04-18 03:41:04 +00:00
|
|
|
|
|
|
|
#[doc = "Functions dealing with operator precedence"]
|
|
|
|
mod prec;
|
2012-04-18 05:02:00 +00:00
|
|
|
|
|
|
|
#[doc = "Routines the parser uses to classify AST nodes"]
|
|
|
|
mod classify;
|
2012-03-23 01:01:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mod print {
|
|
|
|
mod pp;
|
|
|
|
mod pprust;
|
2012-03-29 20:48:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mod ext {
|
|
|
|
mod base;
|
|
|
|
mod expand;
|
|
|
|
mod qquote;
|
|
|
|
mod build;
|
|
|
|
|
|
|
|
mod fmt;
|
|
|
|
mod env;
|
|
|
|
mod simplext;
|
|
|
|
mod concat_idents;
|
|
|
|
mod ident_to_str;
|
|
|
|
mod log_syntax;
|
|
|
|
mod auto_serialize;
|
|
|
|
}
|