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

Unified Diff: tests/language_strong/generic_methods_tearoff_specialization_test.dart

Issue 3001803002: Migrate block 114 (and some of 113). (Closed)
Patch Set: Tweak app_jit status. Created 3 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: tests/language_strong/generic_methods_tearoff_specialization_test.dart
diff --git a/tests/language_strong/generic_methods_tearoff_specialization_test.dart b/tests/language_strong/generic_methods_tearoff_specialization_test.dart
deleted file mode 100644
index 5c0329776007a370fceab2e678e8b17700f15b1b..0000000000000000000000000000000000000000
--- a/tests/language_strong/generic_methods_tearoff_specialization_test.dart
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// Test that generic methods can be specialized after being torn off, and that
-// their specialized versions are correctly constructed.
-
-library generic_methods_tearoff_specialization_test;
-
-import "package:expect/expect.dart";
-
-class A {
- T fun<T>(T t) => t;
-}
-
-typedef Int2Int = int Function(int);
-typedef String2String = String Function(String);
-typedef Object2Object = Object Function(Object);
-typedef GenericMethod = T Function<T>(T);
-
-main() {
- A a = new A();
- Int2Int f = a.fun;
- String2String g = a.fun;
- Object2Object h = a.fun;
- var generic = a.fun;
-
- Expect.isTrue(f is Int2Int);
- Expect.isTrue(f is! String2String);
- Expect.isTrue(f is! Object2Object);
- Expect.isTrue(f is! GenericMethod);
-
- Expect.isTrue(g is! Int2Int);
- Expect.isTrue(g is String2String);
- Expect.isTrue(g is! Object2Object);
- Expect.isTrue(g is! GenericMethod);
-
- Expect.isTrue(h is! Int2Int);
- Expect.isTrue(h is! String2String);
- Expect.isTrue(h is Object2Object);
- Expect.isTrue(g is! GenericMethod);
-
- Expect.isTrue(generic is! Int2Int);
- Expect.isTrue(generic is! String2String);
- Expect.isTrue(generic is! Object2Object);
- Expect.isTrue(generic is GenericMethod);
-}

Powered by Google App Engine
This is Rietveld 408576698