summaryrefslogtreecommitdiff
path: root/test/files/presentation/hyperlinks/Runner.scala
blob: 61da49a3d79a55ac6b76207e4541741d1c5b7506 (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()
  }
  
}