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

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

Issue 2992003002: Migrate block 37, language/arithmetic2 ... /async_await_syntax_test. (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
OLDNEW
1 // Copyright (c) 201, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 201, the Dart project authors. Please see the AUTHORS file
Jennifer Messerly 2017/07/28 17:44:24 hmm maybe update this to 2017 ... or something els
Bob Nystrom 2017/07/28 18:16:02 Done.
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 // VMOptions=--assert_initializer 4 // VMOptions=--assert_initializer
5 // 5 //
6 // Dart test program testing assert statements. 6 // Dart test program testing assert statements.
7 7
8 import "package:expect/expect.dart"; 8 import "package:expect/expect.dart";
9 9
10 class C { 10 class C {
11 final int x; 11 final int x;
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 const C.cc03(2, 1); //# cc03: compile-time error 55 const C.cc03(2, 1); //# cc03: compile-time error
56 const C.cc04(2, 1); //# cc04: compile-time error 56 const C.cc04(2, 1); //# cc04: compile-time error
57 const C.cc05(2, 1); //# cc05: compile-time error 57 const C.cc05(2, 1); //# cc05: compile-time error
58 const C.cc06(2, 1); //# cc06: compile-time error 58 const C.cc06(2, 1); //# cc06: compile-time error
59 const C.cc07(2, 1); //# cc07: compile-time error 59 const C.cc07(2, 1); //# cc07: compile-time error
60 const C.cc08(2, 1); //# cc08: compile-time error 60 const C.cc08(2, 1); //# cc08: compile-time error
61 const C.cc09(2, 1); //# cc09: compile-time error 61 const C.cc09(2, 1); //# cc09: compile-time error
62 const C.cc10(2, 1); //# cc10: compile-time error 62 const C.cc10(2, 1); //# cc10: compile-time error
63 const C.cc11(2, 1); //# cc11: compile-time error 63 const C.cc11(2, 1); //# cc11: compile-time error
64 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698