aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/scala/async/TreeInterrogation.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/scala/scala/async/TreeInterrogation.scala')
-rw-r--r--src/test/scala/scala/async/TreeInterrogation.scala21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/scala/scala/async/TreeInterrogation.scala b/src/test/scala/scala/async/TreeInterrogation.scala
index 16cbcf7..cf5948c 100644
--- a/src/test/scala/scala/async/TreeInterrogation.scala
+++ b/src/test/scala/scala/async/TreeInterrogation.scala
@@ -34,4 +34,25 @@ class TreeInterrogation {
}
varDefs.map(_.decoded).toSet mustBe(Set("state$async", "onCompleteHandler$async", "await$1", "await$2"))
}
+
+
+ // @Test
+ def sandbox() {
+ val cm = reflect.runtime.currentMirror
+ val tb = mkToolbox("-cp target/scala-2.10/classes")
+ val tree = tb.parse(
+ """| import _root_.scala.async.AsyncId._
+ | async {
+ | var x = 0
+ | var y = 0
+ | while (x <= 2) {
+ | y = await(x)
+ | x += 1
+ | }
+ | y
+ | }""".stripMargin)
+ val tree1 = tb.typeCheck(tree)
+
+ println(cm.universe.show(tree1))
+ }
}