brendan-duncan/wgsl_reflect

++ and += not parsed

mighdoll opened this issue · 2 comments

e.g.


fn foo() {
    var b = 1;
    b+=1;
    b++;
}

I'll get these added.

I pushed an update with the recent WGSL changes: ++, --, +=, -=, *=, /=, |=, &=, ^=, >>=, <<=, const, and static_assert.