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

Unified Diff: tests/language/fixed_type_variable_test.dart

Issue 77993002: Add substitutions even when type arguments are fixed. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 7 years 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/fixed_type_variable_test.dart
diff --git a/tests/language/fixed_type_variable_test.dart b/tests/language/fixed_type_variable_test.dart
new file mode 100644
index 0000000000000000000000000000000000000000..e032fafc474b586ce9e613b59aea04cd0e71cb0d
--- /dev/null
+++ b/tests/language/fixed_type_variable_test.dart
@@ -0,0 +1,87 @@
+// Copyright (c) 2013, 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 type variables are passed on from subtypes that fixed the type
+// variable in inheritance.
+
+import 'package:expect/expect.dart';
+
+class A<T> {
+ B<T> createB() => new B<T>();
+}
+
+class NumA extends A<num> {
+}
+
+class B<T> {
+ T value;
+
+ void test(var type, bool expect) {
+ Expect.equals(expect, T == type);
+ }
+}
+
+class StringB extends B<String> {
+}
+
+class C<T> extends A<T> {
+}
+
+class IntC extends C<int> {
+}
+
+void main() {
+ testA(); /// 01: ok
karlklose 2013/12/20 10:38:08 Two spaces.
+ testNumA(); /// 02: ok
+ testB(); /// 03: ok
+ testStringB(); /// 04: ok
+ testC(); /// 05: ok
+ testIntC(); /// 06: ok
+}
+
+void testA() {
+ var instanceA = new A<String>();
+ var instanceB = instanceA.createB();
+ instanceB.test(num, false);
+ instanceB.test(int, false);
+ instanceB.test(String, true);
+}
+
+void testNumA() {
+ var instanceA = new NumA();
+ var instanceB = instanceA.createB();
+ instanceB.test(num, true);
+ instanceB.test(int, false);
+ instanceB.test(String, false);
+}
+
+void testB() {
+ var instanceB = new B<int>();
+ instanceB.test(num, false);
+ instanceB.test(int, true);
+ instanceB.test(String, false);
+}
+
+void testStringB() {
+ var instanceB = new StringB();
+ instanceB.test(num, false);
+ instanceB.test(int, false);
+ instanceB.test(String, true);
+}
+
+void testC() {
+ var instanceA = new C<String>();
+ var instanceB = instanceA.createB();
+ instanceB.test(num, false);
+ instanceB.test(int, false);
+ instanceB.test(String, true);
+}
+
+void testIntC() {
+ var instanceA = new IntC();
+ var instanceB = instanceA.createB();
+ instanceB.test(num, false);
+ instanceB.test(int, true);
+ instanceB.test(String, false);
+}
« no previous file with comments | « tests/language/fixed_type_variable2_test.dart ('k') | tests/language/function_subtype_bound_closure5a_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698