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> {
750750 }
751751
752752 /// Eats `+` possibly breaking tokens like `+=` in process.
753- #[ inline]
754753 fn eat_plus ( & mut self ) -> bool {
755754 self . break_and_eat ( token:: BinOp ( token:: Plus ) )
756755 }
@@ -768,7 +767,6 @@ impl<'a> Parser<'a> {
768767 }
769768
770769 /// Eats `<` possibly breaking tokens like `<<` in process.
771- #[ inline]
772770 fn eat_lt ( & mut self ) -> bool {
773771 let ate = self . break_and_eat ( token:: Lt ) ;
774772 if ate {
@@ -1518,7 +1516,6 @@ impl<'a> Parser<'a> {
15181516 }
15191517
15201518 /// `::{` or `::*`
1521- #[ inline]
15221519 fn is_import_coupler ( & mut self ) -> bool {
15231520 self . check ( & token:: ModSep )
15241521 && self . look_ahead ( 1 , |t| {
You can’t perform that action at this time.
0 commit comments