rust/src/rustdoc/parse.rs

31 lines
712 B
Rust
Raw Normal View History

2012-01-17 17:44:32 -08:00
#[doc = "AST-parsing helpers"];
import rustc::driver::diagnostic;
import rustc::syntax::ast;
import rustc::syntax::codemap;
import rustc::syntax::parse::parser;
export from_file, from_str;
fn new_parse_sess() -> parser::parse_sess {
let cm = codemap::new_codemap();
let sess = @{
cm: cm,
2012-01-18 18:35:55 -08:00
mutable next_id: 1,
diagnostic: diagnostic::mk_handler(cm, none),
mutable chpos: 0u,
mutable byte_pos: 0u
};
ret sess;
}
fn from_file(file: str) -> @ast::crate {
parser::parse_crate_from_file(
file, [], new_parse_sess())
}
fn from_str(source: str) -> @ast::crate {
parser::parse_crate_from_source_str(
"-", source, [], new_parse_sess())
}