Skip to content

Commit 40e39c7

Browse files
committed
Rollup merge of rust-lang#27584 - TimNN:macro-eof-span, r=huonw
The ideas is to use the span of the complete macro invocation if the span of a macro error is `DUMMY_SP`. fixes rust-lang#7970
2 parents 91c618f + d46e840 commit 40e39c7

File tree

6 files changed

+54
-29
lines changed

6 files changed

+54
-29
lines changed

src/librustc/middle/traits/error_reporting.rs

+2-6
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ use middle::ty::{self, ToPredicate, HasTypeFlags, ToPolyTraitRef, TraitRef};
2929
use middle::ty_fold::TypeFoldable;
3030
use std::collections::HashMap;
3131
use std::fmt;
32-
use syntax::codemap::{DUMMY_SP, Span};
32+
use syntax::codemap::Span;
3333
use syntax::attr::{AttributeMethods, AttrMetaMethods};
3434

3535
pub fn report_fulfillment_errors<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
@@ -81,11 +81,7 @@ fn report_on_unimplemented<'a, 'tcx>(infcx: &InferCtxt<'a, 'tcx>,
8181
let mut report = None;
8282
for item in infcx.tcx.get_attrs(def_id).iter() {
8383
if item.check_name("rustc_on_unimplemented") {
84-
let err_sp = if item.meta().span == DUMMY_SP {
85-
span
86-
} else {
87-
item.meta().span
88-
};
84+
let err_sp = item.meta().span.substitute_dummy(span);
8985
let def = infcx.tcx.lookup_trait_def(def_id);
9086
let trait_str = def.trait_ref.to_string();
9187
if let Some(ref istring) = item.value_str() {

src/libsyntax/codemap.rs

+7
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,13 @@ pub const COMMAND_LINE_SP: Span = Span { lo: BytePos(0),
135135
hi: BytePos(0),
136136
expn_id: COMMAND_LINE_EXPN };
137137

138+
impl Span {
139+
/// Returns `self` if `self` is not the dummy span, and `other` otherwise.
140+
pub fn substitute_dummy(self, other: Span) -> Span {
141+
if self == DUMMY_SP { other } else { self }
142+
}
143+
}
144+
138145
#[derive(Clone, PartialEq, Eq, RustcEncodable, RustcDecodable, Hash, Debug, Copy)]
139146
pub struct Spanned<T> {
140147
pub node: T,

src/libsyntax/ext/tt/macro_parser.rs

-16
Original file line numberDiff line numberDiff line change
@@ -249,22 +249,6 @@ pub enum ParseResult<T> {
249249
pub type NamedParseResult = ParseResult<HashMap<Ident, Rc<NamedMatch>>>;
250250
pub type PositionalParseResult = ParseResult<Vec<Rc<NamedMatch>>>;
251251

252-
pub fn parse_or_else(sess: &ParseSess,
253-
cfg: ast::CrateConfig,
254-
rdr: TtReader,
255-
ms: Vec<TokenTree> )
256-
-> HashMap<Ident, Rc<NamedMatch>> {
257-
match parse(sess, cfg, rdr, &ms[..]) {
258-
Success(m) => m,
259-
Failure(sp, str) => {
260-
panic!(sess.span_diagnostic.span_fatal(sp, &str[..]))
261-
}
262-
Error(sp, str) => {
263-
panic!(sess.span_diagnostic.span_fatal(sp, &str[..]))
264-
}
265-
}
266-
}
267-
268252
/// Perform a token equality check, ignoring syntax context (that is, an
269253
/// unhygienic comparison)
270254
pub fn token_name_eq(t1 : &Token, t2 : &Token) -> bool {

src/libsyntax/ext/tt/macro_rules.rs

+17-7
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use ext::base::{ExtCtxt, MacResult, SyntaxExtension};
1414
use ext::base::{NormalTT, TTMacroExpander};
1515
use ext::tt::macro_parser::{Success, Error, Failure};
1616
use ext::tt::macro_parser::{NamedMatch, MatchedSeq, MatchedNonterminal};
17-
use ext::tt::macro_parser::{parse, parse_or_else};
17+
use ext::tt::macro_parser::parse;
1818
use parse::lexer::new_tt_reader;
1919
use parse::parser::Parser;
2020
use parse::token::{self, special_idents, gensym_ident, NtTT, Token};
@@ -211,13 +211,16 @@ fn generic_extension<'cx>(cx: &'cx ExtCtxt,
211211
best_fail_spot = sp;
212212
best_fail_msg = (*msg).clone();
213213
},
214-
Error(sp, ref msg) => panic!(cx.span_fatal(sp, &msg[..]))
214+
Error(err_sp, ref msg) => {
215+
panic!(cx.span_fatal(err_sp.substitute_dummy(sp), &msg[..]))
216+
}
215217
}
216218
}
217219
_ => cx.bug("non-matcher found in parsed lhses")
218220
}
219221
}
220-
panic!(cx.span_fatal(best_fail_spot, &best_fail_msg[..]));
222+
223+
panic!(cx.span_fatal(best_fail_spot.substitute_dummy(sp), &best_fail_msg[..]));
221224
}
222225

223226
// Note that macro-by-example's input is also matched against a token tree:
@@ -266,10 +269,17 @@ pub fn compile<'cx>(cx: &'cx mut ExtCtxt,
266269
None,
267270
None,
268271
def.body.clone());
269-
let argument_map = parse_or_else(cx.parse_sess(),
270-
cx.cfg(),
271-
arg_reader,
272-
argument_gram);
272+
273+
let argument_map = match parse(cx.parse_sess(),
274+
cx.cfg(),
275+
arg_reader,
276+
&argument_gram) {
277+
Success(m) => m,
278+
Failure(sp, str) | Error(sp, str) => {
279+
panic!(cx.parse_sess().span_diagnostic
280+
.span_fatal(sp.substitute_dummy(def.span), &str[..]));
281+
}
282+
};
273283

274284
// Extract the arguments:
275285
let lhses = match **argument_map.get(&lhs_nm).unwrap() {

src/test/compile-fail/issue-7970a.rs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright 2015 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+
fn main() {
12+
println!();
13+
//~^ ERROR unexpected end of macro invocation
14+
}

src/test/compile-fail/issue-7970b.rs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// Copyright 2015 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+
fn main() {}
12+
13+
macro_rules! test {}
14+
//~^ ERROR unexpected end of macro invocation

0 commit comments

Comments
 (0)