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

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

Issue 23691029: Update language.status and rewrite some tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review commetns Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | tests/language/constructor_return_with_arrow_negative_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) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, 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 import "package:expect/expect.dart"; 5 import "package:expect/expect.dart";
6 6
7 // Dart spec 0.03, section 11.10 - generative constructors can only have return 7 // Dart spec 0.03, section 11.10 - generative constructors can only have return
8 // statements in the form 'return;'. 8 // statements in the form 'return;'.
9 class A { 9 class A {
10 int x; 10 int x;
11 A(this.x) { return; } 11 A(this.x) { return; }
12 A.test1(this.x) { 12 A.test1(this.x) {
13 return this; /// 01: compile-time error 13 return this; /// 01: compile-time error
14 } 14 }
15 A.test2(this.x) { 15 A.test2(this.x) {
16 return null; /// 02: compile-time error 16 return null; /// 02: compile-time error
17 } 17 }
18 int foo(int y) => x + y; 18 int foo(int y) => x + y;
19 } 19 }
20 20
21 class B {
22 B() => null; /// 03: compile-time error
23 }
24
25 class C {
26 int value;
27 C() : value = 1 { return null; } /// 04: compile-time error
28 }
29
30 class D {
31 int value;
32 D(): value = 1 => null; /// 05: compile-time error
33 }
34
21 main() { 35 main() {
22 Expect.equals((new A(1)).foo(10), 11); 36 Expect.equals((new A(1)).foo(10), 11);
23 Expect.equals((new A.test1(1)).foo(10), 11); 37 Expect.equals((new A.test1(1)).foo(10), 11);
24 Expect.equals((new A.test2(1)).foo(10), 11); 38 Expect.equals((new A.test2(1)).foo(10), 11);
39 new B();
40 new C();
41 new D();
25 } 42 }
OLDNEW
« no previous file with comments | « no previous file | tests/language/constructor_return_with_arrow_negative_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698