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
//! A library for inspecting Rust code
#![warn(
    missing_docs,
    missing_debug_implementations,
    missing_copy_implementations,
    trivial_casts,
    trivial_numeric_casts,
    unsafe_code,
    unstable_features,
    unused_import_braces,
    unused_qualifications
)]

#[macro_use]
extern crate failure;
extern crate syntect;

mod errors;
mod format;
mod highlight;
mod hir;

pub use errors::InspectError;
use format::format;
use highlight::highlight;
use hir::get_hir;
use std::path::PathBuf;

/// inspect takes a path to a Rust file as an input and returns
/// the desugared output.
pub fn inspect(path: PathBuf, unpretty: String, theme: String) -> Result<String, InspectError> {
    let hir = get_hir(path, unpretty)?;
    let formatted = format(hir)?;
    highlight(formatted, theme)
}