summaryrefslogtreecommitdiff
path: root/tools/shared/src/main/scala/scala/scalajs/tools/env/JSRunner.scala
blob: 460fff0c4ce2fea15f38cb186eef54331e74750b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*                     __                                               *\
**     ________ ___   / /  ___      __ ____  Scala.js sbt plugin        **
**    / __/ __// _ | / /  / _ | __ / // __/  (c) 2013, LAMP/EPFL        **
**  __\ \/ /__/ __ |/ /__/ __ |/_// /_\ \    http://scala-js.org/       **
** /____/\___/_/ |_/____/_/ | |__/ /____/                               **
**                          |/____/                                     **
\*                                                                      */


package scala.scalajs.tools.env

trait JSRunner {
  /** Run the associated JS code. Throw if an error occurs. */
  def run(): Unit
}