We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a81d020 commit 0033de1Copy full SHA for 0033de1
compiler/rustc_parse/src/parser/mod.rs
@@ -750,7 +750,6 @@ impl<'a> Parser<'a> {
750
}
751
752
/// Eats `+` possibly breaking tokens like `+=` in process.
753
- #[inline]
754
fn eat_plus(&mut self) -> bool {
755
self.break_and_eat(token::BinOp(token::Plus))
756
@@ -768,7 +767,6 @@ impl<'a> Parser<'a> {
768
767
769
770
/// Eats `<` possibly breaking tokens like `<<` in process.
771
772
fn eat_lt(&mut self) -> bool {
773
let ate = self.break_and_eat(token::Lt);
774
if ate {
@@ -1518,7 +1516,6 @@ impl<'a> Parser<'a> {
1518
1516
1519
1517
1520
/// `::{` or `::*`
1521
1522
fn is_import_coupler(&mut self) -> bool {
1523
self.check(&token::ModSep)
1524
&& self.look_ahead(1, |t| {
0 commit comments