| OLD | NEW |
| 1 dart_library.library('temps', null, /* Imports */[ | 1 dart_library.library('temps', 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 let _x = Symbol('_x'); | 8 const _x = Symbol('_x'); |
| 9 let __x = Symbol('__x'); | 9 const __x = Symbol('__x'); |
| 10 let _function = Symbol('_function'); | 10 const _function = Symbol('_function'); |
| 11 class FormalCollision extends core.Object { | 11 class FormalCollision extends core.Object { |
| 12 FormalCollision(x, _x$, func) { | 12 FormalCollision(x, _x$, func) { |
| 13 this[_x] = x; | 13 this[_x] = x; |
| 14 this[__x] = _x$; | 14 this[__x] = _x$; |
| 15 this[_function] = func; | 15 this[_function] = func; |
| 16 } | 16 } |
| 17 } | 17 } |
| 18 dart.setSignature(FormalCollision, { | 18 dart.setSignature(FormalCollision, { |
| 19 constructors: () => ({FormalCollision: [FormalCollision, [core.int, core.int
, core.Function]]}) | 19 constructors: () => ({FormalCollision: [FormalCollision, [core.int, core.int
, core.Function]]}) |
| 20 }); | 20 }); |
| 21 let _opt = Symbol('_opt'); | 21 const _opt = Symbol('_opt'); |
| 22 class OptionalArg extends core.Object { | 22 class OptionalArg extends core.Object { |
| 23 OptionalArg(opt) { | 23 OptionalArg(opt) { |
| 24 if (opt === void 0) | 24 if (opt === void 0) |
| 25 opt = 123; | 25 opt = 123; |
| 26 this[_opt] = opt; | 26 this[_opt] = opt; |
| 27 this.opt = null; | 27 this.opt = null; |
| 28 } | 28 } |
| 29 named(opts) { | 29 named(opts) { |
| 30 let opt = opts && 'opt' in opts ? opts.opt : 456; | 30 let opt = opts && 'opt' in opts ? opts.opt : 456; |
| 31 this.opt = opt; | 31 this.opt = opt; |
| (...skipping 11 matching lines...) Expand all Loading... |
| 43 core.print(new FormalCollision(1, 2, dart.fn(x => x))); | 43 core.print(new FormalCollision(1, 2, dart.fn(x => x))); |
| 44 core.print(new OptionalArg()[_opt]); | 44 core.print(new OptionalArg()[_opt]); |
| 45 core.print(new OptionalArg.named()[_opt]); | 45 core.print(new OptionalArg.named()[_opt]); |
| 46 } | 46 } |
| 47 dart.fn(main); | 47 dart.fn(main); |
| 48 // Exports: | 48 // Exports: |
| 49 exports.FormalCollision = FormalCollision; | 49 exports.FormalCollision = FormalCollision; |
| 50 exports.OptionalArg = OptionalArg; | 50 exports.OptionalArg = OptionalArg; |
| 51 exports.main = main; | 51 exports.main = main; |
| 52 }); | 52 }); |
| OLD | NEW |