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

Unified Diff: tests/language/compile_time_constant_checked2_test.dart

Issue 10916232: Implement checked mode for const constructors. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/co19/co19-dart2js.status ('k') | tests/language/language.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/compile_time_constant_checked2_test.dart
===================================================================
--- tests/language/compile_time_constant_checked2_test.dart (revision 0)
+++ tests/language/compile_time_constant_checked2_test.dart (revision 0)
@@ -0,0 +1,43 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+class A {
+ final int x;
+ const A.a1() : x = 'foo';
+ const A.a2(this.x);
+ const A.a3([this.x = 'foo']);
+ const A.a4(String this.x);
+ const A.a5(String x) : this.x = x;
+ const A.a6(int x) : this.x = x;
+}
+
+const a1 = const A.a1(); /// 01: compile-time error
+const a2 = const A.a2('foo'); /// 02: compile-time error
+const a3 = const A.a3(); /// 03: compile-time error
+const a4 = const A.a4('foo'); /// 04: compile-time error
+const a5 = const A.a5('foo'); /// 05: compile-time error
+const a6 = const A.a6('foo'); /// 06: compile-time error
+
+var b1 = const A.a1(); /// 07: compile-time error
+var b2 = const A.a2('foo'); /// 08: compile-time error
+var b3 = const A.a3(); /// 09: compile-time error
+var b4 = const A.a4('foo'); /// 10: compile-time error
+var b5 = const A.a5('foo'); /// 11: compile-time error
+var b6 = const A.a6('foo'); /// 12: compile-time error
+
+main() {
+ print(a1); /// 01: continued
+ print(a2); /// 02: continued
+ print(a3); /// 03: continued
+ print(a4); /// 04: continued
+ print(a5); /// 05: continued
+ print(a6); /// 06: continued
+
+ print(b1); /// 07: continued
+ print(b2); /// 08: continued
+ print(b3); /// 09: continued
+ print(b4); /// 10: continued
+ print(b5); /// 11: continued
+ print(b6); /// 12: continued
+}
« no previous file with comments | « tests/co19/co19-dart2js.status ('k') | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698