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

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

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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";
6
7 // Test that type variables are available in closures. 5 // Test that type variables are available in closures.
8 6
9 class A<T> { 7 class A<T> {
10 A(); 8 A();
11 9
12 A.bar() { 10 A.bar() {
13 g() { 11 g() {
14 new A<T>(); 12 new A<T>();
15 } 13 }
16 g(); 14 g();
17 } 15 }
18 16
19 foo() { 17 foo() {
20 g() { 18 g() {
21 return new A<T>(); 19 return new A<T>();
22 } 20 }
23 return g(); 21 return g();
24 } 22 }
25 } 23 }
26 24
27 main() { 25 main() {
28 Expect.isTrue(new A<int>().foo() is A<int>); 26 Expect.isTrue(new A<int>().foo() is A<int>);
29 Expect.isTrue(new A<int>.bar().foo() is A<int>); 27 Expect.isTrue(new A<int>.bar().foo() is A<int>);
30 } 28 }
OLDNEW
« no previous file with comments | « tests/language/closure_type_test.dart ('k') | tests/language/closure_with_super_field_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698