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

Unified Diff: lib/compiler/implementation/dart_backend/backend.dart

Issue 10828250: Support for generic type variables and unresolved types added. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « no previous file | lib/compiler/implementation/dart_backend/placeholder.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/dart_backend/backend.dart
diff --git a/lib/compiler/implementation/dart_backend/backend.dart b/lib/compiler/implementation/dart_backend/backend.dart
index e4adcc3786cc0a9a2228cfa841561f44a1ff41bc..a896995c3fefa1892d43c17421cce5ac131b485d 100644
--- a/lib/compiler/implementation/dart_backend/backend.dart
+++ b/lib/compiler/implementation/dart_backend/backend.dart
@@ -157,6 +157,8 @@ class ReferencedElementCollector extends AbstractVisitor {
}
void collect() {
- element.parseNode(compiler).accept(this);
+ compiler.withCurrentElement(element, () {
+ element.parseNode(compiler).accept(this);
+ });
}
}
« no previous file with comments | « no previous file | lib/compiler/implementation/dart_backend/placeholder.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698