dimitriv / Ziria

A domain-specific-language and compiler for low-level bitstream processing.
92 stars 18 forks source link

bit shift operator precedence is wrong #100

Open bradunov opened 9 years ago

bradunov commented 9 years ago

3 << 2 + 1 is parsed as 3 << (2+1) and not as (3<<2) + 1