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
36
37
38
39
40
41
42
#![feature(rustc_private)]
#![cfg_attr(doc, doc = include_str!("../README.md"))]

// We need to import them like this otherwise it doesn't work.
extern crate rustc_ast;
extern crate rustc_data_structures;
extern crate rustc_driver;
extern crate rustc_errors;
extern crate rustc_feature;
extern crate rustc_hir;
extern crate rustc_interface;
extern crate rustc_lexer;
extern crate rustc_lint;
extern crate rustc_lint_defs;
extern crate rustc_middle;
extern crate rustc_parse;
extern crate rustc_passes;
extern crate rustc_session;
extern crate rustc_span;

mod ast;
mod cargo;
mod hir;
mod lint;

pub use ast::with_ast_parser;
pub use cargo::{cargo_integration, get_supported_rustc_version};
pub use hir::with_tyctxt;
pub use lint::with_lints;

/// Error returned by the API. If the parser encounters a problem, it'll always be `Error::Parser`.
/// `Error::Other` is for users.
pub enum Error<E> {
    Parser(String),
    Other(E),
}

/// Very basic lexer which return a lexer iterator. It doesn't handle errors or anything. For more
/// advanced usage, take a look at [`with_ast_parser`] instead.
pub fn lexer(source_code: &str) -> rustc_lexer::Cursor<'_> {
    rustc_lexer::Cursor::new(source_code)
}