aboutsummaryrefslogtreecommitdiff
path: root/src/dotty/tools/dotc/config/SJSPlatform.scala
blob: fec9c25a1424bf95f5354250c5cbbe3c301503c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package dotty.tools.dotc.config

import dotty.tools.dotc.core._
import Contexts._

import dotty.tools.backend.sjs.JSDefinitions

class SJSPlatform()(implicit ctx: Context) extends JavaPlatform {

  /** Scala.js-specific definitions. */
  val jsDefinitions: JSDefinitions = new JSDefinitions()

}