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

Unified Diff: sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart

Issue 12377081: Register instantiated types instead of instantiated classes in the resolver. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Small bugfix: use the raw type if no type argument is given. Created 7 years, 10 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: sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart
diff --git a/sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart b/sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart
index e8930755916d4ea7b4d2dfa521bf0b4067a46537..a43e089975691306ac33a0696c21ecd70ae02bc7 100644
--- a/sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart
+++ b/sdk/lib/_internal/compiler/implementation/js_backend/runtime_types.dart
@@ -63,15 +63,6 @@ class RuntimeTypeInformation {
}
}
- // TODO(karlklose): remove this temporary fix: we need to add the classes
- // used in substitutions to addArguments.
- allArguments.addAll([compiler.intClass,
- compiler.boolClass,
- compiler.numClass,
- compiler.doubleClass,
- compiler.stringClass,
- compiler.listClass]);
-
return cachedRequiredChecks = requiredChecks;
}

Powered by Google App Engine
This is Rietveld 408576698