Sébastien Doeraene
Sébastien Doeraene
> I can do a PR against libraries/skeletons.md if needed Sounds good. :)
> More broadly how is this repo kept in sync with browser APIs? By PRs from users who notice that something's not up to date. ScalablyTyped focuses on applications by...
Is it what's covered in the last section of http://www.scala-js.org/doc/project/cross-build.html ?
FWIW, the Scala.js optimizer does intrinsify those three methods, and replaces them with the appropriate IR node (bytecode) if the array argument is known to have an array type (as...
Advertising a regression I had found in 2.10.7 and 2.11.12: https://github.com/scala/bug/issues/10609 Note that personally, I don't care whether it's going to be fixed or not; I just disabled the failing...
I'm kind of responsible for the pattern matcher in Scala 3, although I did not write its first iteration. I can't tell how the history of synthetic-ness for patmat variables...
Just pointing out that this will make it harder to compile scalac with non-JVM backends (duh, I can't just write "Scala.js" in those cases anymore ^^). It would be good...
FTR, here are the parts of the Scala.js optimizer where we do that: - [`isElidableModuleConstructor`](https://github.com/scala-js/scala-js/blob/2cce91605d34c2f3afc8e35262144539ca8ceb7a/tools/shared/src/main/scala/org/scalajs/core/tools/optimizer/GenIncOptimizer.scala#L607-L636) decides whether a constructor (and the constructors it calls, including trait impl class' `$init$` methods)...
I am taking a look at it. First, answering some questions: > I'm not cross-building the sbt plugin and vscode integration in this PR, just because I'd like to focus...
All right, the CI is up and running on the `main` branch using GitHub Actions :)