summaryrefslogtreecommitdiff
path: root/test/files/presentation/hyperlinks/Runner.scala
blob: b78e13c23a2d433cdd8bf22199f956465f65d89a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import scala.tools.nsc.interactive.tests.InteractiveTest

object Test extends InteractiveTest {
  override def runDefaultTests() {
    // make sure typer is done.. the virtual pattern matcher might translate
    // some trees and mess up positions. But we'll catch it red handed!
    sourceFiles foreach (src => askLoadedTyped(src).get)
    super.runDefaultTests()
  }

}