summaryrefslogtreecommitdiff
path: root/sources/scala/tools/scaladoc/HTMLGeneratorPhase.scala
blob: 1870d1c12ba9e7436aba2e81b71184fc5a55541e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*     ____ ____  ____ ____  ______                                     *\
**    / __// __ \/ __// __ \/ ____/    SOcos COmpiles Scala             **
**  __\_ \/ /_/ / /__/ /_/ /\_ \       (c) 2002, LAMP/EPFL              **
** /_____/\____/\___/\____/____/                                        **
\*                                                                      */

// $Id$

import scalac.Global;
import scalac.Phase;
import scalac.PhaseDescriptor;
import scalac.Unit;

package scala.tools.scaladoc {

  class HTMLGeneratorPhase(global: Global, descriptor: PhaseDescriptor) extends Phase(global, descriptor) {

    def apply(units: Array[Unit]): unit = new HTMLGeneratorScala(global).apply();

  }
}