| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 that built-in identifiers can be used as library prefixes. | 5 // Test that built-in identifiers can be used as library prefixes. |
| 6 | 6 |
| 7 // From The Dart Programming Language Specification, section 11.30 | 7 // From The Dart Programming Language Specification, section 11.30 |
| 8 // "Identifier Reference": | 8 // "Identifier Reference": |
| 9 // | 9 // |
| 10 // "A built-in identifier is one of the identifiers produced by the | 10 // "A built-in identifier is one of the identifiers produced by the |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 Expect.isTrue(parameterized_B_get is get.B); | 207 Expect.isTrue(parameterized_B_get is get.B); |
| 208 Expect.isTrue(parameterized_B_implements is implements.B); | 208 Expect.isTrue(parameterized_B_implements is implements.B); |
| 209 Expect.isTrue(parameterized_B_import is import.B); | 209 Expect.isTrue(parameterized_B_import is import.B); |
| 210 Expect.isTrue(parameterized_B_library is library.B); | 210 Expect.isTrue(parameterized_B_library is library.B); |
| 211 Expect.isTrue(parameterized_B_operator is operator.B); | 211 Expect.isTrue(parameterized_B_operator is operator.B); |
| 212 Expect.isTrue(parameterized_B_part is part.B); | 212 Expect.isTrue(parameterized_B_part is part.B); |
| 213 Expect.isTrue(parameterized_B_set is set.B); | 213 Expect.isTrue(parameterized_B_set is set.B); |
| 214 Expect.isTrue(parameterized_B_static is static.B); | 214 Expect.isTrue(parameterized_B_static is static.B); |
| 215 Expect.isTrue(parameterized_B_typedef is typedef.B); | 215 Expect.isTrue(parameterized_B_typedef is typedef.B); |
| 216 } | 216 } |
| OLD | NEW |