| OLD | NEW |
| 1 var opassign; | 1 var opassign, core; |
| 2 (function(exports) { | 2 (function(exports, core) { |
| 3 'use strict'; | 3 'use strict'; |
| 4 dart.copyProperties(exports, { | 4 dart.copyProperties(exports, { |
| 5 get index() { | 5 get index() { |
| 6 core.print('called "index" getter'); | 6 core.print('called "index" getter'); |
| 7 return 0; | 7 return 0; |
| 8 } | 8 } |
| 9 }); | 9 }); |
| 10 dart.defineLazyProperties(exports, { | 10 dart.defineLazyProperties(exports, { |
| 11 get _foo() { | 11 get _foo() { |
| 12 return new Foo(); | 12 return new Foo(); |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 let i$ = exports.index; | 46 let i$ = exports.index; |
| 47 f.set(i$, dart.dsend(f.get(i$), '+', f.get(exports.index))); | 47 f.set(i$, dart.dsend(f.get(i$), '+', f.get(exports.index))); |
| 48 } | 48 } |
| 49 // Function forcePostfix: (dynamic) → dynamic | 49 // Function forcePostfix: (dynamic) → dynamic |
| 50 function forcePostfix(x) { | 50 function forcePostfix(x) { |
| 51 } | 51 } |
| 52 // Exports: | 52 // Exports: |
| 53 exports.Foo = Foo; | 53 exports.Foo = Foo; |
| 54 exports.main = main; | 54 exports.main = main; |
| 55 exports.forcePostfix = forcePostfix; | 55 exports.forcePostfix = forcePostfix; |
| 56 })(opassign || (opassign = {})); | 56 })(opassign || (opassign = {}), core); |
| OLD | NEW |