aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/backend/sjs/GenSJSIR.scala
diff options
context:
space:
mode:
authorFelix Mulder <felix.mulder@gmail.com>2016-10-26 16:19:35 +0200
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:06 +0100
commit06a3d47ea9fd1b67b3acba9d115a16d18549e377 (patch)
tree36311873f40e1410154c50d00abb03715619e8cc /src/dotty/tools/backend/sjs/GenSJSIR.scala
parent0da788c52121e44de6be0cdc7a0c4c6e1b125ff9 (diff)
downloaddotty-06a3d47ea9fd1b67b3acba9d115a16d18549e377.tar.gz
dotty-06a3d47ea9fd1b67b3acba9d115a16d18549e377.tar.bz2
dotty-06a3d47ea9fd1b67b3acba9d115a16d18549e377.zip
Move sjs, make sure that partest compiles everything in dirs
Diffstat (limited to 'src/dotty/tools/backend/sjs/GenSJSIR.scala')
-rw-r--r--src/dotty/tools/backend/sjs/GenSJSIR.scala14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/dotty/tools/backend/sjs/GenSJSIR.scala b/src/dotty/tools/backend/sjs/GenSJSIR.scala
deleted file mode 100644
index 819a8f0e3..000000000
--- a/src/dotty/tools/backend/sjs/GenSJSIR.scala
+++ /dev/null
@@ -1,14 +0,0 @@
-package dotty.tools.backend.sjs
-
-import dotty.tools.dotc.core._
-import Contexts._
-import Phases._
-
-/** Generates Scala.js IR files for the compilation unit. */
-class GenSJSIR extends Phase {
- def phaseName: String = "genSJSIR"
-
- def run(implicit ctx: Context): Unit = {
- new JSCodeGen().run()
- }
-}