about summary refs log tree commit diff
path: root/src/rustdoc/parse.rs
blob: ca30e8aa8a8fe05f477a9c2d857f06c56f1183a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//! AST-parsing helpers

import rustc::driver::driver;
import driver::{file_input, str_input};
import rustc::driver::session;
import syntax::diagnostic;
import syntax::ast;
import syntax::codemap;
import syntax::parse;

export from_file, from_str, from_file_sess, from_str_sess;

fn from_file(file: ~str) -> @ast::crate {
    parse::parse_crate_from_file(
        file, ~[], parse::new_parse_sess(none))
}

fn from_str(source: ~str) -> @ast::crate {
    parse::parse_crate_from_source_str(
        ~"-", @source, ~[], parse::new_parse_sess(none))
}

fn from_file_sess(sess: session::session, file: ~str) -> @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)
}