OLD | NEW |
(Empty) | |
| 1 library test; |
| 2 import self as self; |
| 3 import "dart:core" as core; |
| 4 |
| 5 class C extends core::Object { |
| 6 constructor •() → void |
| 7 : super core::Object::•() |
| 8 ; |
| 9 } |
| 10 class D extends core::Object { |
| 11 constructor •() → void |
| 12 : super core::Object::•() |
| 13 ; |
| 14 } |
| 15 class E extends core::Object { |
| 16 constructor •() → void |
| 17 : super core::Object::•() |
| 18 ; |
| 19 } |
| 20 static method test(() → void f) → void { |
| 21 try { |
| 22 core::int x = 0; |
| 23 f.call(); |
| 24 } |
| 25 on self::C catch(no-exception-var) { |
| 26 core::int x = 0; |
| 27 } |
| 28 on self::D catch(final self::D x) { |
| 29 self::D x2 = x; |
| 30 } |
| 31 on self::E catch(final self::E x, final core::StackTrace y) { |
| 32 self::E x2 = x; |
| 33 core::StackTrace y2 = y; |
| 34 } |
| 35 on dynamic catch(final dynamic x, final core::StackTrace y) { |
| 36 dynamic x2 = x; |
| 37 core::StackTrace y2 = y; |
| 38 } |
| 39 } |
| 40 static method main() → dynamic {} |
OLD | NEW |