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

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

Issue 962603002: Typecheck return with respect to async. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated and tested. Created 5 years, 9 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 | « tests/language/language_dart2js.status ('k') | no next file » | 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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 // Simple test program for sync* generator functions. 5 // Simple test program for sync* generator functions.
6 6
7 import "package:expect/expect.dart"; 7 import "package:expect/expect.dart";
8 import "dart:async"; 8 import "dart:async";
9 9
10 var sync = "topLevelSync"; 10 var sync = "topLevelSync";
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 sync() sync* { 48 sync() sync* {
49 yield sync; // Yields a tear-off of the sync() method. 49 yield sync; // Yields a tear-off of the sync() method.
50 } 50 }
51 } 51 }
52 52
53 main() { 53 main() {
54 var x; 54 var x;
55 x = test01(); 55 x = test01();
56 Expect.equals("()", x.toString()); 56 Expect.equals("()", x.toString());
57 x = test02(); 57 x = test02();
58 test03(); /// 30: continued
58 Expect.equals("(12321)", x.toString()); 59 Expect.equals("(12321)", x.toString());
59 x = test04; /// 40: continued 60 x = test04; /// 40: continued
60 test04 = x; /// 41: continued 61 test04 = x; /// 41: continued
61 x = new K(); 62 x = new K();
63 print(x.garnix); /// 51: continued
64 x.etwas = null; /// 52: continued
62 print(x.sync().toList()); 65 print(x.sync().toList());
63 Expect.equals(1, x.sync().length); 66 Expect.equals(1, x.sync().length);
64 // Expect.isTrue(x.sync().single is Function); 67 // Expect.isTrue(x.sync().single is Function);
65 } 68 }
OLDNEW
« no previous file with comments | « tests/language/language_dart2js.status ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698