summaryrefslogtreecommitdiff
path: root/test/files/presentation/find-trees/FindTrees.scala
blob: 7437e3d3c72ff76e34abcee4939869ebec86a96a (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import scala.tools.nsc.interactive.tests.InteractiveTest
import scala.tools.nsc.util.Position


/** Example interactive test that does everything by hand. It would be much simpler
 *  to just add the markers in the test file. This test shows how to drive
 *  the presentation compiler manually.
 */
object Test extends InteractiveTest {

  def askForPos(pos: Position) {
    import compiler._
    val response = new Response[Tree]

    println("asking position at %d:%d".format(pos.line, pos.column))
    compiler.askTypeAt(pos, response)
    response.get match {
      case Left(EmptyTree) =>
        println("error retrieving tree at %d:%d".format(pos.line, pos.column))
      case Left(t) =>
        println("retrieved tree: " + t)
    }
  }

  // You can enable settings for the presentation compiler here
  // but don't leave them in the nightly build since the log will most likely
  // contain absolute paths

//  settings.YpresentationDebug.value = true
//  settings.YpresentationVerbose.value = true

  override def runTest {
    import compiler._
    val src = sourceFiles(0) // only one under src/
    val pos = rangePos(src, 426, 426, 433)
    val pos1 = src.position(19, 15)  // this is an offset position

    // reload is issued already by the framework, so we don't need to do it, but it doesn't hurt
    val reload = new Response[Unit]
    compiler.askReload(List(src), reload)
    reload.get // it's important to let reload finish before asking other things.

    // re-enable when positions in the primary constructor are handled reliably
    askForPos(pos)
    println("=" * 20)
    askForPos(pos1)

    compiler.askShutdown()
  }
}