mbe: leave a FIXME

This commit is contained in:
Mazdak Farrokhzad 2019-10-09 01:52:19 +02:00
parent 9dc07b05d5
commit 904168fe14

View file

@ -890,6 +890,9 @@ fn may_begin_with(token: &Token, name: Name) -> bool {
///
/// The parsed non-terminal.
fn parse_nt(p: &mut Parser<'_>, sp: Span, name: Symbol) -> Nonterminal {
// FIXME(Centril): Consider moving this to `parser.rs` to make
// the visibilities of the methods used below `pub(super)` at most.
if name == sym::tt {
return token::NtTT(p.parse_token_tree());
}