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

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

Issue 2979763002: [VM generic function types] Properly set the scope function after parsing a (Closed)
Patch Set: work in progress Created 3 years, 5 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
« runtime/vm/object.cc ('K') | « runtime/vm/parser.cc ('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
(Empty)
1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
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.
4 //
5 // VMOptions=--generic-method-syntax,--error-on-bad-type
6
7 // Verify that function type parameter S can be resolved in bar.
8
9 import "package:expect/expect.dart";
10
11 T foo<T extends num>(int i, T t) => i + t;
12
13 List<T Function<T extends num>(S, T)> bar<S extends num>() {
14 return <T Function<T extends num>(S, T)>[foo, foo];
15 }
16
17 void main() {
18 var list = bar<int>();
19 print(list[0]
20 .runtimeType); // "(int, int) => int" when reifying generic functions.
21 Expect.equals(123, list[1]<int>(100, 23));
22 }
siva 2017/07/18 23:52:25 Hope this test works with dart2js, analyzer etc. o
regis 2017/07/18 23:59:07 According to my tests, no status file change is ne
OLDNEW
« runtime/vm/object.cc ('K') | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698