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

Side by Side Diff: tests/language/final_syntax_test.dart

Issue 10248007: test rename overhaul: step 8 - language tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 | Annotate | Revision Log
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 main() { 5 main() {
6 final f0 = 42; 6 final f0 = 42;
7 final f1; /// 01: compile-time error 7 final f1; /// 01: compile-time error
8 final int f2 = 87; 8 final int f2 = 87;
9 final int f3; /// 02: compile-time error 9 final int f3; /// 02: compile-time error
10 Expect.equals(42, f0); 10 Expect.equals(42, f0);
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 : x = C0.X /// 09: continued 64 : x = C0.X /// 09: continued
65 ; 65 ;
66 final x = null; 66 final x = null;
67 } 67 }
68 68
69 // Check that sub-expressions of binary + are numeric. 69 // Check that sub-expressions of binary + are numeric.
70 final B0 = 42; 70 final B0 = 42;
71 final B1 = "Hello"; 71 final B1 = "Hello";
72 final B2 = B1 + B0; 72 final B2 = B1 + B0;
73 final B3 = B0 + B1; /// 10: continued 73 final B3 = B0 + B1; /// 10: continued
OLDNEW
« no previous file with comments | « tests/language/final_param_negative_test.dart ('k') | tests/language/final_var_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698