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