| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 import "package:expect/expect.dart"; | |
| 6 | |
| 7 class Proxy { | 5 class Proxy { |
| 8 final proxied; | 6 final proxied; |
| 9 Proxy(this.proxied); | 7 Proxy(this.proxied); |
| 10 noSuchMethod(mirror) => mirror.invokeOn(proxied); | 8 noSuchMethod(mirror) => mirror.invokeOn(proxied); |
| 11 } | 9 } |
| 12 | 10 |
| 13 main() { | 11 main() { |
| 14 testList(); | 12 testList(); |
| 15 testString(); | 13 testString(); |
| 16 testInt(); | 14 testInt(); |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 testDouble() { | 69 testDouble() { |
| 72 var number = 42.99; | 70 var number = 42.99; |
| 73 var proxy = new Proxy(number); | 71 var proxy = new Proxy(number); |
| 74 | 72 |
| 75 Expect.equals(number + 87, proxy + 87); | 73 Expect.equals(number + 87, proxy + 87); |
| 76 Expect.equals(number.toInt(), proxy.toInt()); | 74 Expect.equals(number.toInt(), proxy.toInt()); |
| 77 | 75 |
| 78 Expect.throws(() => proxy.funky(), (e) => e is NoSuchMethodError); | 76 Expect.throws(() => proxy.funky(), (e) => e is NoSuchMethodError); |
| 79 Expect.throws(() => number.funky(), (e) => e is NoSuchMethodError); | 77 Expect.throws(() => number.funky(), (e) => e is NoSuchMethodError); |
| 80 } | 78 } |
| OLD | NEW |