From 91dbfb2a8f466cf30f7b02cbc6f3e89376d31c59 Mon Sep 17 00:00:00 2001 From: Tiark Rompf Date: Tue, 29 Nov 2011 18:56:51 +0000 Subject: improve cps handling of if-then-else. no review. --- test/files/continuations-run/patvirt.scala | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 test/files/continuations-run/patvirt.scala (limited to 'test/files/continuations-run/patvirt.scala') diff --git a/test/files/continuations-run/patvirt.scala b/test/files/continuations-run/patvirt.scala new file mode 100644 index 0000000000..5b4d312f20 --- /dev/null +++ b/test/files/continuations-run/patvirt.scala @@ -0,0 +1,32 @@ +import scala.util.continuations._ + +object Test { + def sh(x1:Int) = shift( (k: Int => Int) => k(k(k(x1)))) + + def test(x1: Int) = { + val o7 = { + val o6 = { + val o3 = + if (7 == x1) Some(x1) + else None + + if (o3.isEmpty) None + else Some(sh(x1)) + } + if (o6.isEmpty) { + val o5 = + if (8 == x1) Some(x1) + else None + + if (o5.isEmpty) None + else Some(sh(x1)) + } else o6 + } + o7.get + } + + def main(args: Array[String]): Any = { + println(reset(1 + test(7))) + println(reset(1 + test(8))) + } +} -- cgit v1.2.3