File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5959
606027 . * Datatype* -> __ int__ | __ float__ | __ string__
6161
62- 28 . * Expression* -> * Term* ( ( __ -__ | __ +__ ) * Term * )?
62+ 28 . * Expression* -> * Term* ( ( __ -__ | __ +__ ) * Expression * )?
6363
646429 . * Term* -> * Factor* ( ( __ * __ | __ /__ ) * Term* )?
6565
Original file line number Diff line number Diff line change 6767
686831 . * Datatype* -> __ int__ | __ float__ | __ string__
6969
70- 32 . * Expression* -> * Term* ( ( __ -__ | __ +__ ) * Term * | $\epsilon$ )
70+ 32 . * Expression* -> * Term* ( ( __ -__ | __ +__ ) * Expression * | $\epsilon$ )
7171
727233 . * Term* -> * Factor* ( ( __ * __ | __ /__ ) * Term* | $\epsilon$ )
7373
Original file line number Diff line number Diff line change @@ -447,7 +447,7 @@ private Node Expr()
447447 if ( Match ( TokenClass . Minus , TokenClass . Plus ) )
448448 {
449449 n . Children . Add ( PreviousNode ( ) ) ;
450- n . Children . Add ( Term ( ) ) ;
450+ n . Children . Add ( Expr ( ) ) ;
451451 }
452452
453453 return n ;
You can’t perform that action at this time.
0 commit comments