summaryrefslogtreecommitdiff
path: root/test/files/run/pf-catch.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-12-03 05:02:37 +0000
committerPaul Phillips <paulp@improving.org>2010-12-03 05:02:37 +0000
commit715d95479e77b06dd65303886d2e0e70ddcf461f (patch)
tree991f4e4be398f9b32ef6c4df49fbd927ae8dd6d6 /test/files/run/pf-catch.check
parent31533385b7ac4e1643ad8664141f3d197dc637f1 (diff)
downloadscala-715d95479e77b06dd65303886d2e0e70ddcf461f.tar.gz
scala-715d95479e77b06dd65303886d2e0e70ddcf461f.tar.bz2
scala-715d95479e77b06dd65303886d2e0e70ddcf461f.zip
Generalizes catch blocks to include any Partial...
Generalizes catch blocks to include any PartialFunction[Throwable, T]. Existing catch blocks will compile exactly as before. Anything else (which mean: the token after CATCH is not a left brace, or it is a left brace not immediately followed by CASE) is desugared as follows: try body catch expr // becomes try body catch { case x => val catchFn = expr if (catchFn isDefinedAt x) catchFn(x) else throw x } Review by odersky.
Diffstat (limited to 'test/files/run/pf-catch.check')
-rw-r--r--test/files/run/pf-catch.check4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/run/pf-catch.check b/test/files/run/pf-catch.check
new file mode 100644
index 0000000000..faee9566af
--- /dev/null
+++ b/test/files/run/pf-catch.check
@@ -0,0 +1,4 @@
+NoSuchElementException
+NullPointerException slipped by.
+NoSuchElementException
+DEBUG: NullPointerException