We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d16b1f4 commit cfc1aa3Copy full SHA for cfc1aa3
compiler/rustc_parse/src/parser/mod.rs
@@ -265,9 +265,9 @@ impl TokenCursor {
265
#[inline(always)]
266
fn inlined_next(&mut self) -> (Token, Spacing) {
267
loop {
268
- // FIXME: we currently don't return `Delimiter` open/close delims. To fix #67062 we will
269
- // need to, whereupon the `delim != Delimiter::Invisible` conditions below can be
270
- // removed.
+ // FIXME: we currently don't return `Delimiter::Invisible` open/close delims. To fix
+ // #67062 we will need to, whereupon the `delim != Delimiter::Invisible` conditions
+ // below can be removed.
271
if let Some(tree) = self.tree_cursor.next_ref() {
272
match tree {
273
&TokenTree::Token(ref token, spacing) => {
0 commit comments