You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
e059f61: Fix issue with binary expressions not handling their lhs value properly. The specific issue was that if you had a compound assignment or called a function from the right hand side of the expression which modified the value that the left hand side was using, the left hand side would use that modified value. Where it should've been using the unmodified value since the left hand side was evaluated first. Reported by @ureishi
46342da: Fix with calling methods on array elements of user defined type arrays, reported by AirGamer