File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
compiler/rustc_parse/src/parser Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -750,7 +750,6 @@ impl<'a> Parser<'a> {
750
750
}
751
751
752
752
/// Eats `+` possibly breaking tokens like `+=` in process.
753
- #[ inline]
754
753
fn eat_plus ( & mut self ) -> bool {
755
754
self . break_and_eat ( token:: BinOp ( token:: Plus ) )
756
755
}
@@ -768,7 +767,6 @@ impl<'a> Parser<'a> {
768
767
}
769
768
770
769
/// Eats `<` possibly breaking tokens like `<<` in process.
771
- #[ inline]
772
770
fn eat_lt ( & mut self ) -> bool {
773
771
let ate = self . break_and_eat ( token:: Lt ) ;
774
772
if ate {
@@ -1518,7 +1516,6 @@ impl<'a> Parser<'a> {
1518
1516
}
1519
1517
1520
1518
/// `::{` or `::*`
1521
- #[ inline]
1522
1519
fn is_import_coupler ( & mut self ) -> bool {
1523
1520
self . check ( & token:: ModSep )
1524
1521
&& self . look_ahead ( 1 , |t| {
You can’t perform that action at this time.
0 commit comments