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

Unified Diff: pkg/compiler/lib/src/resolution/registry.dart

Issue 1344733003: dart2js: Register helpers for updating send to type variable. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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/compiler/lib/src/resolution/registry.dart
diff --git a/pkg/compiler/lib/src/resolution/registry.dart b/pkg/compiler/lib/src/resolution/registry.dart
index c222afe129fe626fe8daa355e7f436fba44bf57f..625f8f0056703d1bdcf582a560920bd16a3b6beb 100644
--- a/pkg/compiler/lib/src/resolution/registry.dart
+++ b/pkg/compiler/lib/src/resolution/registry.dart
@@ -455,12 +455,8 @@ class ResolutionRegistry implements Registry {
backend.resolutionCallbacks.onSuperNoSuchMethod(this);
}
- void registerClassUsingVariableExpression(ClassElement element) {
- backend.registerClassUsingVariableExpression(element);
- }
-
- void registerTypeVariableExpression() {
- backend.resolutionCallbacks.onTypeVariableExpression(this);
+ void registerTypeVariableExpression(TypeVariableElement element) {
+ backend.resolutionCallbacks.onTypeVariableExpression(this, element);
}
void registerTypeLiteral(Send node, DartType type) {
« pkg/compiler/lib/src/resolution/members.dart ('K') | « pkg/compiler/lib/src/resolution/members.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698