2019-12-05 06:38:06 +01:00
|
|
|
use rustc_data_structures::sync::Lrc;
|
|
|
|
use rustc_errors::{FatalError, DiagnosticBuilder};
|
|
|
|
use rustc_lexer::Base;
|
|
|
|
use rustc_lexer::unescape;
|
2019-10-15 22:48:13 +02:00
|
|
|
use syntax::token::{self, Token, TokenKind};
|
|
|
|
use syntax::sess::ParseSess;
|
|
|
|
use syntax::util::comments;
|
2019-12-05 06:38:06 +01:00
|
|
|
use syntax_pos::symbol::{sym, Symbol};
|
2019-08-11 01:44:55 +03:00
|
|
|
use syntax_pos::{BytePos, Pos, Span};
|
2014-05-21 16:57:31 -07:00
|
|
|
|
|
|
|
use std::char;
|
2019-05-06 11:53:40 +03:00
|
|
|
use std::convert::TryInto;
|
2019-02-07 02:33:01 +09:00
|
|
|
use log::debug;
|
2014-05-21 16:57:31 -07:00
|
|
|
|
2017-01-12 23:32:00 +00:00
|
|
|
mod tokentrees;
|
2015-11-15 02:37:49 +05:30
|
|
|
mod unicode_chars;
|
2019-10-11 12:32:18 +02:00
|
|
|
mod unescape_error_reporting;
|
|
|
|
use unescape_error_reporting::{emit_unescape_error, push_escaped_char};
|
2014-05-21 16:57:31 -07:00
|
|
|
|
2019-01-27 21:04:50 -08:00
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct UnmatchedBrace {
|
|
|
|
pub expected_delim: token::DelimToken,
|
2019-10-25 18:30:02 -07:00
|
|
|
pub found_delim: Option<token::DelimToken>,
|
2019-01-27 21:04:50 -08:00
|
|
|
pub found_span: Span,
|
|
|
|
pub unclosed_span: Option<Span>,
|
|
|
|
pub candidate_span: Option<Span>,
|
|
|
|
}
|
|
|
|
|
2014-05-21 16:57:31 -07:00
|
|
|
pub struct StringReader<'a> {
|
2019-07-31 19:55:01 +03:00
|
|
|
sess: &'a ParseSess,
|
|
|
|
/// Initial position, read-only.
|
|
|
|
start_pos: BytePos,
|
|
|
|
/// The absolute offset within the source_map of the current character.
|
2019-10-10 10:26:10 +02:00
|
|
|
// FIXME(#64197): `pub` is needed by tests for now.
|
|
|
|
pub pos: BytePos,
|
2018-05-09 12:55:13 +10:00
|
|
|
/// Stop reading src at this index.
|
2019-07-31 19:55:01 +03:00
|
|
|
end_src_index: usize,
|
|
|
|
/// Source text to tokenize.
|
2018-05-09 12:49:39 +10:00
|
|
|
src: Lrc<String>,
|
2019-05-12 19:55:16 +03:00
|
|
|
override_span: Option<Span>,
|
2017-03-15 00:22:48 +00:00
|
|
|
}
|
|
|
|
|
2017-01-12 23:32:00 +00:00
|
|
|
impl<'a> StringReader<'a> {
|
2019-07-03 13:31:52 +03:00
|
|
|
pub fn new(sess: &'a ParseSess,
|
|
|
|
source_file: Lrc<syntax_pos::SourceFile>,
|
|
|
|
override_span: Option<Span>) -> Self {
|
2019-05-06 11:53:40 +03:00
|
|
|
if source_file.src.is_none() {
|
2019-09-30 01:05:00 +01:00
|
|
|
sess.span_diagnostic.bug(&format!("cannot lex `source_file` without source: {}",
|
2019-05-06 11:53:40 +03:00
|
|
|
source_file.name));
|
|
|
|
}
|
|
|
|
|
|
|
|
let src = (*source_file.src.as_ref().unwrap()).clone();
|
|
|
|
|
|
|
|
StringReader {
|
|
|
|
sess,
|
2019-07-31 19:55:01 +03:00
|
|
|
start_pos: source_file.start_pos,
|
2019-05-06 11:53:40 +03:00
|
|
|
pos: source_file.start_pos,
|
|
|
|
end_src_index: src.len(),
|
|
|
|
src,
|
|
|
|
override_span,
|
|
|
|
}
|
2019-07-03 13:31:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn retokenize(sess: &'a ParseSess, mut span: Span) -> Self {
|
|
|
|
let begin = sess.source_map().lookup_byte_offset(span.lo());
|
|
|
|
let end = sess.source_map().lookup_byte_offset(span.hi());
|
|
|
|
|
|
|
|
// Make the range zero-length if the span is invalid.
|
2019-11-01 23:24:07 +03:00
|
|
|
if begin.sf.start_pos != end.sf.start_pos {
|
2019-07-03 13:31:52 +03:00
|
|
|
span = span.shrink_to_lo();
|
|
|
|
}
|
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
let mut sr = StringReader::new(sess, begin.sf, None);
|
2019-07-03 13:31:52 +03:00
|
|
|
|
|
|
|
// Seek the lexer to the right byte range.
|
|
|
|
sr.end_src_index = sr.src_index(span.hi());
|
|
|
|
|
|
|
|
sr
|
2018-05-17 09:30:43 -07:00
|
|
|
}
|
2018-08-12 15:43:51 +02:00
|
|
|
|
|
|
|
|
2017-03-28 05:32:43 +00:00
|
|
|
fn mk_sp(&self, lo: BytePos, hi: BytePos) -> Span {
|
2019-08-11 01:44:55 +03:00
|
|
|
self.override_span.unwrap_or_else(|| Span::with_root_ctxt(lo, hi))
|
2017-03-28 05:32:43 +00:00
|
|
|
}
|
2018-08-12 15:43:51 +02:00
|
|
|
|
2019-07-03 14:06:10 +03:00
|
|
|
/// Returns the next token, including trivia like whitespace or comments.
|
|
|
|
///
|
|
|
|
/// `Err(())` means that some errors were encountered, which can be
|
|
|
|
/// retrieved using `buffer_fatal_errors`.
|
2019-07-30 12:33:32 +03:00
|
|
|
pub fn next_token(&mut self) -> Token {
|
2019-05-06 11:53:40 +03:00
|
|
|
let start_src_index = self.src_index(self.pos);
|
|
|
|
let text: &str = &self.src[start_src_index..self.end_src_index];
|
|
|
|
|
|
|
|
if text.is_empty() {
|
2019-07-31 19:55:01 +03:00
|
|
|
let span = self.mk_sp(self.pos, self.pos);
|
2019-07-30 12:33:32 +03:00
|
|
|
return Token::new(token::Eof, span);
|
2019-05-06 11:53:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2019-07-31 19:55:01 +03:00
|
|
|
let is_beginning_of_file = self.pos == self.start_pos;
|
2019-05-06 11:53:40 +03:00
|
|
|
if is_beginning_of_file {
|
|
|
|
if let Some(shebang_len) = rustc_lexer::strip_shebang(text) {
|
|
|
|
let start = self.pos;
|
|
|
|
self.pos = self.pos + BytePos::from_usize(shebang_len);
|
|
|
|
|
|
|
|
let sym = self.symbol_from(start + BytePos::from_usize("#!".len()));
|
|
|
|
let kind = token::Shebang(sym);
|
|
|
|
|
|
|
|
let span = self.mk_sp(start, self.pos);
|
2019-07-30 12:33:32 +03:00
|
|
|
return Token::new(kind, span);
|
2019-05-06 11:53:40 +03:00
|
|
|
}
|
2017-01-12 23:32:00 +00:00
|
|
|
}
|
|
|
|
}
|
2019-05-06 11:53:40 +03:00
|
|
|
|
|
|
|
let token = rustc_lexer::first_token(text);
|
|
|
|
|
|
|
|
let start = self.pos;
|
|
|
|
self.pos = self.pos + BytePos::from_usize(token.len);
|
|
|
|
|
|
|
|
debug!("try_next_token: {:?}({:?})", token.kind, self.str_from(start));
|
|
|
|
|
|
|
|
// This could use `?`, but that makes code significantly (10-20%) slower.
|
|
|
|
// https://github.com/rust-lang/rust/issues/37939
|
2019-07-30 12:33:32 +03:00
|
|
|
let kind = self.cook_lexer_token(token.kind, start);
|
2019-05-06 11:53:40 +03:00
|
|
|
|
|
|
|
let span = self.mk_sp(start, self.pos);
|
2019-07-30 12:33:32 +03:00
|
|
|
Token::new(kind, span)
|
2018-11-01 11:57:29 -05:00
|
|
|
}
|
|
|
|
|
2014-05-24 01:12:22 -07:00
|
|
|
/// Report a fatal lexical error with a given span.
|
2018-05-31 16:53:30 -06:00
|
|
|
fn fatal_span(&self, sp: Span, m: &str) -> FatalError {
|
2017-01-17 01:14:53 +00:00
|
|
|
self.sess.span_diagnostic.span_fatal(sp, m)
|
2014-05-21 16:57:31 -07:00
|
|
|
}
|
|
|
|
|
2014-05-24 01:12:22 -07:00
|
|
|
/// Report a lexical error with a given span.
|
2018-05-31 16:53:30 -06:00
|
|
|
fn err_span(&self, sp: Span, m: &str) {
|
2019-01-11 19:56:41 -08:00
|
|
|
self.sess.span_diagnostic.struct_span_err(sp, m).emit();
|
2014-05-24 01:12:22 -07:00
|
|
|
}
|
|
|
|
|
2015-07-10 21:37:21 +03:00
|
|
|
|
2014-05-24 01:12:22 -07:00
|
|
|
/// Report a fatal error spanning [`from_pos`, `to_pos`).
|
2015-10-23 19:20:03 -07:00
|
|
|
fn fatal_span_(&self, from_pos: BytePos, to_pos: BytePos, m: &str) -> FatalError {
|
2017-03-28 05:32:43 +00:00
|
|
|
self.fatal_span(self.mk_sp(from_pos, to_pos), m)
|
2014-05-24 01:12:22 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Report a lexical error spanning [`from_pos`, `to_pos`).
|
|
|
|
fn err_span_(&self, from_pos: BytePos, to_pos: BytePos, m: &str) {
|
2017-03-28 05:32:43 +00:00
|
|
|
self.err_span(self.mk_sp(from_pos, to_pos), m)
|
2014-05-21 16:57:31 -07:00
|
|
|
}
|
|
|
|
|
2018-08-12 15:43:51 +02:00
|
|
|
fn struct_span_fatal(&self, from_pos: BytePos, to_pos: BytePos, m: &str)
|
|
|
|
-> DiagnosticBuilder<'a>
|
|
|
|
{
|
2018-02-26 15:04:40 +01:00
|
|
|
self.sess.span_diagnostic.struct_span_fatal(self.mk_sp(from_pos, to_pos), m)
|
|
|
|
}
|
|
|
|
|
2018-08-12 15:43:51 +02:00
|
|
|
fn struct_fatal_span_char(&self, from_pos: BytePos, to_pos: BytePos, m: &str, c: char)
|
|
|
|
-> DiagnosticBuilder<'a>
|
|
|
|
{
|
2015-12-21 10:00:43 +13:00
|
|
|
let mut m = m.to_string();
|
|
|
|
m.push_str(": ");
|
2019-04-25 11:48:25 +03:00
|
|
|
push_escaped_char(&mut m, c);
|
2018-08-12 15:43:51 +02:00
|
|
|
|
2017-03-28 05:32:43 +00:00
|
|
|
self.sess.span_diagnostic.struct_span_fatal(self.mk_sp(from_pos, to_pos), &m[..])
|
2015-12-21 10:00:43 +13:00
|
|
|
}
|
2014-05-21 16:57:31 -07:00
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
/// Turns simple `rustc_lexer::TokenKind` enum into a rich
|
|
|
|
/// `libsyntax::TokenKind`. This turns strings into interned
|
|
|
|
/// symbols and runs additional validation.
|
|
|
|
fn cook_lexer_token(
|
|
|
|
&self,
|
|
|
|
token: rustc_lexer::TokenKind,
|
|
|
|
start: BytePos,
|
2019-07-30 12:33:32 +03:00
|
|
|
) -> TokenKind {
|
|
|
|
match token {
|
2019-05-06 11:53:40 +03:00
|
|
|
rustc_lexer::TokenKind::LineComment => {
|
|
|
|
let string = self.str_from(start);
|
|
|
|
// comments with only more "/"s are not doc comments
|
2019-10-11 14:39:52 +02:00
|
|
|
let tok = if comments::is_line_doc_comment(string) {
|
2019-08-14 16:38:40 +03:00
|
|
|
self.forbid_bare_cr(start, string, "bare CR not allowed in doc-comment");
|
2019-05-06 11:53:40 +03:00
|
|
|
token::DocComment(Symbol::intern(string))
|
|
|
|
} else {
|
|
|
|
token::Comment
|
|
|
|
};
|
|
|
|
|
|
|
|
tok
|
|
|
|
}
|
|
|
|
rustc_lexer::TokenKind::BlockComment { terminated } => {
|
|
|
|
let string = self.str_from(start);
|
|
|
|
// block comments starting with "/**" or "/*!" are doc-comments
|
|
|
|
// but comments with only "*"s between two "/"s are not
|
2019-10-11 14:39:52 +02:00
|
|
|
let is_doc_comment = comments::is_block_doc_comment(string);
|
2019-05-06 11:53:40 +03:00
|
|
|
|
|
|
|
if !terminated {
|
|
|
|
let msg = if is_doc_comment {
|
|
|
|
"unterminated block doc-comment"
|
|
|
|
} else {
|
|
|
|
"unterminated block comment"
|
|
|
|
};
|
|
|
|
let last_bpos = self.pos;
|
|
|
|
self.fatal_span_(start, last_bpos, msg).raise();
|
|
|
|
}
|
|
|
|
|
|
|
|
let tok = if is_doc_comment {
|
2019-08-14 16:38:40 +03:00
|
|
|
self.forbid_bare_cr(start,
|
|
|
|
string,
|
|
|
|
"bare CR not allowed in block doc-comment");
|
|
|
|
token::DocComment(Symbol::intern(string))
|
2019-05-06 11:53:40 +03:00
|
|
|
} else {
|
|
|
|
token::Comment
|
|
|
|
};
|
|
|
|
|
|
|
|
tok
|
|
|
|
}
|
|
|
|
rustc_lexer::TokenKind::Whitespace => token::Whitespace,
|
|
|
|
rustc_lexer::TokenKind::Ident | rustc_lexer::TokenKind::RawIdent => {
|
|
|
|
let is_raw_ident = token == rustc_lexer::TokenKind::RawIdent;
|
|
|
|
let mut ident_start = start;
|
|
|
|
if is_raw_ident {
|
|
|
|
ident_start = ident_start + BytePos(2);
|
|
|
|
}
|
|
|
|
// FIXME: perform NFKC normalization here. (Issue #2253)
|
|
|
|
let sym = self.symbol_from(ident_start);
|
|
|
|
if is_raw_ident {
|
|
|
|
let span = self.mk_sp(start, self.pos);
|
|
|
|
if !sym.can_be_raw() {
|
|
|
|
self.err_span(span, &format!("`{}` cannot be a raw identifier", sym));
|
|
|
|
}
|
|
|
|
self.sess.raw_identifier_spans.borrow_mut().push(span);
|
|
|
|
}
|
|
|
|
token::Ident(sym, is_raw_ident)
|
|
|
|
}
|
|
|
|
rustc_lexer::TokenKind::Literal { kind, suffix_start } => {
|
|
|
|
let suffix_start = start + BytePos(suffix_start as u32);
|
|
|
|
let (kind, symbol) = self.cook_lexer_literal(start, suffix_start, kind);
|
|
|
|
let suffix = if suffix_start < self.pos {
|
|
|
|
let string = self.str_from(suffix_start);
|
|
|
|
if string == "_" {
|
|
|
|
self.sess.span_diagnostic
|
|
|
|
.struct_span_warn(self.mk_sp(suffix_start, self.pos),
|
|
|
|
"underscore literal suffix is not allowed")
|
|
|
|
.warn("this was previously accepted by the compiler but is \
|
|
|
|
being phased out; it will become a hard error in \
|
|
|
|
a future release!")
|
|
|
|
.note("for more information, see issue #42326 \
|
|
|
|
<https://github.com/rust-lang/rust/issues/42326>")
|
|
|
|
.emit();
|
|
|
|
None
|
|
|
|
} else {
|
|
|
|
Some(Symbol::intern(string))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
token::Literal(token::Lit { kind, symbol, suffix })
|
|
|
|
}
|
|
|
|
rustc_lexer::TokenKind::Lifetime { starts_with_number } => {
|
|
|
|
// Include the leading `'` in the real identifier, for macro
|
|
|
|
// expansion purposes. See #12512 for the gory details of why
|
|
|
|
// this is necessary.
|
|
|
|
let lifetime_name = self.str_from(start);
|
|
|
|
if starts_with_number {
|
|
|
|
self.err_span_(
|
|
|
|
start,
|
|
|
|
self.pos,
|
|
|
|
"lifetimes cannot start with a number",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
let ident = Symbol::intern(lifetime_name);
|
|
|
|
token::Lifetime(ident)
|
|
|
|
}
|
|
|
|
rustc_lexer::TokenKind::Semi => token::Semi,
|
|
|
|
rustc_lexer::TokenKind::Comma => token::Comma,
|
|
|
|
rustc_lexer::TokenKind::Dot => token::Dot,
|
|
|
|
rustc_lexer::TokenKind::OpenParen => token::OpenDelim(token::Paren),
|
|
|
|
rustc_lexer::TokenKind::CloseParen => token::CloseDelim(token::Paren),
|
|
|
|
rustc_lexer::TokenKind::OpenBrace => token::OpenDelim(token::Brace),
|
|
|
|
rustc_lexer::TokenKind::CloseBrace => token::CloseDelim(token::Brace),
|
|
|
|
rustc_lexer::TokenKind::OpenBracket => token::OpenDelim(token::Bracket),
|
|
|
|
rustc_lexer::TokenKind::CloseBracket => token::CloseDelim(token::Bracket),
|
|
|
|
rustc_lexer::TokenKind::At => token::At,
|
|
|
|
rustc_lexer::TokenKind::Pound => token::Pound,
|
|
|
|
rustc_lexer::TokenKind::Tilde => token::Tilde,
|
|
|
|
rustc_lexer::TokenKind::Question => token::Question,
|
|
|
|
rustc_lexer::TokenKind::Colon => token::Colon,
|
|
|
|
rustc_lexer::TokenKind::Dollar => token::Dollar,
|
|
|
|
rustc_lexer::TokenKind::Eq => token::Eq,
|
|
|
|
rustc_lexer::TokenKind::Not => token::Not,
|
|
|
|
rustc_lexer::TokenKind::Lt => token::Lt,
|
|
|
|
rustc_lexer::TokenKind::Gt => token::Gt,
|
|
|
|
rustc_lexer::TokenKind::Minus => token::BinOp(token::Minus),
|
|
|
|
rustc_lexer::TokenKind::And => token::BinOp(token::And),
|
|
|
|
rustc_lexer::TokenKind::Or => token::BinOp(token::Or),
|
|
|
|
rustc_lexer::TokenKind::Plus => token::BinOp(token::Plus),
|
|
|
|
rustc_lexer::TokenKind::Star => token::BinOp(token::Star),
|
|
|
|
rustc_lexer::TokenKind::Slash => token::BinOp(token::Slash),
|
|
|
|
rustc_lexer::TokenKind::Caret => token::BinOp(token::Caret),
|
|
|
|
rustc_lexer::TokenKind::Percent => token::BinOp(token::Percent),
|
|
|
|
|
|
|
|
rustc_lexer::TokenKind::Unknown => {
|
|
|
|
let c = self.str_from(start).chars().next().unwrap();
|
|
|
|
let mut err = self.struct_fatal_span_char(start,
|
|
|
|
self.pos,
|
|
|
|
"unknown start of token",
|
|
|
|
c);
|
2019-07-25 11:22:46 -07:00
|
|
|
// FIXME: the lexer could be used to turn the ASCII version of unicode homoglyphs,
|
|
|
|
// instead of keeping a table in `check_for_substitution`into the token. Ideally,
|
|
|
|
// this should be inside `rustc_lexer`. However, we should first remove compound
|
|
|
|
// tokens like `<<` from `rustc_lexer`, and then add fancier error recovery to it,
|
|
|
|
// as there will be less overall work to do this way.
|
2019-07-30 12:33:32 +03:00
|
|
|
let token = unicode_chars::check_for_substitution(self, start, c, &mut err)
|
2019-07-30 12:31:41 +03:00
|
|
|
.unwrap_or_else(|| token::Unknown(self.symbol_from(start)));
|
2019-07-30 12:33:32 +03:00
|
|
|
err.emit();
|
|
|
|
token
|
2019-05-06 11:53:40 +03:00
|
|
|
}
|
2019-07-30 12:33:32 +03:00
|
|
|
}
|
2019-05-06 11:53:40 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn cook_lexer_literal(
|
|
|
|
&self,
|
|
|
|
start: BytePos,
|
|
|
|
suffix_start: BytePos,
|
|
|
|
kind: rustc_lexer::LiteralKind
|
|
|
|
) -> (token::LitKind, Symbol) {
|
|
|
|
match kind {
|
|
|
|
rustc_lexer::LiteralKind::Char { terminated } => {
|
|
|
|
if !terminated {
|
|
|
|
self.fatal_span_(start, suffix_start,
|
|
|
|
"unterminated character literal".into())
|
|
|
|
.raise()
|
|
|
|
}
|
|
|
|
let content_start = start + BytePos(1);
|
|
|
|
let content_end = suffix_start - BytePos(1);
|
|
|
|
self.validate_char_escape(content_start, content_end);
|
|
|
|
let id = self.symbol_from_to(content_start, content_end);
|
|
|
|
(token::Char, id)
|
|
|
|
},
|
|
|
|
rustc_lexer::LiteralKind::Byte { terminated } => {
|
|
|
|
if !terminated {
|
|
|
|
self.fatal_span_(start + BytePos(1), suffix_start,
|
|
|
|
"unterminated byte constant".into())
|
|
|
|
.raise()
|
|
|
|
}
|
|
|
|
let content_start = start + BytePos(2);
|
|
|
|
let content_end = suffix_start - BytePos(1);
|
|
|
|
self.validate_byte_escape(content_start, content_end);
|
|
|
|
let id = self.symbol_from_to(content_start, content_end);
|
|
|
|
(token::Byte, id)
|
|
|
|
},
|
|
|
|
rustc_lexer::LiteralKind::Str { terminated } => {
|
|
|
|
if !terminated {
|
|
|
|
self.fatal_span_(start, suffix_start,
|
|
|
|
"unterminated double quote string".into())
|
|
|
|
.raise()
|
|
|
|
}
|
|
|
|
let content_start = start + BytePos(1);
|
|
|
|
let content_end = suffix_start - BytePos(1);
|
|
|
|
self.validate_str_escape(content_start, content_end);
|
|
|
|
let id = self.symbol_from_to(content_start, content_end);
|
|
|
|
(token::Str, id)
|
|
|
|
}
|
|
|
|
rustc_lexer::LiteralKind::ByteStr { terminated } => {
|
|
|
|
if !terminated {
|
|
|
|
self.fatal_span_(start + BytePos(1), suffix_start,
|
|
|
|
"unterminated double quote byte string".into())
|
|
|
|
.raise()
|
|
|
|
}
|
|
|
|
let content_start = start + BytePos(2);
|
|
|
|
let content_end = suffix_start - BytePos(1);
|
|
|
|
self.validate_byte_str_escape(content_start, content_end);
|
|
|
|
let id = self.symbol_from_to(content_start, content_end);
|
|
|
|
(token::ByteStr, id)
|
|
|
|
}
|
|
|
|
rustc_lexer::LiteralKind::RawStr { n_hashes, started, terminated } => {
|
|
|
|
if !started {
|
|
|
|
self.report_non_started_raw_string(start);
|
|
|
|
}
|
|
|
|
if !terminated {
|
|
|
|
self.report_unterminated_raw_string(start, n_hashes)
|
|
|
|
}
|
|
|
|
let n_hashes: u16 = self.restrict_n_hashes(start, n_hashes);
|
|
|
|
let n = u32::from(n_hashes);
|
|
|
|
let content_start = start + BytePos(2 + n);
|
|
|
|
let content_end = suffix_start - BytePos(1 + n);
|
|
|
|
self.validate_raw_str_escape(content_start, content_end);
|
|
|
|
let id = self.symbol_from_to(content_start, content_end);
|
|
|
|
(token::StrRaw(n_hashes), id)
|
|
|
|
}
|
|
|
|
rustc_lexer::LiteralKind::RawByteStr { n_hashes, started, terminated } => {
|
|
|
|
if !started {
|
|
|
|
self.report_non_started_raw_string(start);
|
|
|
|
}
|
|
|
|
if !terminated {
|
|
|
|
self.report_unterminated_raw_string(start, n_hashes)
|
|
|
|
}
|
|
|
|
let n_hashes: u16 = self.restrict_n_hashes(start, n_hashes);
|
|
|
|
let n = u32::from(n_hashes);
|
|
|
|
let content_start = start + BytePos(3 + n);
|
|
|
|
let content_end = suffix_start - BytePos(1 + n);
|
|
|
|
self.validate_raw_byte_str_escape(content_start, content_end);
|
|
|
|
let id = self.symbol_from_to(content_start, content_end);
|
|
|
|
(token::ByteStrRaw(n_hashes), id)
|
|
|
|
}
|
|
|
|
rustc_lexer::LiteralKind::Int { base, empty_int } => {
|
|
|
|
if empty_int {
|
|
|
|
self.err_span_(start, suffix_start, "no valid digits found for number");
|
|
|
|
(token::Integer, sym::integer(0))
|
|
|
|
} else {
|
|
|
|
self.validate_int_literal(base, start, suffix_start);
|
|
|
|
(token::Integer, self.symbol_from_to(start, suffix_start))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
rustc_lexer::LiteralKind::Float { base, empty_exponent } => {
|
|
|
|
if empty_exponent {
|
|
|
|
let mut err = self.struct_span_fatal(
|
|
|
|
start, self.pos,
|
|
|
|
"expected at least one digit in exponent"
|
|
|
|
);
|
|
|
|
err.emit();
|
|
|
|
}
|
|
|
|
|
|
|
|
match base {
|
|
|
|
Base::Hexadecimal => {
|
|
|
|
self.err_span_(start, suffix_start,
|
|
|
|
"hexadecimal float literal is not supported")
|
|
|
|
}
|
|
|
|
Base::Octal => {
|
|
|
|
self.err_span_(start, suffix_start,
|
|
|
|
"octal float literal is not supported")
|
|
|
|
}
|
|
|
|
Base::Binary => {
|
|
|
|
self.err_span_(start, suffix_start,
|
|
|
|
"binary float literal is not supported")
|
|
|
|
}
|
|
|
|
_ => ()
|
|
|
|
}
|
|
|
|
|
|
|
|
let id = self.symbol_from_to(start, suffix_start);
|
|
|
|
(token::Float, id)
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-09 12:49:39 +10:00
|
|
|
#[inline]
|
|
|
|
fn src_index(&self, pos: BytePos) -> usize {
|
2019-07-31 19:55:01 +03:00
|
|
|
(pos - self.start_pos).to_usize()
|
2014-05-21 16:57:31 -07:00
|
|
|
}
|
|
|
|
|
2019-06-25 21:02:19 +03:00
|
|
|
/// Slice of the source text from `start` up to but excluding `self.pos`,
|
|
|
|
/// meaning the slice does not include the character `self.ch`.
|
|
|
|
fn str_from(&self, start: BytePos) -> &str
|
2014-12-08 13:28:32 -05:00
|
|
|
{
|
2019-06-25 21:02:19 +03:00
|
|
|
self.str_from_to(start, self.pos)
|
2014-05-21 16:57:31 -07:00
|
|
|
}
|
|
|
|
|
2019-06-25 21:37:25 +03:00
|
|
|
/// Creates a Symbol from a given offset to the current offset.
|
|
|
|
fn symbol_from(&self, start: BytePos) -> Symbol {
|
2016-10-04 11:46:54 +11:00
|
|
|
debug!("taking an ident from {:?} to {:?}", start, self.pos);
|
2019-06-25 21:02:19 +03:00
|
|
|
Symbol::intern(self.str_from(start))
|
2014-06-24 17:44:50 -07:00
|
|
|
}
|
|
|
|
|
2019-06-25 21:37:25 +03:00
|
|
|
/// As symbol_from, with an explicit endpoint.
|
|
|
|
fn symbol_from_to(&self, start: BytePos, end: BytePos) -> Symbol {
|
2014-12-20 00:09:35 -08:00
|
|
|
debug!("taking an ident from {:?} to {:?}", start, end);
|
2019-06-25 21:02:19 +03:00
|
|
|
Symbol::intern(self.str_from_to(start, end))
|
2014-06-24 17:44:50 -07:00
|
|
|
}
|
|
|
|
|
2019-06-25 21:02:19 +03:00
|
|
|
/// Slice of the source text spanning from `start` up to but excluding `end`.
|
|
|
|
fn str_from_to(&self, start: BytePos, end: BytePos) -> &str
|
2014-12-08 13:28:32 -05:00
|
|
|
{
|
2019-06-25 21:02:19 +03:00
|
|
|
&self.src[self.src_index(start)..self.src_index(end)]
|
2014-05-21 16:57:31 -07:00
|
|
|
}
|
|
|
|
|
2019-08-14 16:38:40 +03:00
|
|
|
fn forbid_bare_cr(&self, start: BytePos, s: &str, errmsg: &str) {
|
|
|
|
let mut idx = 0;
|
|
|
|
loop {
|
|
|
|
idx = match s[idx..].find('\r') {
|
|
|
|
None => break,
|
|
|
|
Some(it) => idx + it + 1
|
|
|
|
};
|
|
|
|
self.err_span_(start + BytePos(idx as u32 - 1),
|
|
|
|
start + BytePos(idx as u32),
|
|
|
|
errmsg);
|
2014-05-24 01:13:59 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
fn report_non_started_raw_string(&self, start: BytePos) -> ! {
|
|
|
|
let bad_char = self.str_from(start).chars().last().unwrap();
|
|
|
|
self
|
|
|
|
.struct_fatal_span_char(
|
|
|
|
start,
|
|
|
|
self.pos,
|
|
|
|
"found invalid character; only `#` is allowed \
|
|
|
|
in raw string delimitation",
|
|
|
|
bad_char,
|
|
|
|
)
|
|
|
|
.emit();
|
|
|
|
FatalError.raise()
|
2014-05-21 16:57:31 -07:00
|
|
|
}
|
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
fn report_unterminated_raw_string(&self, start: BytePos, n_hashes: usize) -> ! {
|
|
|
|
let mut err = self.struct_span_fatal(
|
|
|
|
start, start,
|
|
|
|
"unterminated raw string",
|
|
|
|
);
|
|
|
|
err.span_label(
|
|
|
|
self.mk_sp(start, start),
|
|
|
|
"unterminated raw string",
|
|
|
|
);
|
2014-07-02 09:39:48 -07:00
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
if n_hashes > 0 {
|
|
|
|
err.note(&format!("this raw string should be terminated with `\"{}`",
|
|
|
|
"#".repeat(n_hashes as usize)));
|
2019-04-25 11:48:25 +03:00
|
|
|
}
|
2014-07-02 09:39:48 -07:00
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
err.emit();
|
|
|
|
FatalError.raise()
|
2014-07-02 09:39:48 -07:00
|
|
|
}
|
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
fn restrict_n_hashes(&self, start: BytePos, n_hashes: usize) -> u16 {
|
|
|
|
match n_hashes.try_into() {
|
|
|
|
Ok(n_hashes) => n_hashes,
|
|
|
|
Err(_) => {
|
|
|
|
self.fatal_span_(start,
|
|
|
|
self.pos,
|
2019-05-13 11:42:12 +02:00
|
|
|
"too many `#` symbols: raw strings may be \
|
2019-05-06 11:53:40 +03:00
|
|
|
delimited by up to 65535 `#` symbols").raise();
|
2014-07-02 09:39:48 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-25 11:48:25 +03:00
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
fn validate_char_escape(&self, content_start: BytePos, content_end: BytePos) {
|
|
|
|
let lit = self.str_from_to(content_start, content_end);
|
2019-06-25 21:02:19 +03:00
|
|
|
if let Err((off, err)) = unescape::unescape_char(lit) {
|
|
|
|
emit_unescape_error(
|
|
|
|
&self.sess.span_diagnostic,
|
|
|
|
lit,
|
2019-05-06 11:53:40 +03:00
|
|
|
self.mk_sp(content_start - BytePos(1), content_end + BytePos(1)),
|
2019-06-25 21:02:19 +03:00
|
|
|
unescape::Mode::Char,
|
|
|
|
0..off,
|
|
|
|
err,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
fn validate_byte_escape(&self, content_start: BytePos, content_end: BytePos) {
|
|
|
|
let lit = self.str_from_to(content_start, content_end);
|
2019-06-25 21:02:19 +03:00
|
|
|
if let Err((off, err)) = unescape::unescape_byte(lit) {
|
|
|
|
emit_unescape_error(
|
|
|
|
&self.sess.span_diagnostic,
|
|
|
|
lit,
|
2019-05-06 11:53:40 +03:00
|
|
|
self.mk_sp(content_start - BytePos(1), content_end + BytePos(1)),
|
2019-06-25 21:02:19 +03:00
|
|
|
unescape::Mode::Byte,
|
|
|
|
0..off,
|
|
|
|
err,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
fn validate_str_escape(&self, content_start: BytePos, content_end: BytePos) {
|
|
|
|
let lit = self.str_from_to(content_start, content_end);
|
2019-06-25 21:02:19 +03:00
|
|
|
unescape::unescape_str(lit, &mut |range, c| {
|
|
|
|
if let Err(err) = c {
|
2019-04-25 11:48:25 +03:00
|
|
|
emit_unescape_error(
|
|
|
|
&self.sess.span_diagnostic,
|
|
|
|
lit,
|
2019-05-06 11:53:40 +03:00
|
|
|
self.mk_sp(content_start - BytePos(1), content_end + BytePos(1)),
|
2019-06-25 21:02:19 +03:00
|
|
|
unescape::Mode::Str,
|
|
|
|
range,
|
2019-04-25 11:48:25 +03:00
|
|
|
err,
|
|
|
|
)
|
|
|
|
}
|
2019-06-25 21:02:19 +03:00
|
|
|
})
|
2019-04-25 11:48:25 +03:00
|
|
|
}
|
|
|
|
|
2019-06-25 21:02:19 +03:00
|
|
|
fn validate_raw_str_escape(&self, content_start: BytePos, content_end: BytePos) {
|
|
|
|
let lit = self.str_from_to(content_start, content_end);
|
|
|
|
unescape::unescape_raw_str(lit, &mut |range, c| {
|
|
|
|
if let Err(err) = c {
|
2019-04-25 11:48:25 +03:00
|
|
|
emit_unescape_error(
|
|
|
|
&self.sess.span_diagnostic,
|
|
|
|
lit,
|
2019-06-25 21:02:19 +03:00
|
|
|
self.mk_sp(content_start - BytePos(1), content_end + BytePos(1)),
|
|
|
|
unescape::Mode::Str,
|
|
|
|
range,
|
2019-04-25 11:48:25 +03:00
|
|
|
err,
|
|
|
|
)
|
|
|
|
}
|
2019-06-25 21:02:19 +03:00
|
|
|
})
|
2019-05-13 19:52:55 +02:00
|
|
|
}
|
|
|
|
|
2019-05-13 20:21:44 +02:00
|
|
|
fn validate_raw_byte_str_escape(&self, content_start: BytePos, content_end: BytePos) {
|
2019-06-25 21:02:19 +03:00
|
|
|
let lit = self.str_from_to(content_start, content_end);
|
|
|
|
unescape::unescape_raw_byte_str(lit, &mut |range, c| {
|
|
|
|
if let Err(err) = c {
|
|
|
|
emit_unescape_error(
|
|
|
|
&self.sess.span_diagnostic,
|
|
|
|
lit,
|
|
|
|
self.mk_sp(content_start - BytePos(1), content_end + BytePos(1)),
|
|
|
|
unescape::Mode::ByteStr,
|
|
|
|
range,
|
|
|
|
err,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
})
|
2019-05-13 20:21:44 +02:00
|
|
|
}
|
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
fn validate_byte_str_escape(&self, content_start: BytePos, content_end: BytePos) {
|
|
|
|
let lit = self.str_from_to(content_start, content_end);
|
2019-06-25 21:02:19 +03:00
|
|
|
unescape::unescape_byte_str(lit, &mut |range, c| {
|
|
|
|
if let Err(err) = c {
|
|
|
|
emit_unescape_error(
|
|
|
|
&self.sess.span_diagnostic,
|
|
|
|
lit,
|
2019-05-06 11:53:40 +03:00
|
|
|
self.mk_sp(content_start - BytePos(1), content_end + BytePos(1)),
|
2019-06-25 21:02:19 +03:00
|
|
|
unescape::Mode::ByteStr,
|
|
|
|
range,
|
|
|
|
err,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
})
|
2019-04-25 11:48:25 +03:00
|
|
|
}
|
2014-05-21 16:57:31 -07:00
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
fn validate_int_literal(&self, base: Base, content_start: BytePos, content_end: BytePos) {
|
|
|
|
let base = match base {
|
|
|
|
Base::Binary => 2,
|
|
|
|
Base::Octal => 8,
|
|
|
|
_ => return,
|
|
|
|
};
|
|
|
|
let s = self.str_from_to(content_start + BytePos(2), content_end);
|
|
|
|
for (idx, c) in s.char_indices() {
|
|
|
|
let idx = idx as u32;
|
|
|
|
if c != '_' && c.to_digit(base).is_none() {
|
|
|
|
let lo = content_start + BytePos(2 + idx);
|
|
|
|
let hi = content_start + BytePos(2 + idx + c.len_utf8() as u32);
|
|
|
|
self.err_span_(lo, hi,
|
|
|
|
&format!("invalid digit for a base {} literal", base));
|
2014-05-21 16:57:31 -07:00
|
|
|
|
2019-05-06 11:53:40 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-01-03 11:14:09 +02:00
|
|
|
}
|