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 |
5 // Testing method invocation. | 7 // Testing method invocation. |
6 // Currently testing only NoSuchMethodError. | 8 // Currently testing only NoSuchMethodError. |
7 | 9 |
8 class A { | 10 class A { |
9 A() {} | 11 A() {} |
10 int foo() { | 12 int foo() { |
11 return 1; | 13 return 1; |
12 } | 14 } |
13 } | 15 } |
14 | 16 |
(...skipping 12 matching lines...) Expand all Loading... |
27 } | 29 } |
28 | 30 |
29 static void testMain() { | 31 static void testMain() { |
30 testNullReceiver(); | 32 testNullReceiver(); |
31 } | 33 } |
32 } | 34 } |
33 | 35 |
34 main() { | 36 main() { |
35 MethodInvocationTest.testMain(); | 37 MethodInvocationTest.testMain(); |
36 } | 38 } |
OLD | NEW |