File tree Expand file tree Collapse file tree 3 files changed +2
-1
lines changed
Expand file tree Collapse file tree 3 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -453,7 +453,6 @@ def p_expr(self, args):
453453 _mklambda ::= load_closure mklambda
454454 _mklambda ::= mklambda
455455
456- or ::= expr jmp_true expr come_from_opt
457456 and2 ::= _jump jmp_false COME_FROM expr COME_FROM
458457
459458 expr ::= conditional
Original file line number Diff line number Diff line change @@ -216,6 +216,7 @@ def p_expr2(self, args):
216216 expr ::= unary_convert
217217
218218 and ::= expr jmp_false expr come_from_opt
219+ or ::= expr jmp_true expr come_from_opt
219220
220221 slice0 ::= expr SLICE+0
221222 slice0 ::= expr DUP_TOP SLICE+0
Original file line number Diff line number Diff line change @@ -232,6 +232,7 @@ def p_grammar(self, args):
232232 WITH_CLEANUP END_FINALLY
233233
234234 and ::= expr jmp_false expr COME_FROM
235+ or ::= expr jmp_true expr COME_FROM
235236 '''
236237
237238 def p_misc3 (self , args ):
You can’t perform that action at this time.
0 commit comments