1
Fork 0

rustc_parse: Remove Parser::normalized(_prev)_token

This commit is contained in:
Vadim Petrochenkov 2020-03-07 16:34:29 +03:00
parent 43b27df5b2
commit 5d7f67d3b1
2 changed files with 7 additions and 40 deletions

View file

@ -4,7 +4,7 @@
#![feature(crate_visibility_modifier)] #![feature(crate_visibility_modifier)]
use rustc_ast::ast; use rustc_ast::ast;
use rustc_ast::token::{self, Nonterminal, Token}; use rustc_ast::token::{self, Nonterminal};
use rustc_ast::tokenstream::{self, TokenStream, TokenTree}; use rustc_ast::tokenstream::{self, TokenStream, TokenTree};
use rustc_ast_pretty::pprust; use rustc_ast_pretty::pprust;
use rustc_data_structures::sync::Lrc; use rustc_data_structures::sync::Lrc;
@ -171,8 +171,7 @@ fn maybe_source_file_to_parser(
let mut parser = stream_to_parser(sess, stream, None); let mut parser = stream_to_parser(sess, stream, None);
parser.unclosed_delims = unclosed_delims; parser.unclosed_delims = unclosed_delims;
if parser.token == token::Eof { if parser.token == token::Eof {
let span = Span::new(end_pos, end_pos, parser.token.span.ctxt()); parser.token.span = Span::new(end_pos, end_pos, parser.token.span.ctxt());
parser.set_token(Token::new(token::Eof, span));
} }
Ok(parser) Ok(parser)

View file

@ -88,21 +88,10 @@ macro_rules! maybe_recover_from_interpolated_ty_qpath {
#[derive(Clone)] #[derive(Clone)]
pub struct Parser<'a> { pub struct Parser<'a> {
pub sess: &'a ParseSess, pub sess: &'a ParseSess,
/// The current non-normalized token. /// The current token.
pub token: Token, pub token: Token,
/// The current normalized token. /// The previous token.
/// "Normalized" means that some interpolated tokens
/// (`$i: ident` and `$l: lifetime` meta-variables) are replaced
/// with non-interpolated identifier and lifetime tokens they refer to.
/// Use this if you need to check for `token::Ident` or `token::Lifetime` specifically,
/// this also includes edition checks for edition-specific keyword identifiers.
pub normalized_token: Token,
/// The previous non-normalized token.
pub prev_token: Token, pub prev_token: Token,
/// The previous normalized token.
/// Use this if you need to check for `token::Ident` or `token::Lifetime` specifically,
/// this also includes edition checks for edition-specific keyword identifiers.
pub normalized_prev_token: Token,
restrictions: Restrictions, restrictions: Restrictions,
/// Used to determine the path to externally loaded source files. /// Used to determine the path to externally loaded source files.
pub(super) directory: Directory, pub(super) directory: Directory,
@ -374,9 +363,7 @@ impl<'a> Parser<'a> {
let mut parser = Parser { let mut parser = Parser {
sess, sess,
token: Token::dummy(), token: Token::dummy(),
normalized_token: Token::dummy(),
prev_token: Token::dummy(), prev_token: Token::dummy(),
normalized_prev_token: Token::dummy(),
restrictions: Restrictions::empty(), restrictions: Restrictions::empty(),
recurse_into_file_modules, recurse_into_file_modules,
directory: Directory { directory: Directory {
@ -609,7 +596,7 @@ impl<'a> Parser<'a> {
Some((first, second)) if first == expected => { Some((first, second)) if first == expected => {
let first_span = self.sess.source_map().start_point(self.token.span); let first_span = self.sess.source_map().start_point(self.token.span);
let second_span = self.token.span.with_lo(first_span.hi()); let second_span = self.token.span.with_lo(first_span.hi());
self.set_token(Token::new(first, first_span)); self.token = Token::new(first, first_span);
self.bump_with(Token::new(second, second_span)); self.bump_with(Token::new(second, second_span));
true true
} }
@ -817,23 +804,6 @@ impl<'a> Parser<'a> {
self.parse_delim_comma_seq(token::Paren, f) self.parse_delim_comma_seq(token::Paren, f)
} }
// Interpolated identifier (`$i: ident`) and lifetime (`$l: lifetime`)
// tokens are replaced with usual identifier and lifetime tokens,
// so the former are never encountered during normal parsing.
crate fn set_token(&mut self, token: Token) {
self.token = token;
self.normalized_token = match &self.token.kind {
token::Interpolated(nt) => match **nt {
token::NtIdent(ident, is_raw) => {
Token::new(token::Ident(ident.name, is_raw), ident.span)
}
token::NtLifetime(ident) => Token::new(token::Lifetime(ident.name), ident.span),
_ => self.token.clone(),
},
_ => self.token.clone(),
}
}
/// Advance the parser by one token using provided token as the next one. /// Advance the parser by one token using provided token as the next one.
fn bump_with(&mut self, next_token: Token) { fn bump_with(&mut self, next_token: Token) {
// Bumping after EOF is a bad sign, usually an infinite loop. // Bumping after EOF is a bad sign, usually an infinite loop.
@ -843,9 +813,7 @@ impl<'a> Parser<'a> {
} }
// Update the current and previous tokens. // Update the current and previous tokens.
self.prev_token = self.token.take(); self.prev_token = mem::replace(&mut self.token, next_token);
self.normalized_prev_token = self.normalized_token.take();
self.set_token(next_token);
// Diagnostics. // Diagnostics.
self.expected_tokens.clear(); self.expected_tokens.clear();
@ -1005,7 +973,7 @@ impl<'a> Parser<'a> {
&mut self.token_cursor.frame, &mut self.token_cursor.frame,
self.token_cursor.stack.pop().unwrap(), self.token_cursor.stack.pop().unwrap(),
); );
self.set_token(Token::new(TokenKind::CloseDelim(frame.delim), frame.span.close)); self.token = Token::new(TokenKind::CloseDelim(frame.delim), frame.span.close);
self.bump(); self.bump();
TokenTree::Delimited(frame.span, frame.delim, frame.tree_cursor.stream) TokenTree::Delimited(frame.span, frame.delim, frame.tree_cursor.stream)
} }