diff options
| author | bors <bors@rust-lang.org> | 2013-07-26 06:13:53 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-07-26 06:13:53 -0700 |
| commit | 382b037252c213150f2a298524db2c7674804126 (patch) | |
| tree | 3782fab46f4f26006733bf71fdf71f58975db8a9 /src/libsyntax/util/parser_testing.rs | |
| parent | 4c4cf003ea32d7617602fdbd1b2ebc8099633f06 (diff) | |
| parent | c3417b88aa20f835a5c19dc5d8539eb33f2802b9 (diff) | |
| download | rust-382b037252c213150f2a298524db2c7674804126.tar.gz rust-382b037252c213150f2a298524db2c7674804126.zip | |
auto merge of #8037 : graydon/rust/issue-6416, r=cmr
Errors only turn into failures in the parser when you force them.
Diffstat (limited to 'src/libsyntax/util/parser_testing.rs')
| -rw-r--r-- | src/libsyntax/util/parser_testing.rs | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/src/libsyntax/util/parser_testing.rs b/src/libsyntax/util/parser_testing.rs index de97396e453..9d286f1759e 100644 --- a/src/libsyntax/util/parser_testing.rs +++ b/src/libsyntax/util/parser_testing.rs @@ -33,29 +33,46 @@ pub fn string_to_parser(source_str: @str) -> Parser { p } +fn with_error_checking_parse<T>(s: @str, f: &fn(&mut Parser) -> T) -> T { + let mut p = string_to_parser(s); + let x = f(&mut p); + p.abort_if_errors(); + x +} + pub fn string_to_crate (source_str : @str) -> @ast::Crate { - string_to_parser(source_str).parse_crate_mod() + do with_error_checking_parse(source_str) |p| { + p.parse_crate_mod() + } } // parse a string, return an expr pub fn string_to_expr (source_str : @str) -> @ast::expr { - string_to_parser(source_str).parse_expr() + do with_error_checking_parse(source_str) |p| { + p.parse_expr() + } } // parse a string, return an item pub fn string_to_item (source_str : @str) -> Option<@ast::item> { - string_to_parser(source_str).parse_item(~[]) + do with_error_checking_parse(source_str) |p| { + p.parse_item(~[]) + } } // parse a string, return an item and the ParseSess pub fn string_to_item_and_sess (source_str : @str) -> (Option<@ast::item>,@mut ParseSess) { let (p,ps) = string_to_parser_and_sess(source_str); - (p.parse_item(~[]),ps) + let io = p.parse_item(~[]); + p.abort_if_errors(); + (io,ps) } // parse a string, return a stmt pub fn string_to_stmt(source_str : @str) -> @ast::stmt { - string_to_parser(source_str).parse_stmt(~[]) + do with_error_checking_parse(source_str) |p| { + p.parse_stmt(~[]) + } } // parse a string, return a pat. Uses "irrefutable"... which doesn't |
