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
Describe the bug
DeviceScript panics, saying Exception: InfiniteLoop wrongly
To Reproduce
create two random buffers, one of the size of 4500-5000 and the other with the size of 4
loop over the big buffer, running bigBuffer[i] ^= smallBuffer[i % 4] in it
see error
Expected behavior
The loop runs and finishes successfully.
Screenshots
Additional context
I'm running through the devicescript simulator, experienced while creating a websocket library for devicescript. The loop is needed for masking the message.
The text was updated successfully, but these errors were encountered:
Describe the bug
DeviceScript panics, saying
Exception: InfiniteLoop
wronglyTo Reproduce
bigBuffer[i] ^= smallBuffer[i % 4]
in itExpected behavior
The loop runs and finishes successfully.
Screenshots
Additional context
I'm running through the devicescript simulator, experienced while creating a websocket library for devicescript. The loop is needed for masking the message.
The text was updated successfully, but these errors were encountered: