We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a65d79 commit e00bafeCopy full SHA for e00bafe
src/HLL/Grammar.pm
@@ -770,16 +770,22 @@ An operator precedence parser.
770
771
op_list:
772
.local string sym
773
+ sym = ''
774
$P0 = opOPER['sym']
775
+ if null $P0 goto op_list_1
776
sym = $P0
777
+ op_list_1:
778
arg = pop termstack
779
unshift op, arg
780
op_sym_loop:
781
unless opstack goto op_sym_done
782
+ $S0 = ''
783
$P0 = opstack[-1]
784
$P0 = $P0['OPER']
785
$P0 = $P0['sym']
786
+ if null $P0 goto op_sym_1
787
$S0 = $P0
788
+ op_sym_1:
789
if sym != $S0 goto op_sym_done
790
791
0 commit comments