Initial implementation of RFC 2151, Raw Identifiers

This commit is contained in:
Lymia Aluysia
2018-03-09 23:56:40 -06:00
parent 8aa27ee309
commit fad1648e0f
37 changed files with 475 additions and 145 deletions

View File

@@ -149,7 +149,7 @@ fn parse_args(ecx: &mut ExtCtxt,
if named || (p.token.is_ident() && p.look_ahead(1, |t| *t == token::Eq)) {
named = true;
let ident = match p.token {
token::Ident(i) => {
token::Ident(i, _) => {
p.bump();
i
}