1
1
use rustc_ast:: token:: { Delimiter , TokenKind } ;
2
2
use rustc_ast:: tokenstream:: TokenStream ;
3
3
use rustc_ast:: { ast, ptr} ;
4
- use rustc_parse:: parser:: { ForceCollect , Parser } ;
4
+ use rustc_parse:: parser:: { ForceCollect , Parser , Recovery } ;
5
5
use rustc_parse:: { stream_to_parser, MACRO_ARGUMENTS } ;
6
6
use rustc_session:: parse:: ParseSess ;
7
7
use rustc_span:: symbol:: { self , kw} ;
@@ -24,45 +24,52 @@ fn build_parser<'a>(context: &RewriteContext<'a>, tokens: TokenStream) -> Parser
24
24
25
25
fn parse_macro_arg < ' a , ' b : ' a > ( parser : & ' a mut Parser < ' b > ) -> Option < MacroArg > {
26
26
macro_rules! parse_macro_arg {
27
- ( $macro_arg: ident, $parser : expr, $f : expr) => {
27
+ ( $macro_arg: ident, $can_begin : expr, $try_parse : expr , $then : expr) => {
28
28
let mut cloned_parser = ( * parser) . clone( ) ;
29
- match $parser( & mut cloned_parser) {
30
- Ok ( x) => {
31
- if parser. sess. dcx. has_errors( ) . is_some( ) {
29
+ if $can_begin( & mut cloned_parser) {
30
+ match $try_parse( & mut cloned_parser) {
31
+ Ok ( x) => {
32
+ if parser. sess. dcx. has_errors( ) . is_some( ) {
33
+ parser. sess. dcx. reset_err_count( ) ;
34
+ } else {
35
+ // Parsing succeeded.
36
+ * parser = cloned_parser;
37
+ return Some ( MacroArg :: $macro_arg( $then( x) ?) ) ;
38
+ }
39
+ }
40
+ Err ( e) => {
41
+ e. cancel( ) ;
32
42
parser. sess. dcx. reset_err_count( ) ;
33
- } else {
34
- // Parsing succeeded.
35
- * parser = cloned_parser;
36
- return Some ( MacroArg :: $macro_arg( $f( x) ?) ) ;
37
43
}
38
44
}
39
- Err ( e) => {
40
- e. cancel( ) ;
41
- parser. sess. dcx. reset_err_count( ) ;
42
- }
43
45
}
44
46
} ;
45
47
}
46
48
47
49
parse_macro_arg ! (
48
50
Expr ,
49
- |parser: & mut rustc_parse:: parser:: Parser <' b>| parser. parse_expr( ) ,
51
+ |parser: & mut Parser <' b>| parser. token. can_begin_expr( ) ,
52
+ |parser: & mut Parser <' b>| parser. parse_expr( ) ,
50
53
|x: ptr:: P <ast:: Expr >| Some ( x)
51
54
) ;
52
55
parse_macro_arg ! (
53
56
Ty ,
54
- |parser: & mut rustc_parse:: parser:: Parser <' b>| parser. parse_ty( ) ,
57
+ |parser: & mut Parser <' b>| parser. token. can_begin_type( ) ,
58
+ |parser: & mut Parser <' b>| parser. parse_ty( ) ,
55
59
|x: ptr:: P <ast:: Ty >| Some ( x)
56
60
) ;
57
61
parse_macro_arg ! (
58
62
Pat ,
59
- |parser: & mut rustc_parse:: parser:: Parser <' b>| parser. parse_pat_no_top_alt( None , None ) ,
63
+ // FIXME: This isn't right
64
+ |_| true ,
65
+ |parser: & mut Parser <' b>| parser. parse_pat_no_top_alt( None , None ) ,
60
66
|x: ptr:: P <ast:: Pat >| Some ( x)
61
67
) ;
62
68
// `parse_item` returns `Option<ptr::P<ast::Item>>`.
63
69
parse_macro_arg ! (
64
70
Item ,
65
- |parser: & mut rustc_parse:: parser:: Parser <' b>| parser. parse_item( ForceCollect :: No ) ,
71
+ |_| true ,
72
+ |parser: & mut Parser <' b>| parser. parse_item( ForceCollect :: No ) ,
66
73
|x: Option <ptr:: P <ast:: Item >>| x
67
74
) ;
68
75
0 commit comments