File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -816,21 +816,21 @@ AndExpression: ast::Expr = {
816
816
};
817
817
818
818
ShiftExpression: ast::Expr = {
819
- <e1:ShiftExpression> <location:@L> <op:ShiftOp> <e2:ArithmaticExpression > => ast::Expr {
819
+ <e1:ShiftExpression> <location:@L> <op:ShiftOp> <e2:ArithmeticExpression > => ast::Expr {
820
820
location,
821
821
custom: (),
822
822
node: ast::ExprKind::BinOp { left: Box::new(e1), op, right: Box::new(e2) }
823
823
},
824
- ArithmaticExpression ,
824
+ ArithmeticExpression ,
825
825
};
826
826
827
827
ShiftOp: ast::Operator = {
828
828
"<<" => ast::Operator::LShift,
829
829
">>" => ast::Operator::RShift,
830
830
};
831
831
832
- ArithmaticExpression : ast::Expr = {
833
- <a:ArithmaticExpression > <location:@L> <op:AddOp> <b:Term> => ast::Expr {
832
+ ArithmeticExpression : ast::Expr = {
833
+ <a:ArithmeticExpression > <location:@L> <op:AddOp> <b:Term> => ast::Expr {
834
834
location,
835
835
custom: (),
836
836
node: ast::ExprKind::BinOp { left: Box::new(a), op, right: Box::new(b) }
You can’t perform that action at this time.
0 commit comments