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
In Scala.js mode, compile all lazy vals as thread-unsafe.
Since JS is a single-threaded environment, there is no point going
through all the machinery of thread-safe lazy vals.
This fixes lazy vals for JS, which would previously fail to link
because of the dependency on `Unsafe`, which is not supported in
Scala.js.
0 commit comments