Skip to content

Commit 5962aa9

Browse files
committed
Make top-level rustc_parse functions fallible.
Currently we have an awkward mix of fallible and infallible functions: ``` new_parser_from_source_str maybe_new_parser_from_source_str new_parser_from_file (maybe_new_parser_from_file) // missing (new_parser_from_source_file) // missing maybe_new_parser_from_source_file source_str_to_stream maybe_source_file_to_stream ``` We could add the two missing functions, but instead this commit removes of all the infallible ones and renames the fallible ones leaving us with these which are all fallible: ``` new_parser_from_source_str new_parser_from_file new_parser_from_source_file source_str_to_stream source_file_to_stream ``` This requires making `unwrap_or_emit_fatal` public so callers of formerly infallible functions can still work. This does make some of the call sites slightly more verbose, but I think it's worth it for the simpler API. Also, there are two `catch_unwind` calls and one `catch_fatal_errors` call in this diff that become removable thanks this change. (I will do that in a follow-up PR.)
1 parent eeefcd6 commit 5962aa9

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/parse/parser.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ use std::path::{Path, PathBuf};
44
use rustc_ast::token::TokenKind;
55
use rustc_ast::{ast, attr, ptr};
66
use rustc_errors::Diag;
7-
use rustc_parse::{new_parser_from_file, parser::Parser as RawParser};
7+
use rustc_parse::parser::Parser as RawParser;
8+
use rustc_parse::{new_parser_from_file, unwrap_or_emit_fatal};
89
use rustc_span::{sym, Span};
910
use thin_vec::ThinVec;
1011

@@ -68,10 +69,10 @@ impl<'a> ParserBuilder<'a> {
6869
) -> Result<rustc_parse::parser::Parser<'a>, Option<Vec<Diag<'a>>>> {
6970
match input {
7071
Input::File(ref file) => catch_unwind(AssertUnwindSafe(move || {
71-
new_parser_from_file(psess, file, None)
72+
unwrap_or_emit_fatal(new_parser_from_file(psess, file, None))
7273
}))
7374
.map_err(|_| None),
74-
Input::Text(text) => rustc_parse::maybe_new_parser_from_source_str(
75+
Input::Text(text) => rustc_parse::new_parser_from_source_str(
7576
psess,
7677
rustc_span::FileName::Custom("stdin".to_owned()),
7778
text,
@@ -111,7 +112,8 @@ impl<'a> Parser<'a> {
111112
span: Span,
112113
) -> Result<(ast::AttrVec, ThinVec<ptr::P<ast::Item>>, Span), ParserError> {
113114
let result = catch_unwind(AssertUnwindSafe(|| {
114-
let mut parser = new_parser_from_file(psess.inner(), path, Some(span));
115+
let mut parser =
116+
unwrap_or_emit_fatal(new_parser_from_file(psess.inner(), path, Some(span)));
115117
match parser.parse_mod(&TokenKind::Eof) {
116118
Ok((a, i, spans)) => Some((a, i, spans.inner_span)),
117119
Err(e) => {

0 commit comments

Comments
 (0)