| OLD | NEW |
| 1 Starting session. Type 'help' for a list of commands. | 1 Starting session. Type 'help' for a list of commands. |
| 2 | 2 |
| 3 > r | 3 > r |
| 4 Uncaught exception: 42 | 4 Uncaught exception: 42 |
| 5 * 0: foo @throw 42 | 5 * 0: foo @throw 42 |
| 6 1: main @foo() | 6 1: main @foo() |
| 7 > restart | 7 > restart |
| 8 Uncaught exception: 'foobar' | 8 Uncaught exception: 'foobar' |
| 9 * 0: foo @throw 'foobar' | 9 * 0: foo @throw 'foobar' |
| 10 1: main @foo() | 10 1: main @foo() |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 } | 21 } |
| 22 * 0: foo @throw new CustomException('foobar', 42) | 22 * 0: foo @throw new CustomException('foobar', 42) |
| 23 1: main @foo() | 23 1: main @foo() |
| 24 > restart | 24 > restart |
| 25 foo | 25 foo |
| 26 Uncaught exception: NoSuchMethodError: Class 'MyObject' has no method named 'bar
' that takes 0 arguments | 26 Uncaught exception: NoSuchMethodError: Class 'MyObject' has no method named 'bar
' that takes 0 arguments |
| 27 * 0: foo @object.bar() | 27 * 0: foo @object.bar() |
| 28 1: main @foo() | 28 1: main @foo() |
| 29 > restart | 29 > restart |
| 30 ### process terminated | 30 ### process terminated |
| 31 > q |
| OLD | NEW |