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

import core._
import Contexts._

class Compiler {

  def newRun(implicit ctx: Context): Run = new Run(this)

}