Skip to content

Commit

Permalink
syntax: Introduce Ident::can_be_raw
Browse files Browse the repository at this point in the history
  • Loading branch information
petrochenkov committed Mar 16, 2019
1 parent 5cb5083 commit 6ad55b3
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 36 deletions.
12 changes: 4 additions & 8 deletions src/libsyntax/parse/lexer/mod.rs
@@ -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
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
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
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
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
@@ -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
@@ -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
@@ -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
@@ -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
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 comments on commit 6ad55b3

Please sign in to comment.