rust/src/rustdoc/parse.rs

36 lines
1019 B
Rust
Raw Normal View History

//! AST-parsing helpers
2012-01-17 19:44:32 -06:00
2012-09-05 12:41:47 -05:00
use rustc::driver::driver;
use driver::{file_input, str_input};
use rustc::driver::session;
use syntax::diagnostic;
use syntax::ast;
use syntax::codemap;
use syntax::parse;
export from_file, from_str, from_file_sess, from_str_sess;
fn from_file(file: &Path) -> @ast::crate {
parse::parse_crate_from_file(
2012-08-20 14:23:37 -05:00
file, ~[], parse::new_parse_sess(None))
}
fn from_str(source: ~str) -> @ast::crate {
parse::parse_crate_from_source_str(
2012-08-20 14:23:37 -05:00
~"-", @source, ~[], parse::new_parse_sess(None))
}
fn from_file_sess(sess: session::session, file: &Path) -> @ast::crate {
parse::parse_crate_from_file(
file, cfg(sess, file_input(*file)), sess.parse_sess)
}
fn from_str_sess(sess: session::session, source: ~str) -> @ast::crate {
parse::parse_crate_from_source_str(
~"-", @source, cfg(sess, str_input(source)), sess.parse_sess)
}
fn cfg(sess: session::session, input: driver::input) -> ast::crate_cfg {
driver::default_configuration(sess, ~"rustdoc", input)
}