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

Unified Diff: pkg/analyzer/test/generated/element_test.dart

Issue 1070443002: Rework type assignability, subtype, and "more specific than" checking. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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: pkg/analyzer/test/generated/element_test.dart
diff --git a/pkg/analyzer/test/generated/element_test.dart b/pkg/analyzer/test/generated/element_test.dart
index 7dfddd7ff9a3203ddca818b167e4bbf3f73f6cb2..71561612fefb6bce45f534d8b74880aa5e26cd28 100644
--- a/pkg/analyzer/test/generated/element_test.dart
+++ b/pkg/analyzer/test/generated/element_test.dart
@@ -2633,8 +2633,9 @@ class InterfaceTypeImplTest extends EngineTestCase {
}
void test_isAssignableTo_void() {
+ InterfaceTypeImpl intType = _typeProvider.intType;
expect(
- VoidTypeImpl.instance.isAssignableTo(_typeProvider.intType), isFalse);
+ VoidTypeImpl.instance.isAssignableTo(intType), isFalse);
}
void test_isDirectSupertypeOf_extends() {

Powered by Google App Engine
This is Rietveld 408576698