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