aboutsummaryrefslogblamecommitdiff
path: root/src/dotty/tools/dotc/Run.scala
blob: 8358cdbcaaf69ca70e771e93786a827eafaeb991 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                                         
package dotty.tools
package dotc

import core._
import Contexts._

class Run(comp: Compiler)(implicit ctx: Context) {

  def compile(fileNames: List[String]): Unit =
    for (name <- fileNames) println(s"<compiling $name>")

}