2019-02-08 13:53:55 +00:00
|
|
|
//! The main parser interface.
|
2012-11-29 00:20:41 +00:00
|
|
|
|
2019-02-06 17:33:01 +00:00
|
|
|
use crate::ast::{self, CrateConfig, NodeId};
|
|
|
|
use crate::early_buffered_lints::{BufferedEarlyLint, BufferedEarlyLintId};
|
|
|
|
use crate::source_map::{SourceMap, FilePathMapping};
|
|
|
|
use crate::feature_gate::UnstableFeatures;
|
|
|
|
use crate::parse::parser::Parser;
|
|
|
|
use crate::symbol::Symbol;
|
2019-03-04 20:59:43 +00:00
|
|
|
use crate::syntax::parse::parser::emit_unclosed_delims;
|
2019-02-06 17:33:01 +00:00
|
|
|
use crate::tokenstream::{TokenStream, TokenTree};
|
|
|
|
use crate::diagnostics::plugin::ErrorMap;
|
2019-01-28 05:04:50 +00:00
|
|
|
use crate::print::pprust::token_to_string;
|
2019-02-06 17:33:01 +00:00
|
|
|
|
2019-02-09 02:24:02 +00:00
|
|
|
use errors::{FatalError, Level, Handler, ColorConfig, Diagnostic, DiagnosticBuilder};
|
2018-03-07 01:43:33 +00:00
|
|
|
use rustc_data_structures::sync::{Lrc, Lock};
|
2018-08-18 10:13:52 +00:00
|
|
|
use syntax_pos::{Span, SourceFile, FileName, MultiSpan};
|
2019-02-06 17:33:01 +00:00
|
|
|
use log::debug;
|
2015-03-28 21:58:51 +00:00
|
|
|
|
2018-08-18 10:55:43 +00:00
|
|
|
use rustc_data_structures::fx::FxHashSet;
|
2018-05-18 06:19:35 +00:00
|
|
|
use std::borrow::Cow;
|
2015-02-27 05:00:43 +00:00
|
|
|
use std::iter;
|
|
|
|
use std::path::{Path, PathBuf};
|
2013-10-14 01:48:47 +00:00
|
|
|
use std::str;
|
2012-12-23 22:41:37 +00:00
|
|
|
|
2015-12-20 21:00:43 +00:00
|
|
|
pub type PResult<'a, T> = Result<T, DiagnosticBuilder<'a>>;
|
2015-03-28 21:58:51 +00:00
|
|
|
|
2015-01-06 17:24:46 +00:00
|
|
|
#[macro_use]
|
2013-01-09 03:37:25 +00:00
|
|
|
pub mod parser;
|
2014-12-19 04:09:57 +00:00
|
|
|
|
|
|
|
pub mod lexer;
|
2013-01-09 03:37:25 +00:00
|
|
|
pub mod token;
|
|
|
|
pub mod attr;
|
2012-11-19 01:56:50 +00:00
|
|
|
|
2013-01-09 03:37:25 +00:00
|
|
|
pub mod classify;
|
2012-11-29 00:20:41 +00:00
|
|
|
|
2014-06-09 20:12:30 +00:00
|
|
|
/// Info about a parsing session.
|
2013-02-21 08:16:31 +00:00
|
|
|
pub struct ParseSess {
|
2017-01-13 04:49:20 +00:00
|
|
|
pub span_diagnostic: Handler,
|
2016-09-24 17:04:07 +00:00
|
|
|
pub unstable_features: UnstableFeatures,
|
2016-10-27 06:36:56 +00:00
|
|
|
pub config: CrateConfig,
|
2018-08-18 10:55:43 +00:00
|
|
|
pub missing_fragment_specifiers: Lock<FxHashSet<Span>>,
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Places where raw identifiers were used. This is used for feature-gating raw identifiers.
|
2018-02-15 09:52:26 +00:00
|
|
|
pub raw_identifier_spans: Lock<Vec<Span>>,
|
2019-02-08 13:53:55 +00:00
|
|
|
/// The registered diagnostics codes.
|
2018-05-31 22:53:30 +00:00
|
|
|
crate registered_diagnostics: Lock<ErrorMap>,
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Used to determine and report recursive module inclusions.
|
2018-02-15 09:52:26 +00:00
|
|
|
included_mod_stack: Lock<Vec<PathBuf>>,
|
2018-10-29 20:26:13 +00:00
|
|
|
source_map: Lrc<SourceMap>,
|
2018-07-12 01:54:12 +00:00
|
|
|
pub buffered_lints: Lock<Vec<BufferedEarlyLint>>,
|
2013-02-21 08:16:31 +00:00
|
|
|
}
|
2012-11-29 00:20:41 +00:00
|
|
|
|
2015-05-13 20:00:17 +00:00
|
|
|
impl ParseSess {
|
2017-04-24 17:01:19 +00:00
|
|
|
pub fn new(file_path_mapping: FilePathMapping) -> Self {
|
2018-08-18 10:13:35 +00:00
|
|
|
let cm = Lrc::new(SourceMap::new(file_path_mapping));
|
2016-07-05 19:24:23 +00:00
|
|
|
let handler = Handler::with_tty_emitter(ColorConfig::Auto,
|
|
|
|
true,
|
2019-03-07 03:49:39 +00:00
|
|
|
None,
|
2016-07-05 19:24:23 +00:00
|
|
|
Some(cm.clone()));
|
2015-12-13 22:17:55 +00:00
|
|
|
ParseSess::with_span_handler(handler, cm)
|
2013-02-21 08:16:31 +00:00
|
|
|
}
|
2012-11-29 00:20:41 +00:00
|
|
|
|
2018-10-29 20:26:13 +00:00
|
|
|
pub fn with_span_handler(handler: Handler, source_map: Lrc<SourceMap>) -> ParseSess {
|
2015-05-13 20:00:17 +00:00
|
|
|
ParseSess {
|
2015-12-13 22:17:55 +00:00
|
|
|
span_diagnostic: handler,
|
2016-09-24 17:04:07 +00:00
|
|
|
unstable_features: UnstableFeatures::from_environment(),
|
2018-08-18 10:55:43 +00:00
|
|
|
config: FxHashSet::default(),
|
|
|
|
missing_fragment_specifiers: Lock::new(FxHashSet::default()),
|
2018-02-15 09:52:26 +00:00
|
|
|
raw_identifier_spans: Lock::new(Vec::new()),
|
2018-03-07 01:43:33 +00:00
|
|
|
registered_diagnostics: Lock::new(ErrorMap::new()),
|
2018-02-15 09:52:26 +00:00
|
|
|
included_mod_stack: Lock::new(vec![]),
|
2018-10-29 20:26:13 +00:00
|
|
|
source_map,
|
2018-07-12 01:54:12 +00:00
|
|
|
buffered_lints: Lock::new(vec![]),
|
2015-05-13 20:00:17 +00:00
|
|
|
}
|
2013-02-21 08:16:31 +00:00
|
|
|
}
|
2015-05-13 20:08:02 +00:00
|
|
|
|
2018-12-04 15:26:34 +00:00
|
|
|
#[inline]
|
2018-08-18 10:14:09 +00:00
|
|
|
pub fn source_map(&self) -> &SourceMap {
|
2018-10-29 20:26:13 +00:00
|
|
|
&self.source_map
|
2015-05-13 20:08:02 +00:00
|
|
|
}
|
2018-07-12 01:54:12 +00:00
|
|
|
|
|
|
|
pub fn buffer_lint<S: Into<MultiSpan>>(&self,
|
|
|
|
lint_id: BufferedEarlyLintId,
|
|
|
|
span: S,
|
|
|
|
id: NodeId,
|
|
|
|
msg: &str,
|
|
|
|
) {
|
2018-07-14 04:40:29 +00:00
|
|
|
self.buffered_lints.with_lock(|buffered_lints| {
|
|
|
|
buffered_lints.push(BufferedEarlyLint{
|
2018-07-12 01:54:12 +00:00
|
|
|
span: span.into(),
|
|
|
|
id,
|
|
|
|
msg: msg.into(),
|
|
|
|
lint_id,
|
|
|
|
});
|
2018-07-14 04:40:29 +00:00
|
|
|
});
|
2018-07-12 01:54:12 +00:00
|
|
|
}
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2016-11-05 04:16:26 +00:00
|
|
|
#[derive(Clone)]
|
2018-05-18 06:19:35 +00:00
|
|
|
pub struct Directory<'a> {
|
|
|
|
pub path: Cow<'a, Path>,
|
2016-11-05 04:16:26 +00:00
|
|
|
pub ownership: DirectoryOwnership,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub enum DirectoryOwnership {
|
2017-11-28 02:14:24 +00:00
|
|
|
Owned {
|
|
|
|
// None if `mod.rs`, `Some("foo")` if we're in `foo.rs`
|
|
|
|
relative: Option<ast::Ident>,
|
|
|
|
},
|
2016-11-05 04:16:26 +00:00
|
|
|
UnownedViaBlock,
|
2016-11-14 09:31:03 +00:00
|
|
|
UnownedViaMod(bool /* legacy warnings? */),
|
2016-11-05 04:16:26 +00:00
|
|
|
}
|
|
|
|
|
2013-02-11 21:36:24 +00:00
|
|
|
// a bunch of utility functions of the form parse_<thing>_from_<source>
|
|
|
|
// where <thing> includes crate, expr, item, stmt, tts, and one that
|
|
|
|
// uses a HOF to parse anything, and <source> includes file and
|
|
|
|
// source_str.
|
|
|
|
|
2016-10-27 06:36:56 +00:00
|
|
|
pub fn parse_crate_from_file<'a>(input: &Path, sess: &'a ParseSess) -> PResult<'a, ast::Crate> {
|
|
|
|
let mut parser = new_parser_from_file(sess, input);
|
2016-02-13 17:05:16 +00:00
|
|
|
parser.parse_crate_mod()
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2016-10-27 06:36:56 +00:00
|
|
|
pub fn parse_crate_attrs_from_file<'a>(input: &Path, sess: &'a ParseSess)
|
2016-02-13 17:05:16 +00:00
|
|
|
-> PResult<'a, Vec<ast::Attribute>> {
|
2016-10-27 06:36:56 +00:00
|
|
|
let mut parser = new_parser_from_file(sess, input);
|
2016-02-13 17:05:16 +00:00
|
|
|
parser.parse_inner_attributes()
|
2013-12-19 20:23:39 +00:00
|
|
|
}
|
|
|
|
|
2017-12-14 07:09:19 +00:00
|
|
|
pub fn parse_crate_from_source_str(name: FileName, source: String, sess: &ParseSess)
|
2019-02-06 17:33:01 +00:00
|
|
|
-> PResult<'_, ast::Crate> {
|
2016-10-27 06:36:56 +00:00
|
|
|
new_parser_from_source_str(sess, name, source).parse_crate_mod()
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2017-12-14 07:09:19 +00:00
|
|
|
pub fn parse_crate_attrs_from_source_str(name: FileName, source: String, sess: &ParseSess)
|
2019-02-06 17:33:01 +00:00
|
|
|
-> PResult<'_, Vec<ast::Attribute>> {
|
2016-10-27 06:36:56 +00:00
|
|
|
new_parser_from_source_str(sess, name, source).parse_inner_attributes()
|
2013-12-19 20:23:39 +00:00
|
|
|
}
|
|
|
|
|
2019-01-28 05:04:50 +00:00
|
|
|
pub fn parse_stream_from_source_str(
|
|
|
|
name: FileName,
|
|
|
|
source: String,
|
|
|
|
sess: &ParseSess,
|
|
|
|
override_span: Option<Span>,
|
2019-03-04 20:59:43 +00:00
|
|
|
) -> TokenStream {
|
|
|
|
let (stream, mut errors) = source_file_to_stream(
|
|
|
|
sess,
|
|
|
|
sess.source_map().new_source_file(name, source),
|
|
|
|
override_span,
|
|
|
|
);
|
|
|
|
emit_unclosed_delims(&mut errors, &sess.span_diagnostic);
|
|
|
|
stream
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Creates a new parser from a source string.
|
2019-01-28 05:04:50 +00:00
|
|
|
pub fn new_parser_from_source_str(sess: &ParseSess, name: FileName, source: String) -> Parser<'_> {
|
2018-11-01 21:01:38 +00:00
|
|
|
panictry_buffer!(&sess.span_diagnostic, maybe_new_parser_from_source_str(sess, name, source))
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Creates a new parser from a source string. Returns any buffered errors from lexing the initial
|
2018-11-01 16:57:29 +00:00
|
|
|
/// token stream.
|
|
|
|
pub fn maybe_new_parser_from_source_str(sess: &ParseSess, name: FileName, source: String)
|
2019-02-06 17:33:01 +00:00
|
|
|
-> Result<Parser<'_>, Vec<Diagnostic>>
|
2018-11-01 16:57:29 +00:00
|
|
|
{
|
|
|
|
let mut parser = maybe_source_file_to_parser(sess,
|
|
|
|
sess.source_map().new_source_file(name, source))?;
|
2017-05-17 22:37:24 +00:00
|
|
|
parser.recurse_into_file_modules = false;
|
2018-11-01 16:57:29 +00:00
|
|
|
Ok(parser)
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Creates a new parser, handling errors as appropriate
|
2012-11-29 00:20:41 +00:00
|
|
|
/// if the file doesn't exist
|
2016-10-27 06:36:56 +00:00
|
|
|
pub fn new_parser_from_file<'a>(sess: &'a ParseSess, path: &Path) -> Parser<'a> {
|
2018-08-18 10:13:56 +00:00
|
|
|
source_file_to_parser(sess, file_to_source_file(sess, path, None))
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Creates a new parser, returning buffered diagnostics if the file doesn't
|
2018-12-09 21:53:00 +00:00
|
|
|
/// exist or from lexing the initial token stream.
|
|
|
|
pub fn maybe_new_parser_from_file<'a>(sess: &'a ParseSess, path: &Path)
|
|
|
|
-> Result<Parser<'a>, Vec<Diagnostic>> {
|
|
|
|
let file = try_file_to_source_file(sess, path, None).map_err(|db| vec![db])?;
|
|
|
|
maybe_source_file_to_parser(sess, file)
|
|
|
|
}
|
|
|
|
|
2013-04-23 17:57:41 +00:00
|
|
|
/// Given a session, a crate config, a path, and a span, add
|
2018-08-18 10:14:14 +00:00
|
|
|
/// the file at the given path to the source_map, and return a parser.
|
2013-04-23 17:57:41 +00:00
|
|
|
/// On an error, use the given span as the source of the problem.
|
2019-03-09 12:59:54 +00:00
|
|
|
pub fn new_sub_parser_from_file<'a>(sess: &'a ParseSess,
|
2014-03-16 18:56:24 +00:00
|
|
|
path: &Path,
|
2016-11-05 04:16:26 +00:00
|
|
|
directory_ownership: DirectoryOwnership,
|
2014-05-22 23:57:53 +00:00
|
|
|
module_name: Option<String>,
|
2014-03-16 18:56:24 +00:00
|
|
|
sp: Span) -> Parser<'a> {
|
2018-08-18 10:13:56 +00:00
|
|
|
let mut p = source_file_to_parser(sess, file_to_source_file(sess, path, Some(sp)));
|
2016-11-05 04:16:26 +00:00
|
|
|
p.directory.ownership = directory_ownership;
|
2014-05-16 21:23:04 +00:00
|
|
|
p.root_module_name = module_name;
|
|
|
|
p
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
2018-08-18 10:13:56 +00:00
|
|
|
/// Given a source_file and config, return a parser
|
2019-02-06 17:33:01 +00:00
|
|
|
fn source_file_to_parser(sess: &ParseSess, source_file: Lrc<SourceFile>) -> Parser<'_> {
|
2018-11-01 21:01:38 +00:00
|
|
|
panictry_buffer!(&sess.span_diagnostic,
|
|
|
|
maybe_source_file_to_parser(sess, source_file))
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
2018-11-01 16:57:29 +00:00
|
|
|
/// Given a source_file and config, return a parser. Returns any buffered errors from lexing the
|
|
|
|
/// initial token stream.
|
2019-01-28 05:04:50 +00:00
|
|
|
fn maybe_source_file_to_parser(
|
|
|
|
sess: &ParseSess,
|
|
|
|
source_file: Lrc<SourceFile>,
|
|
|
|
) -> Result<Parser<'_>, Vec<Diagnostic>> {
|
2018-08-18 10:13:56 +00:00
|
|
|
let end_pos = source_file.end_pos;
|
2019-01-28 05:04:50 +00:00
|
|
|
let (stream, unclosed_delims) = maybe_file_to_stream(sess, source_file, None)?;
|
|
|
|
let mut parser = stream_to_parser(sess, stream);
|
|
|
|
parser.unclosed_delims = unclosed_delims;
|
2018-06-24 22:00:21 +00:00
|
|
|
if parser.token == token::Eof && parser.span.is_dummy() {
|
|
|
|
parser.span = Span::new(end_pos, end_pos, parser.span.ctxt());
|
2015-07-06 02:13:19 +00:00
|
|
|
}
|
|
|
|
|
2018-11-01 16:57:29 +00:00
|
|
|
Ok(parser)
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// must preserve old name for now, because quote! from the *existing*
|
|
|
|
// compiler expands into it
|
2019-02-06 17:33:01 +00:00
|
|
|
pub fn new_parser_from_tts(sess: &ParseSess, tts: Vec<TokenTree>) -> Parser<'_> {
|
2017-02-21 05:05:59 +00:00
|
|
|
stream_to_parser(sess, tts.into_iter().collect())
|
2016-07-14 16:52:43 +00:00
|
|
|
}
|
|
|
|
|
2013-04-23 17:57:41 +00:00
|
|
|
|
|
|
|
// base abstractions
|
|
|
|
|
2018-12-09 21:53:00 +00:00
|
|
|
/// Given a session and a path and an optional span (for error reporting),
|
|
|
|
/// add the path to the session's source_map and return the new source_file or
|
|
|
|
/// error when a file can't be read.
|
|
|
|
fn try_file_to_source_file(sess: &ParseSess, path: &Path, spanopt: Option<Span>)
|
|
|
|
-> Result<Lrc<SourceFile>, Diagnostic> {
|
|
|
|
sess.source_map().load_file(path)
|
|
|
|
.map_err(|e| {
|
|
|
|
let msg = format!("couldn't read {}: {}", path.display(), e);
|
|
|
|
let mut diag = Diagnostic::new(Level::Fatal, &msg);
|
|
|
|
if let Some(sp) = spanopt {
|
|
|
|
diag.set_span(sp);
|
|
|
|
}
|
|
|
|
diag
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2013-04-23 17:57:41 +00:00
|
|
|
/// Given a session and a path and an optional span (for error reporting),
|
2019-02-08 13:53:55 +00:00
|
|
|
/// add the path to the session's `source_map` and return the new `source_file`.
|
2018-08-18 10:13:56 +00:00
|
|
|
fn file_to_source_file(sess: &ParseSess, path: &Path, spanopt: Option<Span>)
|
2018-08-18 10:13:52 +00:00
|
|
|
-> Lrc<SourceFile> {
|
2018-12-09 21:53:00 +00:00
|
|
|
match try_file_to_source_file(sess, path, spanopt) {
|
2018-08-18 10:13:56 +00:00
|
|
|
Ok(source_file) => source_file,
|
2018-12-09 21:53:00 +00:00
|
|
|
Err(d) => {
|
|
|
|
DiagnosticBuilder::new_diagnostic(&sess.span_diagnostic, d).emit();
|
|
|
|
FatalError.raise();
|
2014-05-16 17:45:16 +00:00
|
|
|
}
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Given a source_file, produces a sequence of token trees.
|
2019-01-28 05:04:50 +00:00
|
|
|
pub fn source_file_to_stream(
|
|
|
|
sess: &ParseSess,
|
|
|
|
source_file: Lrc<SourceFile>,
|
|
|
|
override_span: Option<Span>,
|
|
|
|
) -> (TokenStream, Vec<lexer::UnmatchedBrace>) {
|
2018-11-01 21:01:38 +00:00
|
|
|
panictry_buffer!(&sess.span_diagnostic, maybe_file_to_stream(sess, source_file, override_span))
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Given a source file, produces a sequence of token trees. Returns any buffered errors from
|
2018-11-01 16:57:29 +00:00
|
|
|
/// parsing the token tream.
|
2019-01-28 05:04:50 +00:00
|
|
|
pub fn maybe_file_to_stream(
|
|
|
|
sess: &ParseSess,
|
|
|
|
source_file: Lrc<SourceFile>,
|
|
|
|
override_span: Option<Span>,
|
|
|
|
) -> Result<(TokenStream, Vec<lexer::UnmatchedBrace>), Vec<Diagnostic>> {
|
2018-11-01 16:57:29 +00:00
|
|
|
let mut srdr = lexer::StringReader::new_or_buffered_errs(sess, source_file, override_span)?;
|
2017-01-12 23:32:00 +00:00
|
|
|
srdr.real_token();
|
2018-11-01 16:57:29 +00:00
|
|
|
|
|
|
|
match srdr.parse_all_token_trees() {
|
2019-01-28 05:04:50 +00:00
|
|
|
Ok(stream) => Ok((stream, srdr.unmatched_braces)),
|
2018-11-01 16:57:29 +00:00
|
|
|
Err(err) => {
|
|
|
|
let mut buffer = Vec::with_capacity(1);
|
|
|
|
err.buffer(&mut buffer);
|
2019-02-05 09:35:25 +00:00
|
|
|
// Not using `emit_unclosed_delims` to use `db.buffer`
|
2019-01-28 05:04:50 +00:00
|
|
|
for unmatched in srdr.unmatched_braces {
|
|
|
|
let mut db = sess.span_diagnostic.struct_span_err(unmatched.found_span, &format!(
|
|
|
|
"incorrect close delimiter: `{}`",
|
|
|
|
token_to_string(&token::Token::CloseDelim(unmatched.found_delim)),
|
|
|
|
));
|
|
|
|
db.span_label(unmatched.found_span, "incorrect close delimiter");
|
|
|
|
if let Some(sp) = unmatched.candidate_span {
|
|
|
|
db.span_label(sp, "close delimiter possibly meant for this");
|
|
|
|
}
|
|
|
|
if let Some(sp) = unmatched.unclosed_span {
|
|
|
|
db.span_label(sp, "un-closed delimiter");
|
|
|
|
}
|
|
|
|
db.buffer(&mut buffer);
|
|
|
|
}
|
2018-11-01 16:57:29 +00:00
|
|
|
Err(buffer)
|
|
|
|
}
|
|
|
|
}
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Given stream and the `ParseSess`, produces a parser.
|
2019-02-06 17:33:01 +00:00
|
|
|
pub fn stream_to_parser(sess: &ParseSess, stream: TokenStream) -> Parser<'_> {
|
2017-05-17 22:37:24 +00:00
|
|
|
Parser::new(sess, stream, None, true, false)
|
2012-11-29 00:20:41 +00:00
|
|
|
}
|
2013-01-30 17:56:33 +00:00
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Parses a string representing a character literal into its final form.
|
2014-07-03 07:47:30 +00:00
|
|
|
/// Rather than just accepting/rejecting a given literal, unescapes it as
|
|
|
|
/// well. Can take any slice prefixed by a character escape. Returns the
|
|
|
|
/// character and the number of characters consumed.
|
2018-05-31 22:53:30 +00:00
|
|
|
fn char_lit(lit: &str, diag: Option<(Span, &Handler)>) -> (char, isize) {
|
2015-03-20 06:42:18 +00:00
|
|
|
use std::char;
|
2014-07-03 07:47:30 +00:00
|
|
|
|
2016-09-15 00:59:11 +00:00
|
|
|
// Handle non-escaped chars first.
|
|
|
|
if lit.as_bytes()[0] != b'\\' {
|
|
|
|
// If the first byte isn't '\\' it might part of a multi-byte char, so
|
|
|
|
// get the char with chars().
|
|
|
|
let c = lit.chars().next().unwrap();
|
|
|
|
return (c, 1);
|
2014-12-03 00:48:48 +00:00
|
|
|
}
|
|
|
|
|
2016-09-15 00:59:11 +00:00
|
|
|
// Handle escaped chars.
|
|
|
|
match lit.as_bytes()[1] as char {
|
|
|
|
'"' => ('"', 2),
|
|
|
|
'n' => ('\n', 2),
|
|
|
|
'r' => ('\r', 2),
|
|
|
|
't' => ('\t', 2),
|
|
|
|
'\\' => ('\\', 2),
|
|
|
|
'\'' => ('\'', 2),
|
|
|
|
'0' => ('\0', 2),
|
|
|
|
'x' => {
|
|
|
|
let v = u32::from_str_radix(&lit[2..4], 16).unwrap();
|
|
|
|
let c = char::from_u32(v).unwrap();
|
|
|
|
(c, 4)
|
2015-03-18 13:22:38 +00:00
|
|
|
}
|
2016-09-15 00:59:11 +00:00
|
|
|
'u' => {
|
2017-05-12 18:05:39 +00:00
|
|
|
assert_eq!(lit.as_bytes()[2], b'{');
|
2016-09-15 00:59:11 +00:00
|
|
|
let idx = lit.find('}').unwrap();
|
2018-04-18 04:09:27 +00:00
|
|
|
|
|
|
|
// All digits and '_' are ascii, so treat each byte as a char.
|
|
|
|
let mut v: u32 = 0;
|
|
|
|
for c in lit[3..idx].bytes() {
|
|
|
|
let c = char::from(c);
|
|
|
|
if c != '_' {
|
|
|
|
let x = c.to_digit(16).unwrap();
|
|
|
|
v = v.checked_mul(16).unwrap().checked_add(x).unwrap();
|
|
|
|
}
|
|
|
|
}
|
2017-08-17 18:02:13 +00:00
|
|
|
let c = char::from_u32(v).unwrap_or_else(|| {
|
|
|
|
if let Some((span, diag)) = diag {
|
|
|
|
let mut diag = diag.struct_span_err(span, "invalid unicode character escape");
|
|
|
|
if v > 0x10FFFF {
|
|
|
|
diag.help("unicode escape must be at most 10FFFF").emit();
|
|
|
|
} else {
|
|
|
|
diag.help("unicode escape must not be a surrogate").emit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
'\u{FFFD}'
|
|
|
|
});
|
2016-09-15 00:59:11 +00:00
|
|
|
(c, (idx + 1) as isize)
|
|
|
|
}
|
|
|
|
_ => panic!("lexer should have rejected a bad character escape {}", lit)
|
|
|
|
}
|
2014-07-03 07:47:30 +00:00
|
|
|
}
|
2013-02-26 18:15:29 +00:00
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Parses a string representing a string literal into its final form. Does unescaping.
|
2019-04-22 21:51:38 +00:00
|
|
|
fn str_lit(lit: &str, diag: Option<(Span, &Handler)>) -> String {
|
2018-05-02 22:55:58 +00:00
|
|
|
debug!("str_lit: given {}", lit.escape_default());
|
2014-07-03 07:47:30 +00:00
|
|
|
let mut res = String::with_capacity(lit.len());
|
|
|
|
|
2015-02-01 17:44:15 +00:00
|
|
|
let error = |i| format!("lexer should have rejected {} at {}", lit, i);
|
2014-07-03 07:47:30 +00:00
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Eat everything up to a non-whitespace.
|
2015-02-01 20:15:36 +00:00
|
|
|
fn eat<'a>(it: &mut iter::Peekable<str::CharIndices<'a>>) {
|
2014-07-03 07:47:30 +00:00
|
|
|
loop {
|
2014-12-09 17:17:24 +00:00
|
|
|
match it.peek().map(|x| x.1) {
|
2014-07-03 07:47:30 +00:00
|
|
|
Some(' ') | Some('\n') | Some('\r') | Some('\t') => {
|
|
|
|
it.next();
|
|
|
|
},
|
|
|
|
_ => { break; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut chars = lit.char_indices().peekable();
|
2017-05-12 18:05:39 +00:00
|
|
|
while let Some((i, c)) = chars.next() {
|
|
|
|
match c {
|
|
|
|
'\\' => {
|
|
|
|
let ch = chars.peek().unwrap_or_else(|| {
|
|
|
|
panic!("{}", error(i))
|
|
|
|
}).1;
|
|
|
|
|
|
|
|
if ch == '\n' {
|
|
|
|
eat(&mut chars);
|
|
|
|
} else if ch == '\r' {
|
|
|
|
chars.next();
|
|
|
|
let ch = chars.peek().unwrap_or_else(|| {
|
|
|
|
panic!("{}", error(i))
|
|
|
|
}).1;
|
2014-08-21 22:47:37 +00:00
|
|
|
|
2017-05-12 18:05:39 +00:00
|
|
|
if ch != '\n' {
|
|
|
|
panic!("lexer accepted bare CR");
|
|
|
|
}
|
|
|
|
eat(&mut chars);
|
|
|
|
} else {
|
|
|
|
// otherwise, a normal escape
|
2017-08-17 18:02:13 +00:00
|
|
|
let (c, n) = char_lit(&lit[i..], diag);
|
2017-05-12 18:05:39 +00:00
|
|
|
for _ in 0..n - 1 { // we don't need to move past the first \
|
2014-07-03 07:47:30 +00:00
|
|
|
chars.next();
|
|
|
|
}
|
2017-05-12 18:05:39 +00:00
|
|
|
res.push(c);
|
2014-07-03 07:47:30 +00:00
|
|
|
}
|
|
|
|
},
|
2017-05-12 18:05:39 +00:00
|
|
|
'\r' => {
|
|
|
|
let ch = chars.peek().unwrap_or_else(|| {
|
|
|
|
panic!("{}", error(i))
|
|
|
|
}).1;
|
|
|
|
|
|
|
|
if ch != '\n' {
|
|
|
|
panic!("lexer accepted bare CR");
|
|
|
|
}
|
|
|
|
chars.next();
|
|
|
|
res.push('\n');
|
|
|
|
}
|
|
|
|
c => res.push(c),
|
2014-07-03 07:47:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res.shrink_to_fit(); // probably not going to do anything, unless there was an escape.
|
|
|
|
debug!("parse_str_lit: returning {}", res);
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Parses a string representing a raw string literal into its final form. The
|
2014-07-03 07:47:30 +00:00
|
|
|
/// only operation this does is convert embedded CRLF into a single LF.
|
2018-05-31 22:53:30 +00:00
|
|
|
fn raw_str_lit(lit: &str) -> String {
|
2018-05-02 22:55:58 +00:00
|
|
|
debug!("raw_str_lit: given {}", lit.escape_default());
|
2014-07-03 07:47:30 +00:00
|
|
|
let mut res = String::with_capacity(lit.len());
|
|
|
|
|
|
|
|
let mut chars = lit.chars().peekable();
|
2017-05-12 18:05:39 +00:00
|
|
|
while let Some(c) = chars.next() {
|
|
|
|
if c == '\r' {
|
|
|
|
if *chars.peek().unwrap() != '\n' {
|
|
|
|
panic!("lexer accepted bare CR");
|
|
|
|
}
|
|
|
|
chars.next();
|
|
|
|
res.push('\n');
|
|
|
|
} else {
|
|
|
|
res.push(c);
|
2014-07-03 07:47:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
res.shrink_to_fit();
|
|
|
|
res
|
|
|
|
}
|
|
|
|
|
2014-11-19 09:22:54 +00:00
|
|
|
// check if `s` looks like i32 or u1234 etc.
|
|
|
|
fn looks_like_width_suffix(first_chars: &[char], s: &str) -> bool {
|
2018-10-27 12:41:26 +00:00
|
|
|
s.starts_with(first_chars) && s[1..].chars().all(|c| c.is_ascii_digit())
|
2014-11-19 09:22:54 +00:00
|
|
|
}
|
2014-07-03 07:47:30 +00:00
|
|
|
|
2017-03-03 09:23:59 +00:00
|
|
|
macro_rules! err {
|
|
|
|
($opt_diag:expr, |$span:ident, $diag:ident| $($body:tt)*) => {
|
|
|
|
match $opt_diag {
|
|
|
|
Some(($span, $diag)) => { $($body)* }
|
|
|
|
None => return None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-31 22:53:30 +00:00
|
|
|
crate fn lit_token(lit: token::Lit, suf: Option<Symbol>, diag: Option<(Span, &Handler)>)
|
2017-03-03 09:23:59 +00:00
|
|
|
-> (bool /* suffix illegal? */, Option<ast::LitKind>) {
|
|
|
|
use ast::LitKind;
|
|
|
|
|
|
|
|
match lit {
|
|
|
|
token::Byte(i) => (true, Some(LitKind::Byte(byte_lit(&i.as_str()).0))),
|
2017-08-17 18:02:13 +00:00
|
|
|
token::Char(i) => (true, Some(LitKind::Char(char_lit(&i.as_str(), diag).0))),
|
2019-01-20 05:51:54 +00:00
|
|
|
token::Err(i) => (true, Some(LitKind::Err(i))),
|
2017-03-03 09:23:59 +00:00
|
|
|
|
|
|
|
// There are some valid suffixes for integer and float literals,
|
|
|
|
// so all the handling is done internally.
|
|
|
|
token::Integer(s) => (false, integer_lit(&s.as_str(), suf, diag)),
|
|
|
|
token::Float(s) => (false, float_lit(&s.as_str(), suf, diag)),
|
|
|
|
|
2018-05-04 06:53:31 +00:00
|
|
|
token::Str_(mut sym) => {
|
|
|
|
// If there are no characters requiring special treatment we can
|
|
|
|
// reuse the symbol from the Token. Otherwise, we must generate a
|
|
|
|
// new symbol because the string in the LitKind is different to the
|
|
|
|
// string in the Token.
|
|
|
|
let s = &sym.as_str();
|
|
|
|
if s.as_bytes().iter().any(|&c| c == b'\\' || c == b'\r') {
|
|
|
|
sym = Symbol::intern(&str_lit(s, diag));
|
|
|
|
}
|
|
|
|
(true, Some(LitKind::Str(sym, ast::StrStyle::Cooked)))
|
2017-03-03 09:23:59 +00:00
|
|
|
}
|
2018-05-04 06:53:31 +00:00
|
|
|
token::StrRaw(mut sym, n) => {
|
|
|
|
// Ditto.
|
|
|
|
let s = &sym.as_str();
|
|
|
|
if s.contains('\r') {
|
|
|
|
sym = Symbol::intern(&raw_str_lit(s));
|
|
|
|
}
|
|
|
|
(true, Some(LitKind::Str(sym, ast::StrStyle::Raw(n))))
|
2017-03-03 09:23:59 +00:00
|
|
|
}
|
|
|
|
token::ByteStr(i) => {
|
|
|
|
(true, Some(LitKind::ByteStr(byte_str_lit(&i.as_str()))))
|
|
|
|
}
|
|
|
|
token::ByteStrRaw(i, _) => {
|
2018-02-27 16:11:14 +00:00
|
|
|
(true, Some(LitKind::ByteStr(Lrc::new(i.to_string().into_bytes()))))
|
2017-03-03 09:23:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn filtered_float_lit(data: Symbol, suffix: Option<Symbol>, diag: Option<(Span, &Handler)>)
|
|
|
|
-> Option<ast::LitKind> {
|
2014-12-20 08:09:35 +00:00
|
|
|
debug!("filtered_float_lit: {}, {:?}", data, suffix);
|
2016-11-16 10:52:37 +00:00
|
|
|
let suffix = match suffix {
|
|
|
|
Some(suffix) => suffix,
|
2017-03-03 09:23:59 +00:00
|
|
|
None => return Some(ast::LitKind::FloatUnsuffixed(data)),
|
2016-11-16 10:52:37 +00:00
|
|
|
};
|
|
|
|
|
2017-03-03 09:23:59 +00:00
|
|
|
Some(match &*suffix.as_str() {
|
2016-11-16 10:52:37 +00:00
|
|
|
"f32" => ast::LitKind::Float(data, ast::FloatTy::F32),
|
|
|
|
"f64" => ast::LitKind::Float(data, ast::FloatTy::F64),
|
|
|
|
suf => {
|
2017-03-03 09:23:59 +00:00
|
|
|
err!(diag, |span, diag| {
|
|
|
|
if suf.len() >= 2 && looks_like_width_suffix(&['f'], suf) {
|
|
|
|
// if it looks like a width, lets try to be helpful.
|
|
|
|
let msg = format!("invalid width `{}` for float literal", &suf[1..]);
|
|
|
|
diag.struct_span_err(span, &msg).help("valid widths are 32 and 64").emit()
|
|
|
|
} else {
|
|
|
|
let msg = format!("invalid suffix `{}` for float literal", suf);
|
|
|
|
diag.struct_span_err(span, &msg)
|
2019-01-12 07:37:49 +00:00
|
|
|
.span_label(span, format!("invalid suffix `{}`", suf))
|
2017-03-03 09:23:59 +00:00
|
|
|
.help("valid suffixes are `f32` and `f64`")
|
|
|
|
.emit();
|
|
|
|
}
|
|
|
|
});
|
2014-07-03 07:47:30 +00:00
|
|
|
|
2016-02-08 16:06:20 +00:00
|
|
|
ast::LitKind::FloatUnsuffixed(data)
|
2014-11-19 09:22:54 +00:00
|
|
|
}
|
2017-03-03 09:23:59 +00:00
|
|
|
})
|
2014-07-03 07:47:30 +00:00
|
|
|
}
|
2018-05-31 22:53:30 +00:00
|
|
|
fn float_lit(s: &str, suffix: Option<Symbol>, diag: Option<(Span, &Handler)>)
|
2017-03-03 09:23:59 +00:00
|
|
|
-> Option<ast::LitKind> {
|
2014-12-20 08:09:35 +00:00
|
|
|
debug!("float_lit: {:?}, {:?}", s, suffix);
|
2015-02-05 04:00:02 +00:00
|
|
|
// FIXME #2252: bounds checking float literals is deferred until trans
|
2018-10-26 11:06:59 +00:00
|
|
|
|
|
|
|
// Strip underscores without allocating a new String unless necessary.
|
|
|
|
let s2;
|
|
|
|
let s = if s.chars().any(|c| c == '_') {
|
|
|
|
s2 = s.chars().filter(|&c| c != '_').collect::<String>();
|
|
|
|
&s2
|
|
|
|
} else {
|
|
|
|
s
|
|
|
|
};
|
|
|
|
|
|
|
|
filtered_float_lit(Symbol::intern(s), suffix, diag)
|
2014-11-19 09:22:54 +00:00
|
|
|
}
|
2014-07-03 07:47:30 +00:00
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Parses a string representing a byte literal into its final form. Similar to `char_lit`.
|
2018-05-31 22:53:30 +00:00
|
|
|
fn byte_lit(lit: &str) -> (u8, usize) {
|
2015-02-01 17:44:15 +00:00
|
|
|
let err = |i| format!("lexer accepted invalid byte literal {} step {}", lit, i);
|
2014-07-03 07:47:30 +00:00
|
|
|
|
|
|
|
if lit.len() == 1 {
|
|
|
|
(lit.as_bytes()[0], 1)
|
|
|
|
} else {
|
2017-05-12 18:05:39 +00:00
|
|
|
assert_eq!(lit.as_bytes()[0], b'\\', "{}", err(0));
|
2014-07-03 07:47:30 +00:00
|
|
|
let b = match lit.as_bytes()[1] {
|
|
|
|
b'"' => b'"',
|
|
|
|
b'n' => b'\n',
|
|
|
|
b'r' => b'\r',
|
|
|
|
b't' => b'\t',
|
|
|
|
b'\\' => b'\\',
|
|
|
|
b'\'' => b'\'',
|
|
|
|
b'0' => b'\0',
|
|
|
|
_ => {
|
2015-03-20 06:42:18 +00:00
|
|
|
match u64::from_str_radix(&lit[2..4], 16).ok() {
|
2014-07-03 07:47:30 +00:00
|
|
|
Some(c) =>
|
|
|
|
if c > 0xFF {
|
2014-10-09 19:17:22 +00:00
|
|
|
panic!(err(2))
|
2014-07-03 07:47:30 +00:00
|
|
|
} else {
|
|
|
|
return (c as u8, 4)
|
|
|
|
},
|
2014-10-09 19:17:22 +00:00
|
|
|
None => panic!(err(3))
|
2014-07-03 07:47:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2017-05-12 18:05:39 +00:00
|
|
|
(b, 2)
|
2014-07-03 07:47:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-31 22:53:30 +00:00
|
|
|
fn byte_str_lit(lit: &str) -> Lrc<Vec<u8>> {
|
2014-07-03 07:47:30 +00:00
|
|
|
let mut res = Vec::with_capacity(lit.len());
|
|
|
|
|
2018-08-20 04:25:08 +00:00
|
|
|
let error = |i| panic!("lexer should have rejected {} at {}", lit, i);
|
2014-07-03 07:47:30 +00:00
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// Eat everything up to a non-whitespace.
|
2017-05-12 18:05:39 +00:00
|
|
|
fn eat<I: Iterator<Item=(usize, u8)>>(it: &mut iter::Peekable<I>) {
|
2014-08-05 22:13:57 +00:00
|
|
|
loop {
|
2014-12-09 17:17:24 +00:00
|
|
|
match it.peek().map(|x| x.1) {
|
2014-08-05 22:13:57 +00:00
|
|
|
Some(b' ') | Some(b'\n') | Some(b'\r') | Some(b'\t') => {
|
|
|
|
it.next();
|
|
|
|
},
|
|
|
|
_ => { break; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-03 07:54:53 +00:00
|
|
|
// byte string literals *must* be ASCII, but the escapes don't have to be
|
2014-08-05 22:13:57 +00:00
|
|
|
let mut chars = lit.bytes().enumerate().peekable();
|
2014-07-03 07:47:30 +00:00
|
|
|
loop {
|
|
|
|
match chars.next() {
|
2014-08-05 22:13:57 +00:00
|
|
|
Some((i, b'\\')) => {
|
2018-08-20 04:25:08 +00:00
|
|
|
match chars.peek().unwrap_or_else(|| error(i)).1 {
|
2014-08-05 22:13:57 +00:00
|
|
|
b'\n' => eat(&mut chars),
|
|
|
|
b'\r' => {
|
|
|
|
chars.next();
|
2018-08-20 04:25:08 +00:00
|
|
|
if chars.peek().unwrap_or_else(|| error(i)).1 != b'\n' {
|
2014-10-09 19:17:22 +00:00
|
|
|
panic!("lexer accepted bare CR");
|
2014-07-03 07:47:30 +00:00
|
|
|
}
|
2014-08-05 22:13:57 +00:00
|
|
|
eat(&mut chars);
|
|
|
|
}
|
|
|
|
_ => {
|
2014-07-03 07:47:30 +00:00
|
|
|
// otherwise, a normal escape
|
2015-01-07 16:58:31 +00:00
|
|
|
let (c, n) = byte_lit(&lit[i..]);
|
2014-08-05 22:13:57 +00:00
|
|
|
// we don't need to move past the first \
|
2015-01-26 20:46:12 +00:00
|
|
|
for _ in 0..n - 1 {
|
2014-07-03 07:47:30 +00:00
|
|
|
chars.next();
|
|
|
|
}
|
|
|
|
res.push(c);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2014-08-05 22:13:57 +00:00
|
|
|
Some((i, b'\r')) => {
|
2018-08-20 04:25:08 +00:00
|
|
|
if chars.peek().unwrap_or_else(|| error(i)).1 != b'\n' {
|
2014-10-09 19:17:22 +00:00
|
|
|
panic!("lexer accepted bare CR");
|
2014-08-05 22:13:57 +00:00
|
|
|
}
|
|
|
|
chars.next();
|
|
|
|
res.push(b'\n');
|
|
|
|
}
|
|
|
|
Some((_, c)) => res.push(c),
|
|
|
|
None => break,
|
2014-07-03 07:47:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-27 16:11:14 +00:00
|
|
|
Lrc::new(res)
|
2014-07-03 07:47:30 +00:00
|
|
|
}
|
2013-02-04 21:15:17 +00:00
|
|
|
|
2018-05-31 22:53:30 +00:00
|
|
|
fn integer_lit(s: &str, suffix: Option<Symbol>, diag: Option<(Span, &Handler)>)
|
2017-03-03 09:23:59 +00:00
|
|
|
-> Option<ast::LitKind> {
|
2014-06-18 17:44:20 +00:00
|
|
|
// s can only be ascii, byte indexing is fine
|
|
|
|
|
2018-10-26 11:06:59 +00:00
|
|
|
// Strip underscores without allocating a new String unless necessary.
|
|
|
|
let s2;
|
|
|
|
let mut s = if s.chars().any(|c| c == '_') {
|
|
|
|
s2 = s.chars().filter(|&c| c != '_').collect::<String>();
|
|
|
|
&s2
|
|
|
|
} else {
|
|
|
|
s
|
|
|
|
};
|
2014-06-18 17:44:20 +00:00
|
|
|
|
2014-12-20 08:09:35 +00:00
|
|
|
debug!("integer_lit: {}, {:?}", s, suffix);
|
2014-06-18 17:44:20 +00:00
|
|
|
|
|
|
|
let mut base = 10;
|
|
|
|
let orig = s;
|
2016-02-08 16:16:23 +00:00
|
|
|
let mut ty = ast::LitIntType::Unsuffixed;
|
2014-06-18 17:44:20 +00:00
|
|
|
|
2018-10-27 12:41:26 +00:00
|
|
|
if s.starts_with('0') && s.len() > 1 {
|
|
|
|
match s.as_bytes()[1] {
|
|
|
|
b'x' => base = 16,
|
|
|
|
b'o' => base = 8,
|
|
|
|
b'b' => base = 2,
|
2014-06-18 17:44:20 +00:00
|
|
|
_ => { }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-19 09:22:54 +00:00
|
|
|
// 1f64 and 2f32 etc. are valid float literals.
|
2016-11-16 10:52:37 +00:00
|
|
|
if let Some(suf) = suffix {
|
|
|
|
if looks_like_width_suffix(&['f'], &suf.as_str()) {
|
2017-03-03 09:23:59 +00:00
|
|
|
let err = match base {
|
|
|
|
16 => Some("hexadecimal float literal is not supported"),
|
|
|
|
8 => Some("octal float literal is not supported"),
|
|
|
|
2 => Some("binary float literal is not supported"),
|
|
|
|
_ => None,
|
|
|
|
};
|
|
|
|
if let Some(err) = err {
|
2019-01-12 05:19:44 +00:00
|
|
|
err!(diag, |span, diag| {
|
|
|
|
diag.struct_span_err(span, err)
|
|
|
|
.span_label(span, "not supported")
|
|
|
|
.emit();
|
|
|
|
});
|
2014-11-19 09:22:54 +00:00
|
|
|
}
|
2017-05-12 18:05:39 +00:00
|
|
|
return filtered_float_lit(Symbol::intern(s), Some(suf), diag)
|
2014-11-19 09:22:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-18 17:44:20 +00:00
|
|
|
if base != 10 {
|
2015-01-07 16:58:31 +00:00
|
|
|
s = &s[2..];
|
2014-06-18 17:44:20 +00:00
|
|
|
}
|
|
|
|
|
2016-11-16 10:52:37 +00:00
|
|
|
if let Some(suf) = suffix {
|
2017-03-03 09:23:59 +00:00
|
|
|
if suf.as_str().is_empty() {
|
|
|
|
err!(diag, |span, diag| diag.span_bug(span, "found empty literal suffix in Some"));
|
|
|
|
}
|
2016-11-16 10:52:37 +00:00
|
|
|
ty = match &*suf.as_str() {
|
2018-01-04 01:12:04 +00:00
|
|
|
"isize" => ast::LitIntType::Signed(ast::IntTy::Isize),
|
2016-02-08 16:16:23 +00:00
|
|
|
"i8" => ast::LitIntType::Signed(ast::IntTy::I8),
|
|
|
|
"i16" => ast::LitIntType::Signed(ast::IntTy::I16),
|
|
|
|
"i32" => ast::LitIntType::Signed(ast::IntTy::I32),
|
|
|
|
"i64" => ast::LitIntType::Signed(ast::IntTy::I64),
|
2016-08-23 00:56:52 +00:00
|
|
|
"i128" => ast::LitIntType::Signed(ast::IntTy::I128),
|
2018-01-04 01:12:04 +00:00
|
|
|
"usize" => ast::LitIntType::Unsigned(ast::UintTy::Usize),
|
2016-02-08 16:16:23 +00:00
|
|
|
"u8" => ast::LitIntType::Unsigned(ast::UintTy::U8),
|
|
|
|
"u16" => ast::LitIntType::Unsigned(ast::UintTy::U16),
|
|
|
|
"u32" => ast::LitIntType::Unsigned(ast::UintTy::U32),
|
|
|
|
"u64" => ast::LitIntType::Unsigned(ast::UintTy::U64),
|
2016-08-23 00:56:52 +00:00
|
|
|
"u128" => ast::LitIntType::Unsigned(ast::UintTy::U128),
|
2016-11-16 10:52:37 +00:00
|
|
|
suf => {
|
2014-11-19 09:22:54 +00:00
|
|
|
// i<digits> and u<digits> look like widths, so lets
|
|
|
|
// give an error message along those lines
|
2017-03-03 09:23:59 +00:00
|
|
|
err!(diag, |span, diag| {
|
|
|
|
if looks_like_width_suffix(&['i', 'u'], suf) {
|
|
|
|
let msg = format!("invalid width `{}` for integer literal", &suf[1..]);
|
|
|
|
diag.struct_span_err(span, &msg)
|
|
|
|
.help("valid widths are 8, 16, 32, 64 and 128")
|
|
|
|
.emit();
|
|
|
|
} else {
|
|
|
|
let msg = format!("invalid suffix `{}` for numeric literal", suf);
|
|
|
|
diag.struct_span_err(span, &msg)
|
2019-01-12 07:37:49 +00:00
|
|
|
.span_label(span, format!("invalid suffix `{}`", suf))
|
2017-03-03 09:23:59 +00:00
|
|
|
.help("the suffix must be one of the integral types \
|
|
|
|
(`u32`, `isize`, etc)")
|
|
|
|
.emit();
|
|
|
|
}
|
|
|
|
});
|
2014-11-19 09:22:54 +00:00
|
|
|
|
|
|
|
ty
|
2014-06-18 17:44:20 +00:00
|
|
|
}
|
2014-11-19 09:22:54 +00:00
|
|
|
}
|
2014-06-18 17:44:20 +00:00
|
|
|
}
|
|
|
|
|
2014-12-20 08:09:35 +00:00
|
|
|
debug!("integer_lit: the type is {:?}, base {:?}, the new string is {:?}, the original \
|
|
|
|
string was {:?}, the original suffix was {:?}", ty, base, s, orig, suffix);
|
2014-08-05 07:59:03 +00:00
|
|
|
|
2017-03-03 09:23:59 +00:00
|
|
|
Some(match u128::from_str_radix(s, base) {
|
2016-02-08 16:06:20 +00:00
|
|
|
Ok(r) => ast::LitKind::Int(r, ty),
|
2016-02-11 08:52:55 +00:00
|
|
|
Err(_) => {
|
2015-03-30 13:27:13 +00:00
|
|
|
// small bases are lexed as if they were base 10, e.g, the string
|
|
|
|
// might be `0b10201`. This will cause the conversion above to fail,
|
|
|
|
// but these cases have errors in the lexer: we don't want to emit
|
|
|
|
// two errors, and we especially don't want to emit this error since
|
|
|
|
// it isn't necessarily true.
|
|
|
|
let already_errored = base < 10 &&
|
|
|
|
s.chars().any(|c| c.to_digit(10).map_or(false, |d| d >= base));
|
|
|
|
|
|
|
|
if !already_errored {
|
2017-03-03 09:23:59 +00:00
|
|
|
err!(diag, |span, diag| diag.span_err(span, "int literal is too large"));
|
2015-03-30 13:27:13 +00:00
|
|
|
}
|
2016-02-08 16:06:20 +00:00
|
|
|
ast::LitKind::Int(0, ty)
|
2015-03-30 13:27:13 +00:00
|
|
|
}
|
2017-03-03 09:23:59 +00:00
|
|
|
})
|
2014-06-18 17:44:20 +00:00
|
|
|
}
|
|
|
|
|
2019-02-08 13:53:55 +00:00
|
|
|
/// A sequence separator.
|
2018-06-26 22:59:07 +00:00
|
|
|
pub struct SeqSep {
|
2019-02-08 13:53:55 +00:00
|
|
|
/// The seperator token.
|
2018-06-26 22:59:07 +00:00
|
|
|
pub sep: Option<token::Token>,
|
2019-02-08 13:53:55 +00:00
|
|
|
/// `true` if a trailing separator is allowed.
|
2018-06-26 22:59:07 +00:00
|
|
|
pub trailing_sep_allowed: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SeqSep {
|
|
|
|
pub fn trailing_allowed(t: token::Token) -> SeqSep {
|
|
|
|
SeqSep {
|
|
|
|
sep: Some(t),
|
|
|
|
trailing_sep_allowed: true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn none() -> SeqSep {
|
|
|
|
SeqSep {
|
|
|
|
sep: None,
|
|
|
|
trailing_sep_allowed: false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-04 21:15:17 +00:00
|
|
|
#[cfg(test)]
|
2015-04-24 15:30:41 +00:00
|
|
|
mod tests {
|
2013-02-04 21:15:17 +00:00
|
|
|
use super::*;
|
2019-02-06 17:33:01 +00:00
|
|
|
use crate::ast::{self, Ident, PatKind};
|
|
|
|
use crate::attr::first_attr_value_str_by_name;
|
|
|
|
use crate::ptr::P;
|
|
|
|
use crate::print::pprust::item_to_string;
|
|
|
|
use crate::tokenstream::{DelimSpan, TokenTree};
|
|
|
|
use crate::util::parser_testing::string_to_stream;
|
|
|
|
use crate::util::parser_testing::{string_to_expr, string_to_item};
|
|
|
|
use crate::with_globals;
|
2018-06-26 22:59:07 +00:00
|
|
|
use syntax_pos::{Span, BytePos, Pos, NO_EXPANSION};
|
2013-04-23 17:57:41 +00:00
|
|
|
|
2018-06-01 22:40:33 +00:00
|
|
|
/// Parses an item.
|
|
|
|
///
|
|
|
|
/// Returns `Ok(Some(item))` when successful, `Ok(None)` when no item was found, and `Err`
|
|
|
|
/// when a syntax error occurred.
|
|
|
|
fn parse_item_from_source_str(name: FileName, source: String, sess: &ParseSess)
|
2019-02-06 17:33:01 +00:00
|
|
|
-> PResult<'_, Option<P<ast::Item>>> {
|
2018-06-01 22:40:33 +00:00
|
|
|
new_parser_from_source_str(sess, name, source).parse_item()
|
|
|
|
}
|
|
|
|
|
2016-06-21 22:08:13 +00:00
|
|
|
// produce a syntax_pos::span
|
2013-11-20 16:32:29 +00:00
|
|
|
fn sp(a: u32, b: u32) -> Span {
|
2017-07-31 20:04:34 +00:00
|
|
|
Span::new(BytePos(a), BytePos(b), NO_EXPANSION)
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
2015-01-31 23:08:25 +00:00
|
|
|
#[should_panic]
|
2013-04-23 17:57:41 +00:00
|
|
|
#[test] fn bad_path_expr_1() {
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
string_to_expr("::abc::def::return".to_string());
|
|
|
|
})
|
2013-07-25 08:03:53 +00:00
|
|
|
}
|
2013-04-23 17:57:41 +00:00
|
|
|
|
2013-09-24 22:57:58 +00:00
|
|
|
// check the token-tree-ization of macros
|
2014-10-22 05:37:20 +00:00
|
|
|
#[test]
|
|
|
|
fn string_to_tts_macro () {
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
let tts: Vec<_> =
|
|
|
|
string_to_stream("macro_rules! zip (($a)=>($a))".to_string()).trees().collect();
|
|
|
|
let tts: &[TokenTree] = &tts[..];
|
|
|
|
|
|
|
|
match (tts.len(), tts.get(0), tts.get(1), tts.get(2), tts.get(3)) {
|
|
|
|
(
|
|
|
|
4,
|
2018-03-10 05:56:40 +00:00
|
|
|
Some(&TokenTree::Token(_, token::Ident(name_macro_rules, false))),
|
2018-03-07 01:44:10 +00:00
|
|
|
Some(&TokenTree::Token(_, token::Not)),
|
2018-03-10 05:56:40 +00:00
|
|
|
Some(&TokenTree::Token(_, token::Ident(name_zip, false))),
|
2018-11-29 23:02:04 +00:00
|
|
|
Some(&TokenTree::Delimited(_, macro_delim, ref macro_tts)),
|
2018-03-07 01:44:10 +00:00
|
|
|
)
|
|
|
|
if name_macro_rules.name == "macro_rules"
|
|
|
|
&& name_zip.name == "zip" => {
|
2019-01-09 05:53:14 +00:00
|
|
|
let tts = ¯o_tts.trees().collect::<Vec<_>>();
|
2018-03-07 01:44:10 +00:00
|
|
|
match (tts.len(), tts.get(0), tts.get(1), tts.get(2)) {
|
|
|
|
(
|
|
|
|
3,
|
2018-11-29 23:02:04 +00:00
|
|
|
Some(&TokenTree::Delimited(_, first_delim, ref first_tts)),
|
2018-03-07 01:44:10 +00:00
|
|
|
Some(&TokenTree::Token(_, token::FatArrow)),
|
2018-11-29 23:02:04 +00:00
|
|
|
Some(&TokenTree::Delimited(_, second_delim, ref second_tts)),
|
2018-03-07 01:44:10 +00:00
|
|
|
)
|
2018-11-29 23:02:04 +00:00
|
|
|
if macro_delim == token::Paren => {
|
2019-01-09 05:53:14 +00:00
|
|
|
let tts = &first_tts.trees().collect::<Vec<_>>();
|
2018-03-07 01:44:10 +00:00
|
|
|
match (tts.len(), tts.get(0), tts.get(1)) {
|
|
|
|
(
|
|
|
|
2,
|
|
|
|
Some(&TokenTree::Token(_, token::Dollar)),
|
2018-03-10 05:56:40 +00:00
|
|
|
Some(&TokenTree::Token(_, token::Ident(ident, false))),
|
2018-03-07 01:44:10 +00:00
|
|
|
)
|
2018-11-29 23:02:04 +00:00
|
|
|
if first_delim == token::Paren && ident.name == "a" => {},
|
|
|
|
_ => panic!("value 3: {:?} {:?}", first_delim, first_tts),
|
2018-03-07 01:44:10 +00:00
|
|
|
}
|
2019-01-09 05:53:14 +00:00
|
|
|
let tts = &second_tts.trees().collect::<Vec<_>>();
|
2018-03-07 01:44:10 +00:00
|
|
|
match (tts.len(), tts.get(0), tts.get(1)) {
|
|
|
|
(
|
|
|
|
2,
|
|
|
|
Some(&TokenTree::Token(_, token::Dollar)),
|
2018-03-10 05:56:40 +00:00
|
|
|
Some(&TokenTree::Token(_, token::Ident(ident, false))),
|
2018-03-07 01:44:10 +00:00
|
|
|
)
|
2018-11-29 23:02:04 +00:00
|
|
|
if second_delim == token::Paren && ident.name == "a" => {},
|
|
|
|
_ => panic!("value 4: {:?} {:?}", second_delim, second_tts),
|
2018-03-07 01:44:10 +00:00
|
|
|
}
|
|
|
|
},
|
2018-11-29 23:02:04 +00:00
|
|
|
_ => panic!("value 2: {:?} {:?}", macro_delim, macro_tts),
|
2018-03-07 01:44:10 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => panic!("value: {:?}",tts),
|
|
|
|
}
|
|
|
|
})
|
2013-09-24 22:57:58 +00:00
|
|
|
}
|
|
|
|
|
2014-10-25 23:51:41 +00:00
|
|
|
#[test]
|
2015-02-11 17:29:49 +00:00
|
|
|
fn string_to_tts_1() {
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
let tts = string_to_stream("fn a (b : i32) { b; }".to_string());
|
|
|
|
|
2018-12-11 23:01:08 +00:00
|
|
|
let expected = TokenStream::new(vec![
|
2018-03-10 05:56:40 +00:00
|
|
|
TokenTree::Token(sp(0, 2), token::Ident(Ident::from_str("fn"), false)).into(),
|
|
|
|
TokenTree::Token(sp(3, 4), token::Ident(Ident::from_str("a"), false)).into(),
|
2018-03-07 01:44:10 +00:00
|
|
|
TokenTree::Delimited(
|
2018-09-09 01:07:02 +00:00
|
|
|
DelimSpan::from_pair(sp(5, 6), sp(13, 14)),
|
2018-11-29 23:02:04 +00:00
|
|
|
token::DelimToken::Paren,
|
2018-12-11 23:01:08 +00:00
|
|
|
TokenStream::new(vec![
|
2018-11-29 23:02:04 +00:00
|
|
|
TokenTree::Token(sp(6, 7),
|
|
|
|
token::Ident(Ident::from_str("b"), false)).into(),
|
|
|
|
TokenTree::Token(sp(8, 9), token::Colon).into(),
|
|
|
|
TokenTree::Token(sp(10, 13),
|
|
|
|
token::Ident(Ident::from_str("i32"), false)).into(),
|
|
|
|
]).into(),
|
|
|
|
).into(),
|
2018-03-07 01:44:10 +00:00
|
|
|
TokenTree::Delimited(
|
2018-09-09 01:07:02 +00:00
|
|
|
DelimSpan::from_pair(sp(15, 16), sp(20, 21)),
|
2018-11-29 23:02:04 +00:00
|
|
|
token::DelimToken::Brace,
|
2018-12-11 23:01:08 +00:00
|
|
|
TokenStream::new(vec![
|
2018-11-29 23:02:04 +00:00
|
|
|
TokenTree::Token(sp(17, 18),
|
|
|
|
token::Ident(Ident::from_str("b"), false)).into(),
|
|
|
|
TokenTree::Token(sp(18, 19), token::Semi).into(),
|
|
|
|
]).into(),
|
|
|
|
).into()
|
2018-03-07 01:44:10 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
assert_eq!(tts, expected);
|
|
|
|
})
|
2013-04-23 17:57:41 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 21:37:59 +00:00
|
|
|
#[test] fn parse_use() {
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
let use_s = "use foo::bar::baz;";
|
|
|
|
let vitem = string_to_item(use_s.to_string()).unwrap();
|
|
|
|
let vitem_s = item_to_string(&vitem);
|
|
|
|
assert_eq!(&vitem_s[..], use_s);
|
|
|
|
|
|
|
|
let use_s = "use foo::bar as baz;";
|
|
|
|
let vitem = string_to_item(use_s.to_string()).unwrap();
|
|
|
|
let vitem_s = item_to_string(&vitem);
|
|
|
|
assert_eq!(&vitem_s[..], use_s);
|
|
|
|
})
|
2014-11-17 21:37:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn parse_extern_crate() {
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
let ex_s = "extern crate foo;";
|
|
|
|
let vitem = string_to_item(ex_s.to_string()).unwrap();
|
|
|
|
let vitem_s = item_to_string(&vitem);
|
|
|
|
assert_eq!(&vitem_s[..], ex_s);
|
|
|
|
|
|
|
|
let ex_s = "extern crate foo as bar;";
|
|
|
|
let vitem = string_to_item(ex_s.to_string()).unwrap();
|
|
|
|
let vitem_s = item_to_string(&vitem);
|
|
|
|
assert_eq!(&vitem_s[..], ex_s);
|
|
|
|
})
|
2014-11-17 21:37:59 +00:00
|
|
|
}
|
|
|
|
|
2014-10-15 17:04:29 +00:00
|
|
|
fn get_spans_of_pat_idents(src: &str) -> Vec<Span> {
|
|
|
|
let item = string_to_item(src.to_string()).unwrap();
|
|
|
|
|
|
|
|
struct PatIdentVisitor {
|
|
|
|
spans: Vec<Span>
|
|
|
|
}
|
2019-02-06 17:33:01 +00:00
|
|
|
impl<'a> crate::visit::Visitor<'a> for PatIdentVisitor {
|
2016-12-06 10:26:52 +00:00
|
|
|
fn visit_pat(&mut self, p: &'a ast::Pat) {
|
2014-10-15 17:04:29 +00:00
|
|
|
match p.node {
|
2016-02-11 18:16:33 +00:00
|
|
|
PatKind::Ident(_ , ref spannedident, _) => {
|
2014-10-15 17:04:29 +00:00
|
|
|
self.spans.push(spannedident.span.clone());
|
|
|
|
}
|
|
|
|
_ => {
|
2019-02-06 17:33:01 +00:00
|
|
|
crate::visit::walk_pat(self, p);
|
2014-10-15 17:04:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let mut v = PatIdentVisitor { spans: Vec::new() };
|
2019-02-06 17:33:01 +00:00
|
|
|
crate::visit::walk_item(&mut v, &item);
|
2014-10-15 17:04:29 +00:00
|
|
|
return v.spans;
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test] fn span_of_self_arg_pat_idents_are_correct() {
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
|
|
|
|
let srcs = ["impl z { fn a (&self, &myarg: i32) {} }",
|
|
|
|
"impl z { fn a (&mut self, &myarg: i32) {} }",
|
|
|
|
"impl z { fn a (&'a self, &myarg: i32) {} }",
|
|
|
|
"impl z { fn a (self, &myarg: i32) {} }",
|
|
|
|
"impl z { fn a (self: Foo, &myarg: i32) {} }",
|
|
|
|
];
|
|
|
|
|
|
|
|
for &src in &srcs {
|
|
|
|
let spans = get_spans_of_pat_idents(src);
|
|
|
|
let (lo, hi) = (spans[0].lo(), spans[0].hi());
|
|
|
|
assert!("self" == &src[lo.to_usize()..hi.to_usize()],
|
|
|
|
"\"{}\" != \"self\". src=\"{}\"",
|
|
|
|
&src[lo.to_usize()..hi.to_usize()], src)
|
|
|
|
}
|
|
|
|
})
|
2014-10-15 17:04:29 +00:00
|
|
|
}
|
2013-04-23 17:57:41 +00:00
|
|
|
|
|
|
|
#[test] fn parse_exprs () {
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
// just make sure that they parse....
|
|
|
|
string_to_expr("3 + 4".to_string());
|
|
|
|
string_to_expr("a::z.froob(b,&(987+3))".to_string());
|
|
|
|
})
|
2013-02-04 21:15:17 +00:00
|
|
|
}
|
2013-04-30 19:02:56 +00:00
|
|
|
|
|
|
|
#[test] fn attrs_fix_bug () {
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
string_to_item("pub fn mk_file_writer(path: &Path, flags: &[FileFlag])
|
2014-09-13 16:06:01 +00:00
|
|
|
-> Result<Box<Writer>, String> {
|
2013-04-30 19:02:56 +00:00
|
|
|
#[cfg(windows)]
|
|
|
|
fn wb() -> c_int {
|
|
|
|
(O_WRONLY | libc::consts::os::extra::O_BINARY) as c_int
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(unix)]
|
|
|
|
fn wb() -> c_int { O_WRONLY as c_int }
|
|
|
|
|
|
|
|
let mut fflags: c_int = wb();
|
2014-05-25 10:17:19 +00:00
|
|
|
}".to_string());
|
2018-03-07 01:44:10 +00:00
|
|
|
})
|
2013-04-30 19:02:56 +00:00
|
|
|
}
|
|
|
|
|
2014-05-24 08:13:59 +00:00
|
|
|
#[test] fn crlf_doc_comments() {
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
let sess = ParseSess::new(FilePathMapping::empty());
|
|
|
|
|
2018-12-04 20:18:03 +00:00
|
|
|
let name_1 = FileName::Custom("crlf_source_1".to_string());
|
2018-03-07 01:44:10 +00:00
|
|
|
let source = "/// doc comment\r\nfn foo() {}".to_string();
|
2018-12-04 20:18:03 +00:00
|
|
|
let item = parse_item_from_source_str(name_1, source, &sess)
|
2018-03-07 01:44:10 +00:00
|
|
|
.unwrap().unwrap();
|
|
|
|
let doc = first_attr_value_str_by_name(&item.attrs, "doc").unwrap();
|
|
|
|
assert_eq!(doc, "/// doc comment");
|
|
|
|
|
2018-12-04 20:18:03 +00:00
|
|
|
let name_2 = FileName::Custom("crlf_source_2".to_string());
|
2018-03-07 01:44:10 +00:00
|
|
|
let source = "/// doc comment\r\n/// line 2\r\nfn foo() {}".to_string();
|
2018-12-04 20:18:03 +00:00
|
|
|
let item = parse_item_from_source_str(name_2, source, &sess)
|
2018-03-07 01:44:10 +00:00
|
|
|
.unwrap().unwrap();
|
|
|
|
let docs = item.attrs.iter().filter(|a| a.path == "doc")
|
|
|
|
.map(|a| a.value_str().unwrap().to_string()).collect::<Vec<_>>();
|
|
|
|
let b: &[_] = &["/// doc comment".to_string(), "/// line 2".to_string()];
|
|
|
|
assert_eq!(&docs[..], b);
|
|
|
|
|
2018-12-04 20:18:03 +00:00
|
|
|
let name_3 = FileName::Custom("clrf_source_3".to_string());
|
2018-03-07 01:44:10 +00:00
|
|
|
let source = "/** doc comment\r\n * with CRLF */\r\nfn foo() {}".to_string();
|
2018-12-04 20:18:03 +00:00
|
|
|
let item = parse_item_from_source_str(name_3, source, &sess).unwrap().unwrap();
|
2018-03-07 01:44:10 +00:00
|
|
|
let doc = first_attr_value_str_by_name(&item.attrs, "doc").unwrap();
|
|
|
|
assert_eq!(doc, "/** doc comment\n * with CRLF */");
|
|
|
|
});
|
2014-05-24 08:13:59 +00:00
|
|
|
}
|
2015-01-31 22:54:43 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn ttdelim_span() {
|
2018-06-01 22:40:33 +00:00
|
|
|
fn parse_expr_from_source_str(
|
|
|
|
name: FileName, source: String, sess: &ParseSess
|
2019-02-06 17:33:01 +00:00
|
|
|
) -> PResult<'_, P<ast::Expr>> {
|
2018-06-01 22:40:33 +00:00
|
|
|
new_parser_from_source_str(sess, name, source).parse_expr()
|
|
|
|
}
|
|
|
|
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
let sess = ParseSess::new(FilePathMapping::empty());
|
2018-06-01 22:40:33 +00:00
|
|
|
let expr = parse_expr_from_source_str(PathBuf::from("foo").into(),
|
2018-03-07 01:44:10 +00:00
|
|
|
"foo!( fn main() { body } )".to_string(), &sess).unwrap();
|
|
|
|
|
|
|
|
let tts: Vec<_> = match expr.node {
|
|
|
|
ast::ExprKind::Mac(ref mac) => mac.node.stream().trees().collect(),
|
|
|
|
_ => panic!("not a macro"),
|
|
|
|
};
|
2015-01-31 22:54:43 +00:00
|
|
|
|
2018-03-07 01:44:10 +00:00
|
|
|
let span = tts.iter().rev().next().unwrap().span();
|
2015-01-31 22:54:43 +00:00
|
|
|
|
2018-08-18 10:14:09 +00:00
|
|
|
match sess.source_map().span_to_snippet(span) {
|
2018-03-07 01:44:10 +00:00
|
|
|
Ok(s) => assert_eq!(&s[..], "{ body }"),
|
|
|
|
Err(_) => panic!("could not get snippet"),
|
|
|
|
}
|
|
|
|
});
|
2015-01-31 22:54:43 +00:00
|
|
|
}
|
2017-05-17 22:37:24 +00:00
|
|
|
|
|
|
|
// This tests that when parsing a string (rather than a file) we don't try
|
|
|
|
// and read in a file for a module declaration and just parse a stub.
|
|
|
|
// See `recurse_into_file_modules` in the parser.
|
|
|
|
#[test]
|
|
|
|
fn out_of_line_mod() {
|
2018-03-07 01:44:10 +00:00
|
|
|
with_globals(|| {
|
|
|
|
let sess = ParseSess::new(FilePathMapping::empty());
|
|
|
|
let item = parse_item_from_source_str(
|
|
|
|
PathBuf::from("foo").into(),
|
|
|
|
"mod foo { struct S; mod this_does_not_exist; }".to_owned(),
|
|
|
|
&sess,
|
|
|
|
).unwrap().unwrap();
|
|
|
|
|
|
|
|
if let ast::ItemKind::Mod(ref m) = item.node {
|
|
|
|
assert!(m.items.len() == 2);
|
|
|
|
} else {
|
|
|
|
panic!();
|
|
|
|
}
|
|
|
|
});
|
2017-05-17 22:37:24 +00:00
|
|
|
}
|
2013-02-04 21:15:17 +00:00
|
|
|
}
|