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

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

Issue 12210142: Implement is-checks against type variables. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix a long line. 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/compiler.dart
diff --git a/sdk/lib/_internal/compiler/implementation/compiler.dart b/sdk/lib/_internal/compiler/implementation/compiler.dart
index 09ed82108ac9e6c34b9dfce74355bb7631a401cd..814511d933d2e2ba30c36ccc416ffdb01448d03c 100644
--- a/sdk/lib/_internal/compiler/implementation/compiler.dart
+++ b/sdk/lib/_internal/compiler/implementation/compiler.dart
@@ -106,6 +106,11 @@ abstract class Backend {
});
}
+ // TODO(karlklose): get rid of this and add a factory constructor to [List]
+ // that creates an instance of JSArray to make the dependency visible in from
+ // the source code.
+ void addBackendRtiDependencies(World world);
+
void enqueueHelpers(ResolutionEnqueuer world);
void codegen(CodegenWorkItem work);

Powered by Google App Engine
This is Rietveld 408576698