10000 Do not accidentally treat multi-segment meta-items as single-segment by petrochenkov · Pull Request #58899 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Do not accidentally treat multi-segment meta-items as single-segment #58899

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Mar 17, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
syntax: Introduce Ident::can_be_raw
  • Loading branch information
petrochenkov committed Mar 16, 2019
commit 6ad55b3decefd53263f20a6c575aaa85c1edcbec
12 changes: 4 additions & 8 deletions src/libsyntax/parse/lexer/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::ast::{self, Ident};
use crate::source_map::{SourceMap, FilePathMapping};
use crate::parse::{token, ParseSess};
use crate::symbol::{Symbol, keywords};
use crate::symbol::Symbol;

use errors::{Applicability, FatalError, Diagnostic, DiagnosticBuilder};
use syntax_pos::{BytePos, CharPos, Pos, Span, NO_EXPANSION};
Expand Down Expand Up @@ -1249,15 +1249,11 @@ impl<'a> StringReader<'a> {
// FIXME: perform NFKC normalization here. (Issue #2253)
let ident = self.mk_ident(string);

if is_raw_ident && (ident.is_path_segment_keyword() ||
ident.name == keywords::Underscore.name()) {
self.fatal_span_(raw_start, self.pos,
&format!("`r#{}` is not currently supported.", ident.name)
).raise();
}

if is_raw_ident {
let span = self.mk_sp(raw_start, self.pos);
if !ident.can_be_raw() {
self.err_span(span, &format!("`{}` cannot be a raw identifier", ident));
}
self.sess.raw_identifier_spans.borrow_mut().push(span);
}

Expand Down
4 changes: 1 addition & 3 deletions src/libsyntax/parse/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -895,9 +895,7 @@ impl<'a> Parser<'a> {
&format!("expected identifier, found {}",
self.this_token_descr()));
if let token::Ident(ident, false) = &self.token {
if ident.is_reserved() && !ident.is_path_segment_keyword() &&
ident.name != keywords::Underscore.name()
{
if ident.is_raw_guess() {
err.span_suggestion(
self.span,
"you can escape reserved keywords to use them as identifiers",
Expand Down
4 changes: 2 additions & 2 deletions src/libsyntax_ext/proc_macro_decls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ impl<'a> CollectProcMacros<'a> {
}
};

if trait_ident.is_path_segment_keyword() {
if !trait_ident.can_be_raw() {
self.handler.span_err(trait_attr.span(),
&format!("`{}` cannot be a name of derive macro", trait_ident));
}
Expand Down Expand Up @@ -162,7 +162,7 @@ impl<'a> CollectProcMacros<'a> {
return None;
}
};
if ident.is_path_segment_keyword() {
if !ident.can_be_raw() {
self.handler.span_err(
attr.span(),
&format!("`{}` cannot be a name of derive helper attribute", ident),
Expand Down
8 changes: 2 additions & 6 deletions src/libsyntax_ext/proc_macro_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -340,12 +340,8 @@ impl Ident {
if !Self::is_valid(string) {
panic!("`{:?}` is not a valid identifier", string)
}
if is_raw {
let normalized_sym = Symbol::intern(string);
if normalized_sym == keywords::Underscore.name() ||
ast::Ident::with_empty_ctxt(normalized_sym).is_path_segment_keyword() {
panic!("`{:?}` is not a valid raw identifier", string)
}
if is_raw && !ast::Ident::from_str(string).can_be_raw() {
panic!("`{}` cannot be a raw identifier", string);
}
Ident { sym, is_raw, span }
}
Expand Down
13 changes: 9 additions & 4 deletions src/libsyntax_pos/symbol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -484,11 +484,16 @@ impl Ident {
self.name == keywords::DollarCrate.name()
}

// We see this identifier in a normal identifier position, like variable name or a type.
// How was it written originally? Did it use the raw form? Let's try to guess.
pub fn is_raw_guess(self) -> bool {
/// This identifier can be a raw identifier.
pub fn can_be_raw(self) -> bool {
self.name != keywords::Invalid.name() && self.name != keywords::Underscore.name() &&
self.is_reserved() && !self.is_path_segment_keyword()
!self.is_path_segment_keyword()
}

/// We see this identifier in a normal identifier position, like variable name or a type.
/// How was it written originally? Did it use the raw form? Let's try to guess.
pub fn is_raw_guess(self) -> bool {
self.can_be_raw() && self.is_reserved()
}
}

Expand Down
5 changes: 3 additions & 2 deletions src/test/ui/parser/raw/raw-literal-self.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
fn self_test(r#self: u32) {
//~^ ERROR `r#self` is not currently supported.
fn main() {
let r#self;
//~^ ERROR `self` cannot be a raw identifier
}
8 changes: 4 additions & 4 deletions src/test/ui/parser/raw/raw-literal-self.stderr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
error: `r#self` is not currently supported.
--> $DIR/raw-literal-self.rs:1:14
error: `self` cannot be a raw identifier
--> $DIR/raw-literal-self.rs:2:9
|
LL | fn self_test(r#self: u32) {
| ^^^^^^
LL | let r#self;
| ^^^^^^

error: aborting due to previous error

5 changes: 3 additions & 2 deletions src/test/ui/parser/raw/raw-literal-underscore.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
fn underscore_test(r#_: u32) {
//~^ ERROR `r#_` is not currently supported.
fn main() {
let r#_;
//~^ ERROR `_` cannot be a raw identifier
}
8 changes: 4 additions & 4 deletions src/test/ui/parser/raw/raw-literal-underscore.stderr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
error: `r#_` is not currently supported.
--> $DIR/raw-literal-underscore.rs:1:20
error: `_` cannot be a raw identifier
--> $DIR/raw-literal-underscore.rs:2:9
|
LL | fn underscore_test(r#_: u32) {
| ^^^
LL | let r#_;
| ^^^

error: aborting due to previous error

2 changes: 1 addition & 1 deletion src/test/ui/proc-macro/invalid-punct-ident-3.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ error: proc macro panicked
LL | invalid_raw_ident!();
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: message: `"self"` is not a valid raw identifier
= help: message: `self` cannot be a raw identifier

error: aborting due to previous error

0