Compiler with operator precedence parsing
class ABC::Actions is HLL::Actions {
method TOP($/) {
make PAST::Block.new( $<EXPR>.ast );
}
method term:sym<value>($/) {
make $<integer>.ast;
}
method circumfix:sym<( )>($/) {
make $<EXPR>.ast;
}
}