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

Side by Side Diff: tests/language_strong/flatten_test.dart

Issue 2765893003: Fix warnings_checker.dart handling of multitests (Closed)
Patch Set: Created 3 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
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 import 'dart:async'; 5 import 'dart:async';
6 6
7 class Derived<T> implements Future<T> { 7 class Derived<T> implements Future<T> {
8 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation); 8 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
9 } 9 }
10 10
11 class FixedPoint<T> implements Future<FixedPoint<T>> { 11 class FixedPoint<T> implements Future<FixedPoint<T>> {
12 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation); 12 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
13 } 13 }
14 14
15 // TODO(vsm): Restore when https://github.com/dart-lang/sdk/issues/25611 15 // TODO(vsm): Restore when https://github.com/dart-lang/sdk/issues/25611
16 // is fixed. 16 // is fixed.
17 /* 17 /*
18 class Divergent<T> implements Future<Divergent<Divergent<T>>> { 18 class Divergent<T> implements Future<Divergent<Divergent<T>>> {
19 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation); 19 noSuchMethod(Invocation invocation) => super.noSuchMethod(invocation);
20 } 20 }
21 */ 21 */
22 22
23 23
24 test() async { 24 test() async {
25 // flatten(Derived<int>) = int 25 // flatten(Derived<int>) = int
26 int x = await new Derived<int>(); /// 01: runtime error 26 int x = await new Derived<int>(); //# 01: runtime error
27 Future<int> f() async => new Derived<int>(); /// 02: ok 27 Future<int> f() async => new Derived<int>(); //# 02: ok
28 Future<int> f() async { return new Derived<int>(); } /// 03: ok 28 Future<int> f() async { return new Derived<int>(); } //# 03: ok
29 Future<int> x = (() async => new Derived<int>())(); /// 04: runtime error 29 Future<int> x = (() async => new Derived<int>())(); //# 04: runtime error
30 30
31 // TODO(vsm): Restore when https://github.com/dart-lang/sdk/issues/25611 31 // TODO(vsm): Restore when https://github.com/dart-lang/sdk/issues/25611
32 // is fixed. 32 // is fixed.
33 /* 33 /*
34 // flatten(FixedPoint<int>) = FixedPoint<int> 34 // flatten(FixedPoint<int>) = FixedPoint<int>
35 FixedPoint<int> x = await new FixedPoint<int>(); /// 05: runtime error 35 FixedPoint<int> x = await new FixedPoint<int>(); //# 05: runtime error
36 Future<FixedPoint<int>> f() async => new FixedPoint<int>(); /// 06: ok 36 Future<FixedPoint<int>> f() async => new FixedPoint<int>(); //# 06: ok
37 Future<FixedPoint<int>> f() async { return new FixedPoint<int>(); } /// 07: ok 37 Future<FixedPoint<int>> f() async { return new FixedPoint<int>(); } //# 07: ok
38 Future<FixedPoint<int>> x = (() async => new FixedPoint<int>())(); /// 08: run time error 38 Future<FixedPoint<int>> x = (() async => new FixedPoint<int>())(); //# 08: run time error
39 39
40 // flatten(Divergent<int>) = Divergent<Divergent<int>> 40 // flatten(Divergent<int>) = Divergent<Divergent<int>>
41 Divergent<Divergent<int>> x = await new Divergent<int>(); /// 09: runtime erro r 41 Divergent<Divergent<int>> x = await new Divergent<int>(); //# 09: runtime erro r
42 Future<Divergent<Divergent<int>>> f() async => new Divergent<int>(); /// 10: o k 42 Future<Divergent<Divergent<int>>> f() async => new Divergent<int>(); //# 10: o k
43 Future<Divergent<Divergent<int>>> f() async { return new Divergent<int>(); } / // 11: ok 43 Future<Divergent<Divergent<int>>> f() async { return new Divergent<int>(); } / /# 11: ok
44 Future<Divergent<Divergent<int>>> x = (() async => new Divergent<int>())(); // / 12: runtime error 44 Future<Divergent<Divergent<int>>> x = (() async => new Divergent<int>())(); // # 12: runtime error
45 */ 45 */
46 } 46 }
47 47
48 main() { 48 main() {
49 test(); 49 test();
50 } 50 }
OLDNEW
« no previous file with comments | « tests/language_strong/fixed_type_variable_test.dart ('k') | tests/language_strong/function_syntax_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698