| OLD | NEW |
| 1 dart_library.library('opassign', null, /* Imports */[ | 1 dart_library.library('opassign', null, /* Imports */[ |
| 2 "dart/_runtime", | 2 'dart/_runtime', |
| 3 'dart/core' | 3 'dart/core' |
| 4 ], /* Lazy imports */[ | 4 ], /* Lazy imports */[ |
| 5 ], function(exports, dart, core) { | 5 ], function(exports, dart, core) { |
| 6 'use strict'; | 6 'use strict'; |
| 7 let dartx = dart.dartx; | 7 let dartx = dart.dartx; |
| 8 dart.copyProperties(exports, { | 8 dart.copyProperties(exports, { |
| 9 get index() { | 9 get index() { |
| 10 core.print('called "index" getter'); | 10 core.print('called "index" getter'); |
| 11 return 0; | 11 return 0; |
| 12 } | 12 } |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 } | 51 } |
| 52 dart.fn(main); | 52 dart.fn(main); |
| 53 function forcePostfix(x) { | 53 function forcePostfix(x) { |
| 54 } | 54 } |
| 55 dart.fn(forcePostfix); | 55 dart.fn(forcePostfix); |
| 56 // Exports: | 56 // Exports: |
| 57 exports.Foo = Foo; | 57 exports.Foo = Foo; |
| 58 exports.main = main; | 58 exports.main = main; |
| 59 exports.forcePostfix = forcePostfix; | 59 exports.forcePostfix = forcePostfix; |
| 60 }); | 60 }); |
| OLD | NEW |