@@ -17,7 +17,7 @@ use ext::placeholders;
17
17
use ext:: tt:: macro_parser:: { Success , Error , Failure } ;
18
18
use ext:: tt:: macro_parser:: { MatchedSeq , MatchedNonterminal } ;
19
19
use ext:: tt:: macro_parser:: { parse, parse_failure_msg} ;
20
- use parse:: ParseSess ;
20
+ use parse:: { Directory , ParseSess } ;
21
21
use parse:: lexer:: new_tt_reader;
22
22
use parse:: parser:: Parser ;
23
23
use parse:: token:: { self , NtTT , Token } ;
@@ -116,12 +116,13 @@ fn generic_extension<'cx>(cx: &'cx ExtCtxt,
116
116
// rhs has holes ( `$id` and `$(...)` that need filled)
117
117
let trncbr =
118
118
new_tt_reader ( & cx. parse_sess . span_diagnostic , Some ( named_matches) , rhs) ;
119
- let mut p = Parser :: new ( cx. parse_sess ( ) , Box :: new ( trncbr) ) ;
120
- let module = & cx. current_expansion . module ;
121
- p. directory . path = module. directory . clone ( ) ;
122
- p. directory . ownership = cx. current_expansion . directory_ownership ;
123
- p. root_module_name =
124
- module. mod_path . last ( ) . map ( |id| ( * id. name . as_str ( ) ) . to_owned ( ) ) ;
119
+ let directory = Directory {
120
+ path : cx. current_expansion . module . directory . clone ( ) ,
121
+ ownership : cx. current_expansion . directory_ownership ,
122
+ } ;
123
+ let mut p = Parser :: new ( cx. parse_sess ( ) , Box :: new ( trncbr) , Some ( directory) , false ) ;
124
+ p. root_module_name = cx. current_expansion . module . mod_path . last ( )
125
+ . map ( |id| ( * id. name . as_str ( ) ) . to_owned ( ) ) ;
125
126
126
127
p. check_unknown_macro_variable ( ) ;
127
128
// Let the context choose how to interpret the result.
@@ -222,7 +223,7 @@ pub fn compile(sess: &ParseSess, def: &ast::MacroDef) -> SyntaxExtension {
222
223
// Parse the macro_rules! invocation (`none` is for no interpolations):
223
224
let arg_reader = new_tt_reader ( & sess. span_diagnostic , None , def. body . clone ( ) ) ;
224
225
225
- let argument_map = match parse ( sess, arg_reader, & argument_gram) {
226
+ let argument_map = match parse ( sess, arg_reader, & argument_gram, None ) {
226
227
Success ( m) => m,
227
228
Failure ( sp, tok) => {
228
229
let s = parse_failure_msg ( tok) ;
0 commit comments