Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pipeline:
image: lampepfl/dotty:2018-10-01
commands:
- cp -R . /tmp/2/ && cd /tmp/2/
- ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test"
- ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test ;sjsSandbox/run"
- ./project/scripts/bootstrapCmdTests

test_sbt:
Expand Down
2 changes: 2 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ val scalap = Build.scalap
val dist = Build.dist
val `dist-bootstrapped` = Build.`dist-bootstrapped`

val sjsSandbox = Build.sjsSandbox

val `sbt-dotty` = Build.`sbt-dotty`
val `vscode-dotty` = Build.`vscode-dotty`

Expand Down
118 changes: 0 additions & 118 deletions compiler/sjs/backend/sjs/JSPrimitives.scala

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class GenSJSIR extends Phase {
def phaseName: String = "genSJSIR"

def run(implicit ctx: Context): Unit = {
new JSCodeGen().run()
if (ctx.settings.scalajs.value)
new JSCodeGen().run()
}
}
Loading