add tests for associativity and precedence
I added the following:
more_tests/tests/bruno
├── associativity
│ ├── and.choc
│ ├── division.choc
│ ├── if.choc
│ ├── index.choc
│ ├── minus.choc
│ ├── modulo.choc
│ ├── multiplication.choc
│ ├── or.choc
│ └── plus.choc
└── precedence
├── 4_negate.choc
├── and.choc
├── complex1.choc
├── div.choc
├── double_negate.choc
├── eq.choc
├── ge.choc
├── gt.choc
├── if_else_expr.choc
├── index.choc
├── is.choc
├── le.choc
├── lt.choc
├── mod.choc
├── mul.choc
├── ne.choc
├── negate.choc
├── not.choc
├── notnot.choc
├── or.choc
└── Output
I reviewed all output generated by my parser and I think it looks good.
Edited by Nathanael Sandy