File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -3051,6 +3051,7 @@ impl<'a> Parser<'a> {
3051
3051
///
3052
3052
/// This parses an expression accounting for associativity and precedence of the operators in
3053
3053
/// the expression.
3054
+ #[ inline]
3054
3055
fn parse_assoc_expr ( & mut self ,
3055
3056
already_parsed_attrs : Option < ThinVec < Attribute > > )
3056
3057
-> PResult < ' a , P < Expr > > {
@@ -3711,6 +3712,7 @@ impl<'a> Parser<'a> {
3711
3712
}
3712
3713
3713
3714
/// Parse an expression
3715
+ #[ inline]
3714
3716
pub fn parse_expr ( & mut self ) -> PResult < ' a , P < Expr > > {
3715
3717
self . parse_expr_res ( Restrictions :: empty ( ) , None )
3716
3718
}
@@ -3730,6 +3732,7 @@ impl<'a> Parser<'a> {
3730
3732
}
3731
3733
3732
3734
/// Parse an expression, subject to the given restrictions
3735
+ #[ inline]
3733
3736
fn parse_expr_res ( & mut self , r : Restrictions ,
3734
3737
already_parsed_attrs : Option < ThinVec < Attribute > > )
3735
3738
-> PResult < ' a , P < Expr > > {
You can’t perform that action at this time.
0 commit comments