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
With code like 4 << 2, the JS tokeniser incorrectly makes this into T_LESS_THAN, T_LESS_THAN. This should instead be T_SL. (Ditto for T_SR instead of `T_GREATER_THAN, T_GREATER_THAN.)
The text was updated successfully, but these errors were encountered:
With code like
4 << 2
, the JS tokeniser incorrectly makes this intoT_LESS_THAN, T_LESS_THAN
. This should instead beT_SL
. (Ditto forT_SR
instead of `T_GREATER_THAN, T_GREATER_THAN.)The text was updated successfully, but these errors were encountered: