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

Unified Diff: tests/language/generic_method_types_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
« no previous file with comments | « tests/language/generic_metadata_test.dart ('k') | tests/language/generic_methods_function_type_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/generic_method_types_test.dart
diff --git a/tests/language/generic_method_types_test.dart b/tests/language/generic_method_types_test.dart
deleted file mode 100644
index 3c0c803d77bea7add43a9b665ab8e5b5e128c2a8..0000000000000000000000000000000000000000
--- a/tests/language/generic_method_types_test.dart
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright (c) 2016, 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.
-
-// VMOptions=--generic-method-syntax --no-reify-generic-functions
-
-import 'package:expect/expect.dart';
-
-typedef O Convert<I, O>(I input);
-typedef Other(a, b);
-
-class Mixin<E> {
- E convert1<I>(I input) => null;
-}
-
-class Class<F> extends Object with Mixin<F> {
- O convert2<O>(F input) => null;
-}
-
-O convert<I, O>(I input) => null;
-
-test1() {
- var val = new Class<String>();
- Expect.isTrue(val.convert1 is Convert);
- Expect.isTrue(val.convert1 is Convert<String, String>);
- Expect.isTrue(val.convert1 is Convert<int, String>);
- Expect.isFalse(val.convert1 is Convert<String, int>);
- Expect.isFalse(val.convert1 is Other);
-}
-
-test2() {
- var val = new Class<String>();
- Expect.isTrue(val.convert2 is Convert);
- Expect.isTrue(val.convert2 is Convert<String, String>);
- Expect.isTrue(val.convert2 is Convert<String, int>);
- Expect.isFalse(val.convert2 is Convert<int, String>);
- Expect.isFalse(val.convert2 is Other);
-}
-
-test3() {
- Expect.isTrue(convert is Convert);
- Expect.isTrue(convert is Convert<String, String>);
- Expect.isTrue(convert is Convert<String, int>);
- Expect.isTrue(convert is Convert<int, String>);
- Expect.isFalse(convert is Other);
-}
-
-main() {
- test1(); //# 01: ok
- test2(); //# 02: ok
- test3(); //# 03: ok
-}
« no previous file with comments | « tests/language/generic_metadata_test.dart ('k') | tests/language/generic_methods_function_type_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698