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

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

Issue 11304021: Add NativeEnqueuer to work with the Enqueuer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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/dart_backend/backend.dart
diff --git a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
index 101918b89bc7d6b0fab4fa0c4d91bac7535bc630..9522a9a62078216a32d49453e599a0610af53325 100644
--- a/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
+++ b/sdk/lib/_internal/compiler/implementation/dart_backend/backend.dart
@@ -214,6 +214,10 @@ class DartBackend extends Backend {
void processNativeClasses(Enqueuer world,
Collection<LibraryElement> libraries) { }
+ // Stub native enqueuers.
+ NativeEnqueuer nativeResolutionEnqueuer(Enqueuer world) => new NativeEnqueuer();
+ NativeEnqueuer nativeCodegenEnqueuer(Enqueuer world) => new NativeEnqueuer();
+
bool isUserLibrary(LibraryElement lib) {
final INTERNAL_HELPERS = [
compiler.jsHelperLibrary,

Powered by Google App Engine
This is Rietveld 408576698