aboutsummaryrefslogtreecommitdiff
path: root/dottydoc/jvm/test/WhitelistedStdLibMain.scala
blob: 49e8f4fc59b8b4641523fe5c7f34db318c26ccab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package dotty.tools
package dottydoc

import scala.io.Source

object WhitelistedStandardLib extends DottyDoc {
  val files: List[String] = {
    val whitelist = "../../test/dotc/scala-collections.whitelist"

    Source.fromFile(whitelist, "UTF8")
      .getLines()
      .map(_.trim) // allow identation
      .filter(!_.startsWith("#")) // allow comment lines prefixed by #
      .map(_.takeWhile(_ != '#').trim) // allow comments in the end of line
      .filter(_.nonEmpty)
      .filterNot(_.endsWith("package.scala"))
      .map("../." + _)
      .toList
  }

  override def main(args: Array[String]) =
    super.main("-language:Scala2" +: "-Ydoc-output" +: "../../build/dottydoc" +: files.toArray)
}