Scala.js contains a reimplementation of part of the JDK in Scala.js itself.
To contribute to this code, it is strictly forbidden to even look at the source code of the Oracle JDK or OpenJDK!
This is for license considerations: these JDKs are under a GPL-based license, which is not compatible with our BSD 3-clause license.
The only existing JDK source code that we can look at is the dead Apache Harmony project.
Scala.js is entirely built with sbt. To build a local version of the compiler and standard library, run
> library/package
To test your changes, run
> testSuite/test
or test your tests on the JVM.
> testSuiteJVM/test
If you have changed the IR or the compiler, you typically need to
> clean
before testing anew. If you have changed the IR, the tools, the JS environments or the sbt plugin, you typically need to
> reload
To test in fullOpt stage:
> set scalaJSStage in Global := FullOptStage
When running with Node.js, by default, the test suite requires the
source-map-support
package to be installed in npm
. You can bypass the
source map tests locally with this setting:
> set jsEnv in testSuite := NodeJSEnv().value.withSourceMap(false)
There are also a few additional tests in a separate testing project:
> testSuiteEx/test
The compiler tests (mostly verifying expected compile error messages) can be run with
> compiler/test
The full partest suite (tests of the Scala language, ported in Scala.js) are run with:
> partestSuite/test
or, more typically,
> partestSuite/testOnly -- --fastOpt
If you want to develop in Eclipse, use sbteclipse. Projects as created by the build by default are not suited for Eclipse. You can create somewhat appropriate projects with:
$ sbt tools/sources
$ GENERATING_ECLIPSE=true sbt "eclipse with-source=true"
You will still have to fix a few things:
- Uncheck the "Allow output directories per source directory" in Build path
- Add transitive project dependencies in Build path
The repository is organized as follows:
ir/
The Intermediate Representation, produced by the compiler and consumed by the linkercompiler/
The scalac compiler plugintools/
The linker, optimizer, verifier, etc.: everything that happens at link time
library/
The Scala.js standard library (everything insidescala.scalajs.*
)javalanglib/
Implementation in Scala.js of the classes injava.lang.*
javalib/
Implementation in Scala.js of other classes injava.*
javalib-ex/
Some more Java classes with non-standard dependenciesscalalib/
Almost void project for recompiling the Scala library for Scala.jslibrary-aux/
A few files of the Scala library that need to be compiled separately
All of these, except javalib-ex
, are packaged in scalajs-library.jar
as part
of library/package
.
Note that the sbt plugin depends on the IR and the tools.
js-envs/
The generic definitions of JavaScript environments and runnersnodejs-env/
The Node.js environmentsbt-plugin/
The sbt plugin itself
test-suite/
The main test suite of Scala.jsjavalib-ex-test-suite/
The test suite for the javalib-expartest-suite/
The partest suite of Scala
examples/helloworld/
A simple Hello World, typically used as sandbox for quick testingexamples/reversi/
The historical Reversi demo - we use it to track the impact of changes on the emitted code sizeexamples/testing/
A simple project with tests using the DOM, mostly used to testtestHtml
with DOM interaction
These example projects also have HTML pages to run them in real browsers.
The build itself contains the entire sbt plugin (and all its dependencies) as
part of its sources.
If you change any of the IR, the tools, the JS environments or the sbt plugin,
chances are you need to reload
the build for your changes to take effect.
To publish your changes locally to be used in a separate project, use the
following incantations.
SCALA_VERSION
refers to the Scala version used by the separate project.
> ++SCALA_VERSION
> ;compiler/publishLocal;library/publishLocal;testInterface/publishLocal;stubs/publishLocal;jUnitRuntime/publishLocal;jUnitPlugin/publishLocal
> ++2.10.6
> ;ir/publishLocal;tools/publishLocal;jsEnvs/publishLocal;jsEnvsTestKit/publishLocal;nodeJSEnv/publishLocal;testAdapter/publishLocal;sbtPlugin/publishLocal