Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(207)

Side by Side Diff: tests/language_2/built_in_identifier_prefix_test.dart

Issue 2992903002: Fix a couple of things causing bot redness: (Closed)
Patch Set: Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tests/language/language_dart2js.status ('k') | tests/language_2/built_in_identifier_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « tests/language/language_dart2js.status ('k') | tests/language_2/built_in_identifier_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698