Skip to content

Commit f99d4df

Browse files
committed
Auto merge of #38205 - jseyfried:fix_module_directory_regression, r=eddyb
macros: fix the expected paths for a non-inline module matched by an `item` fragment Fixes #38190. r? @nrc
2 parents d250169 + fd98a8d commit f99d4df

File tree

8 files changed

+63
-23
lines changed

8 files changed

+63
-23
lines changed

src/libsyntax/ext/expand.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ fn string_to_tts(text: String, parse_sess: &ParseSess) -> Vec<TokenTree> {
650650
.new_filemap(String::from("<macro expansion>"), None, text);
651651

652652
let lexer = lexer::StringReader::new(&parse_sess.span_diagnostic, filemap);
653-
let mut parser = Parser::new(parse_sess, Box::new(lexer));
653+
let mut parser = Parser::new(parse_sess, Box::new(lexer), None, false);
654654
panictry!(parser.parse_all_token_trees())
655655
}
656656

src/libsyntax/ext/tt/macro_parser.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ use syntax_pos::{self, BytePos, mk_sp, Span};
8383
use codemap::Spanned;
8484
use errors::FatalError;
8585
use parse::lexer::*; //resolve bug?
86-
use parse::ParseSess;
86+
use parse::{Directory, ParseSess};
8787
use parse::parser::{PathStyle, Parser};
8888
use parse::token::{DocComment, MatchNt, SubstNt};
8989
use parse::token::{Token, Nonterminal};
@@ -407,8 +407,9 @@ fn inner_parse_loop(cur_eis: &mut SmallVector<Box<MatcherPos>>,
407407
Success(())
408408
}
409409

410-
pub fn parse(sess: &ParseSess, rdr: TtReader, ms: &[TokenTree]) -> NamedParseResult {
411-
let mut parser = Parser::new_with_doc_flag(sess, Box::new(rdr), true);
410+
pub fn parse(sess: &ParseSess, rdr: TtReader, ms: &[TokenTree], directory: Option<Directory>)
411+
-> NamedParseResult {
412+
let mut parser = Parser::new(sess, Box::new(rdr), directory, true);
412413
let mut cur_eis = SmallVector::one(initial_matcher_pos(ms.to_owned(), parser.span.lo));
413414
let mut next_eis = Vec::new(); // or proceed normally
414415

src/libsyntax/ext/tt/macro_rules.rs

+9-8
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use ext::placeholders;
1717
use ext::tt::macro_parser::{Success, Error, Failure};
1818
use ext::tt::macro_parser::{MatchedSeq, MatchedNonterminal};
1919
use ext::tt::macro_parser::{parse, parse_failure_msg};
20-
use parse::ParseSess;
20+
use parse::{Directory, ParseSess};
2121
use parse::lexer::new_tt_reader;
2222
use parse::parser::Parser;
2323
use parse::token::{self, NtTT, Token};
@@ -116,12 +116,13 @@ fn generic_extension<'cx>(cx: &'cx ExtCtxt,
116116
// rhs has holes ( `$id` and `$(...)` that need filled)
117117
let trncbr =
118118
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());
125126

126127
p.check_unknown_macro_variable();
127128
// Let the context choose how to interpret the result.
@@ -222,7 +223,7 @@ pub fn compile(sess: &ParseSess, def: &ast::MacroDef) -> SyntaxExtension {
222223
// Parse the macro_rules! invocation (`none` is for no interpolations):
223224
let arg_reader = new_tt_reader(&sess.span_diagnostic, None, def.body.clone());
224225

225-
let argument_map = match parse(sess, arg_reader, &argument_gram) {
226+
let argument_map = match parse(sess, arg_reader, &argument_gram, None) {
226227
Success(m) => m,
227228
Failure(sp, tok) => {
228229
let s = parse_failure_msg(tok);

src/libsyntax/parse/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -222,14 +222,14 @@ pub fn filemap_to_tts(sess: &ParseSess, filemap: Rc<FileMap>)
222222
// it appears to me that the cfg doesn't matter here... indeed,
223223
// parsing tt's probably shouldn't require a parser at all.
224224
let srdr = lexer::StringReader::new(&sess.span_diagnostic, filemap);
225-
let mut p1 = Parser::new(sess, Box::new(srdr));
225+
let mut p1 = Parser::new(sess, Box::new(srdr), None, false);
226226
panictry!(p1.parse_all_token_trees())
227227
}
228228

229229
/// Given tts and the ParseSess, produce a parser
230230
pub fn tts_to_parser<'a>(sess: &'a ParseSess, tts: Vec<tokenstream::TokenTree>) -> Parser<'a> {
231231
let trdr = lexer::new_tt_reader(&sess.span_diagnostic, None, tts);
232-
let mut p = Parser::new(sess, Box::new(trdr));
232+
let mut p = Parser::new(sess, Box::new(trdr), None, false);
233233
p.check_unknown_macro_variable();
234234
p
235235
}

src/libsyntax/parse/parser.rs

+8-7
Original file line numberDiff line numberDiff line change
@@ -267,12 +267,11 @@ impl From<P<Expr>> for LhsExpr {
267267
}
268268

269269
impl<'a> Parser<'a> {
270-
pub fn new(sess: &'a ParseSess, rdr: Box<Reader+'a>) -> Self {
271-
Parser::new_with_doc_flag(sess, rdr, false)
272-
}
273-
274-
pub fn new_with_doc_flag(sess: &'a ParseSess, rdr: Box<Reader+'a>, desugar_doc_comments: bool)
275-
-> Self {
270+
pub fn new(sess: &'a ParseSess,
271+
rdr: Box<Reader+'a>,
272+
directory: Option<Directory>,
273+
desugar_doc_comments: bool)
274+
-> Self {
276275
let mut parser = Parser {
277276
reader: rdr,
278277
sess: sess,
@@ -298,7 +297,9 @@ impl<'a> Parser<'a> {
298297
let tok = parser.next_tok();
299298
parser.token = tok.tok;
300299
parser.span = tok.sp;
301-
if parser.span != syntax_pos::DUMMY_SP {
300+
if let Some(directory) = directory {
301+
parser.directory = directory;
302+
} else if parser.span != syntax_pos::DUMMY_SP {
302303
parser.directory.path = PathBuf::from(sess.codemap().span_to_filename(parser.span));
303304
parser.directory.path.pop();
304305
}

src/libsyntax/tokenstream.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ use ext::base;
3131
use ext::tt::macro_parser;
3232
use parse::lexer::comments::{doc_comment_style, strip_doc_comment_decoration};
3333
use parse::lexer;
34-
use parse;
34+
use parse::{self, Directory};
3535
use parse::token::{self, Token, Lit, Nonterminal};
3636
use print::pprust;
3737
use symbol::Symbol;
@@ -218,7 +218,11 @@ impl TokenTree {
218218
let diag = &cx.parse_sess().span_diagnostic;
219219
// `None` is because we're not interpolating
220220
let arg_rdr = lexer::new_tt_reader(diag, None, tts.iter().cloned().collect());
221-
macro_parser::parse(cx.parse_sess(), arg_rdr, mtch)
221+
let directory = Directory {
222+
path: cx.current_expansion.module.directory.clone(),
223+
ownership: cx.current_expansion.directory_ownership,
224+
};
225+
macro_parser::parse(cx.parse_sess(), arg_rdr, mtch, Some(directory))
222226
}
223227

224228
/// Check if this TokenTree is equal to the other, regardless of span information.
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
#[macro_export]
12+
macro_rules! m { ([$i:item]) => {} }

src/test/run-pass/issue-38190.rs

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
// aux-build:issue_38190.rs
12+
// ignore-pretty issue #37195
13+
14+
#[macro_use]
15+
extern crate issue_38190;
16+
17+
mod auxiliary {
18+
m!([mod issue_38190;]);
19+
}
20+
21+
fn main() {}

0 commit comments

Comments
 (0)