| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // Test to see if resolving a hidden native class's method to noSuchMethod | 5 // Test to see if resolving a hidden native class's method to noSuchMethod |
| 6 // interferes with subsequent resolving of the method. This might happen if the | 6 // interferes with subsequent resolving of the method. This might happen if the |
| 7 // noSuchMethod is cached on Object.prototype. | 7 // noSuchMethod is cached on Object.prototype. |
| 8 | 8 |
| 9 class A1 native "*A1" { | 9 class A1 native "*A1" { |
| 10 } | 10 } |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 expectNoSuchMethod(() => b1.foo(3), 'b1.foo(3)'); | 84 expectNoSuchMethod(() => b1.foo(3), 'b1.foo(3)'); |
| 85 expectNoSuchMethod(() => a1.foo(4), 'a1.foo(4)'); | 85 expectNoSuchMethod(() => a1.foo(4), 'a1.foo(4)'); |
| 86 } | 86 } |
| 87 | 87 |
| 88 expectNoSuchMethod(action, note) { | 88 expectNoSuchMethod(action, note) { |
| 89 bool caught = false; | 89 bool caught = false; |
| 90 try { | 90 try { |
| 91 action(); | 91 action(); |
| 92 } catch (ex) { | 92 } catch (ex) { |
| 93 caught = true; | 93 caught = true; |
| 94 Expect.isTrue(ex is NoSuchMethodException, note); | 94 Expect.isTrue(ex is NoSuchMethodError, note); |
| 95 } | 95 } |
| 96 Expect.isTrue(caught, note); | 96 Expect.isTrue(caught, note); |
| 97 } | 97 } |
| OLD | NEW |