| OLD | NEW |
| 1 var names; | 1 var names, core; |
| 2 (function(exports) { | 2 (function(exports, core) { |
| 3 'use strict'; | 3 'use strict'; |
| 4 exports.exports = 42; | 4 exports.exports = 42; |
| 5 let _foo$ = Symbol('_foo'); | 5 let _foo$ = Symbol('_foo'); |
| 6 class Foo extends core.Object { | 6 class Foo extends core.Object { |
| 7 [_foo$]() { | 7 [_foo$]() { |
| 8 return 123; | 8 return 123; |
| 9 } | 9 } |
| 10 } | 10 } |
| 11 // Function _foo: () → dynamic | 11 // Function _foo: () → dynamic |
| 12 function _foo() { | 12 function _foo() { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 40 core.print(new Frame.caller([1, 2, 3])); | 40 core.print(new Frame.caller([1, 2, 3])); |
| 41 let eval$ = dart.bind(Frame, 'callee'); | 41 let eval$ = dart.bind(Frame, 'callee'); |
| 42 core.print(eval$); | 42 core.print(eval$); |
| 43 core.print(dart.notNull(Frame2.caller) + dart.notNull(Frame2.arguments)); | 43 core.print(dart.notNull(Frame2.caller) + dart.notNull(Frame2.arguments)); |
| 44 } | 44 } |
| 45 // Exports: | 45 // Exports: |
| 46 exports.Foo = Foo; | 46 exports.Foo = Foo; |
| 47 exports.Frame = Frame; | 47 exports.Frame = Frame; |
| 48 exports.Frame2 = Frame2; | 48 exports.Frame2 = Frame2; |
| 49 exports.main = main; | 49 exports.main = main; |
| 50 })(names || (names = {})); | 50 })(names || (names = {}), core); |
| OLD | NEW |