| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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"; | 5 import "package:expect/expect.dart"; |
| 6 | 6 |
| 7 // This methods needs a stub method (because it is used in Function.apply, where | 7 // This methods needs a stub method (because it is used in Function.apply, where |
| 8 // we can't see all possible uses). | 8 // we can't see all possible uses). |
| 9 // The stub-method(s) must not clash with other global names (like classes). | 9 // The stub-method(s) must not clash with other global names (like classes). |
| 10 foo({a: 499}) => a; | 10 foo({a: 499}) => a; |
| (...skipping 8147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 8158 | 8158 |
| 8159 class CZV {} | 8159 class CZV {} |
| 8160 | 8160 |
| 8161 class CZW {} | 8161 class CZW {} |
| 8162 | 8162 |
| 8163 class CZX {} | 8163 class CZX {} |
| 8164 | 8164 |
| 8165 class CZY {} | 8165 class CZY {} |
| 8166 | 8166 |
| 8167 class CZZ {} | 8167 class CZZ {} |
| OLD | NEW |