about summary refs log tree commit diff
path: root/src/rustdoc/parse.rs
blob: 9b0291cd8a1107bc421c0417091cbbe18cde4a7d (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
#[doc = "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)
}