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

Unified Diff: lib/compiler/implementation/js_backend/js_backend.dart

Issue 10854066: Start moving the JavaScript backend related code into a separate library (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add missing import 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
Index: lib/compiler/implementation/js_backend/js_backend.dart
diff --git a/lib/compiler/implementation/dart_backend/dart_backend.dart b/lib/compiler/implementation/js_backend/js_backend.dart
similarity index 57%
copy from lib/compiler/implementation/dart_backend/dart_backend.dart
copy to lib/compiler/implementation/js_backend/js_backend.dart
index 9f787e975a312cf47dd6214b6c4f83033904297b..e495570015dee265ad3c487bd0164dc235cd86ce 100644
--- a/lib/compiler/implementation/dart_backend/dart_backend.dart
+++ b/lib/compiler/implementation/js_backend/js_backend.dart
@@ -2,15 +2,19 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-#library('dart_backend');
+#library('js_backend');
+#import('../../compiler.dart', prefix: 'api');
#import('../elements/elements.dart');
#import('../leg.dart');
+#import('../native_handler.dart', prefix: 'native');
+#import('../scanner/scannerlib.dart');
+#import('../source_file.dart');
+#import('../source_map_builder.dart');
+#import('../ssa/ssa.dart');
#import('../tree/tree.dart');
#import('../util/util.dart');
#source('backend.dart');
#source('emitter.dart');
-#source('renamer.dart');
-#source('placeholder.dart');
-#source('placeholder_collector.dart');
+#source('native_emitter.dart');
« no previous file with comments | « lib/compiler/implementation/js_backend/emitter.dart ('k') | lib/compiler/implementation/js_backend/native_emitter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698