summaryrefslogtreecommitdiff
path: root/src/fjbg/ch/epfl/lamp
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-11-13 03:18:12 +0000
committerPaul Phillips <paulp@improving.org>2010-11-13 03:18:12 +0000
commit6bf1e7a2684c19f21ebc6367a39bc3e19b32e321 (patch)
tree3d3284bf656edc70a66c736e472077cc67bf6008 /src/fjbg/ch/epfl/lamp
parenta061def4dd3d16b226f17a5246470255623177c2 (diff)
downloadscala-6bf1e7a2684c19f21ebc6367a39bc3e19b32e321.tar.gz
scala-6bf1e7a2684c19f21ebc6367a39bc3e19b32e321.tar.bz2
scala-6bf1e7a2684c19f21ebc6367a39bc3e19b32e321.zip
Another exciting development in the world of -Y...
Another exciting development in the world of -Y options which I and three other people will use. Today's is -Yrich-exceptions. Use it like so: SOURCEPATH=/path/to/src scalac -Yrich-exceptions a.scala In the repl, -Yrich-exceptions will cause lastException to be bound to an Exceptional instead of old rusty Throwable. That spins up new powers: scala> Nil.head [Nil.head] (List.scala:389) (access lastException for the full trace) scala> lastException.show /* The repl internal portion of the stack trace is elided. */ [Nil.head] 386: override def isEmpty = true 387: override def head: Nothing = 388: throw new NoSuchElementException("head of empty list") *389: override def tail: List[Nothing] = 390: throw new UnsupportedOperationException("tail of empty list") 391: // Removal of equals method here might lead to an infinite recursion similar to IntMap.equals. 392: override def equals(that: Any) = that match { [line0.<init>] (<console>:6) [line0.<clinit>] (<console>:-1) Also try "lastException.showTable" but this is getting a little long for more excerpt. No review.
Diffstat (limited to 'src/fjbg/ch/epfl/lamp')
0 files changed, 0 insertions, 0 deletions