| OLD | NEW |
| 1 dart.library('try_catch', null, /* Imports */[ | 1 loader.library('try_catch', null, /* Imports */[ |
| 2 "dart/dart_runtime", |
| 3 "dart/dartx", |
| 2 'dart/core' | 4 'dart/core' |
| 3 ], /* Lazy imports */[ | 5 ], /* Lazy imports */[ |
| 4 ], function(exports, core) { | 6 ], function(exports, dart, dartx, core) { |
| 5 'use strict'; | 7 'use strict'; |
| 6 function foo() { | 8 function foo() { |
| 7 try { | 9 try { |
| 8 throw "hi there"; | 10 throw "hi there"; |
| 9 } catch (e$) { | 11 } catch (e$) { |
| 10 if (dart.is(e$, core.String)) { | 12 if (dart.is(e$, core.String)) { |
| 11 let e = e$; | 13 let e = e$; |
| 12 let t = dart.stackTrace(e); | 14 let t = dart.stackTrace(e); |
| 13 } else { | 15 } else { |
| 14 let e = e$; | 16 let e = e$; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 } | 72 } |
| 71 dart.fn(main); | 73 dart.fn(main); |
| 72 // Exports: | 74 // Exports: |
| 73 exports.foo = foo; | 75 exports.foo = foo; |
| 74 exports.bar = bar; | 76 exports.bar = bar; |
| 75 exports.baz = baz; | 77 exports.baz = baz; |
| 76 exports.qux = qux; | 78 exports.qux = qux; |
| 77 exports.wub = wub; | 79 exports.wub = wub; |
| 78 exports.main = main; | 80 exports.main = main; |
| 79 }); | 81 }); |
| OLD | NEW |