Skip to content

Commit a1b5dfa

Browse files
authored
Rollup merge of rust-lang#64759 - matklad:simplify-macro, r=petrochenkov
Refactor mbe a tiny bit
2 parents 3e9d189 + f60a873 commit a1b5dfa

File tree

3 files changed

+18
-48
lines changed

3 files changed

+18
-48
lines changed

src/libsyntax/ext/mbe/macro_parser.rs

-12
Original file line numberDiff line numberDiff line change
@@ -413,18 +413,6 @@ fn nameize<I: Iterator<Item = NamedMatch>>(
413413
Success(ret_val)
414414
}
415415

416-
/// Generates an appropriate parsing failure message. For EOF, this is "unexpected end...". For
417-
/// other tokens, this is "unexpected token...".
418-
crate fn parse_failure_msg(tok: &Token) -> String {
419-
match tok.kind {
420-
token::Eof => "unexpected end of macro invocation".to_string(),
421-
_ => format!(
422-
"no rules expected the token `{}`",
423-
pprust::token_to_string(tok)
424-
),
425-
}
426-
}
427-
428416
/// Performs a token equality check, ignoring syntax context (that is, an unhygienic comparison)
429417
fn token_name_eq(t1: &Token, t2: &Token) -> bool {
430418
if let (Some((ident1, is_raw1)), Some((ident2, is_raw2))) = (t1.ident(), t2.ident()) {

src/libsyntax/ext/mbe/macro_rules.rs

+14-9
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use crate::ext::base::{SyntaxExtension, SyntaxExtensionKind};
66
use crate::ext::expand::{AstFragment, AstFragmentKind};
77
use crate::ext::mbe;
88
use crate::ext::mbe::macro_check;
9-
use crate::ext::mbe::macro_parser::{parse, parse_failure_msg};
9+
use crate::ext::mbe::macro_parser::parse;
1010
use crate::ext::mbe::macro_parser::{Error, Failure, Success};
1111
use crate::ext::mbe::macro_parser::{MatchedNonterminal, MatchedSeq, NamedParseResult};
1212
use crate::ext::mbe::transcribe::transcribe;
@@ -15,6 +15,7 @@ use crate::parse::parser::Parser;
1515
use crate::parse::token::TokenKind::*;
1616
use crate::parse::token::{self, NtTT, Token};
1717
use crate::parse::{Directory, ParseSess};
18+
use crate::print::pprust;
1819
use crate::symbol::{kw, sym, Symbol};
1920
use crate::tokenstream::{DelimSpan, TokenStream, TokenTree};
2021

@@ -371,10 +372,6 @@ pub fn compile_declarative_macro(
371372
tt.clone().into(),
372373
true,
373374
sess,
374-
features,
375-
&def.attrs,
376-
edition,
377-
def.id,
378375
)
379376
.pop()
380377
.unwrap();
@@ -398,10 +395,6 @@ pub fn compile_declarative_macro(
398395
tt.clone().into(),
399396
false,
400397
sess,
401-
features,
402-
&def.attrs,
403-
edition,
404-
def.id,
405398
)
406399
.pop()
407400
.unwrap();
@@ -1184,3 +1177,15 @@ impl TokenTree {
11841177
parse(cx.parse_sess(), tts, mtch, Some(directory), true)
11851178
}
11861179
}
1180+
1181+
/// Generates an appropriate parsing failure message. For EOF, this is "unexpected end...". For
1182+
/// other tokens, this is "unexpected token...".
1183+
fn parse_failure_msg(tok: &Token) -> String {
1184+
match tok.kind {
1185+
token::Eof => "unexpected end of macro invocation".to_string(),
1186+
_ => format!(
1187+
"no rules expected the token `{}`",
1188+
pprust::token_to_string(tok),
1189+
),
1190+
}
1191+
}

src/libsyntax/ext/mbe/quoted.rs

+4-27
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
use crate::ast;
2-
use crate::ast::NodeId;
32
use crate::ext::mbe::macro_parser;
43
use crate::ext::mbe::{TokenTree, KleeneOp, KleeneToken, SequenceRepetition, Delimited};
5-
use crate::feature_gate::Features;
64
use crate::parse::token::{self, Token};
75
use crate::parse::ParseSess;
86
use crate::print::pprust;
97
use crate::symbol::kw;
108
use crate::tokenstream;
119

12-
use syntax_pos::{edition::Edition, Span};
10+
use syntax_pos::Span;
1311

1412
use rustc_data_structures::sync::Lrc;
15-
use std::iter::Peekable;
1613

1714
/// Takes a `tokenstream::TokenStream` and returns a `Vec<self::TokenTree>`. Specifically, this
1815
/// takes a generic `TokenStream`, such as is used in the rest of the compiler, and returns a
@@ -39,17 +36,13 @@ pub(super) fn parse(
3936
input: tokenstream::TokenStream,
4037
expect_matchers: bool,
4138
sess: &ParseSess,
42-
features: &Features,
43-
attrs: &[ast::Attribute],
44-
edition: Edition,
45-
macro_node_id: NodeId,
4639
) -> Vec<TokenTree> {
4740
// Will contain the final collection of `self::TokenTree`
4841
let mut result = Vec::new();
4942

5043
// For each token tree in `input`, parse the token into a `self::TokenTree`, consuming
5144
// additional trees if need be.
52-
let mut trees = input.trees().peekable();
45+
let mut trees = input.trees();
5346
while let Some(tree) = trees.next() {
5447
// Given the parsed tree, if there is a metavar and we are expecting matchers, actually
5548
// parse out the matcher (i.e., in `$id:ident` this would parse the `:` and `ident`).
@@ -58,10 +51,6 @@ pub(super) fn parse(
5851
&mut trees,
5952
expect_matchers,
6053
sess,
61-
features,
62-
attrs,
63-
edition,
64-
macro_node_id,
6554
);
6655
match tree {
6756
TokenTree::MetaVar(start_sp, ident) if expect_matchers => {
@@ -109,13 +98,9 @@ pub(super) fn parse(
10998
/// unstable features or not.
11099
fn parse_tree(
111100
tree: tokenstream::TokenTree,
112-
trees: &mut Peekable<impl Iterator<Item = tokenstream::TokenTree>>,
101+
trees: &mut impl Iterator<Item = tokenstream::TokenTree>,
113102
expect_matchers: bool,
114103
sess: &ParseSess,
115-
features: &Features,
116-
attrs: &[ast::Attribute],
117-
edition: Edition,
118-
macro_node_id: NodeId,
119104
) -> TokenTree {
120105
// Depending on what `tree` is, we could be parsing different parts of a macro
121106
match tree {
@@ -135,10 +120,6 @@ fn parse_tree(
135120
tts.into(),
136121
expect_matchers,
137122
sess,
138-
features,
139-
attrs,
140-
edition,
141-
macro_node_id,
142123
);
143124
// Get the Kleene operator and optional separator
144125
let (separator, kleene) = parse_sep_and_kleene_op(trees, span.entire(), sess);
@@ -192,10 +173,6 @@ fn parse_tree(
192173
tts.into(),
193174
expect_matchers,
194175
sess,
195-
features,
196-
attrs,
197-
edition,
198-
macro_node_id,
199176
),
200177
}),
201178
),
@@ -244,7 +221,7 @@ fn parse_kleene_op(
244221
/// operator and separator, then a tuple with `(separator, KleeneOp)` is returned. Otherwise, an
245222
/// error with the appropriate span is emitted to `sess` and a dummy value is returned.
246223
fn parse_sep_and_kleene_op(
247-
input: &mut Peekable<impl Iterator<Item = tokenstream::TokenTree>>,
224+
input: &mut impl Iterator<Item = tokenstream::TokenTree>,
248225
span: Span,
249226
sess: &ParseSess,
250227
) -> (Option<Token>, KleeneToken) {

0 commit comments

Comments
 (0)