konsoletyper / teavm

Compiles Java bytecode to JavaScript, WebAssembly and C
https://teavm.org
Apache License 2.0
2.55k stars 261 forks source link

Fix missing .shift() in ReferenceQueue.poll #852

Closed SquidDev closed 7 months ago

SquidDev commented 7 months ago

32ee8943c1060b4a196f1b2d3e6a15cabd6ec9ad ported some of the reference code from being generated in Java to a JS intrinsic. However, this missed a .shift(), causing runtime errors when using the result of ReferenceQueue.poll.

This commit just adds back the .shift().