extern crate proc_macro2; extern crate syn; extern crate synom; extern crate syntex_syntax; use self::syntex_syntax::ast; use self::syntex_syntax::ptr::P; use self::syntex_syntax::parse::{self, ParseSess}; use self::syntex_syntax::codemap::FilePathMapping; use std::panic; use self::synom::{Synom, SynomBuffer}; pub fn syntex_expr(input: &str) -> Option
> {
match panic::catch_unwind(|| {
let sess = ParseSess::new(FilePathMapping::empty());
sess.span_diagnostic.set_continue_after_error(false);
let e = parse::parse_expr_from_source_str(
"test_precedence".to_string(),
input.to_string(),
&sess,
);
Some(match e {
Ok(expr) => expr,
Err(mut diagnostic) => {
diagnostic.emit();;
return None
}
})
}) {
Ok(Some(e)) => Some(e),
Ok(None) => {
None
}
Err(_) => {
errorf!("syntex paniced\n");
None
}
}
}
pub fn syn_expr(input: &str) -> Option