| 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 import "package:expect/expect.dart"; | |
| 6 | |
| 7 // 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 |
| 8 // 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 |
| 9 // noSuchMethod is cached on Object.prototype. | 7 // noSuchMethod is cached on Object.prototype. |
| 10 | 8 |
| 11 class A1 native "*A1" { | 9 class A1 native "*A1" { |
| 12 } | 10 } |
| 13 | 11 |
| 14 class B1 extends A1 native "*B1" { | 12 class B1 extends A1 native "*B1" { |
| 15 } | 13 } |
| 16 | 14 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 expectNoSuchMethod(action, note) { | 88 expectNoSuchMethod(action, note) { |
| 91 bool caught = false; | 89 bool caught = false; |
| 92 try { | 90 try { |
| 93 action(); | 91 action(); |
| 94 } catch (ex) { | 92 } catch (ex) { |
| 95 caught = true; | 93 caught = true; |
| 96 Expect.isTrue(ex is NoSuchMethodError, note); | 94 Expect.isTrue(ex is NoSuchMethodError, note); |
| 97 } | 95 } |
| 98 Expect.isTrue(caught, note); | 96 Expect.isTrue(caught, note); |
| 99 } | 97 } |
| OLD | NEW |