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

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

Issue 11184046: Clean up leg.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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: dart/lib/compiler/implementation/dart_backend/dart_backend.dart
diff --git a/dart/lib/compiler/implementation/dart_backend/dart_backend.dart b/dart/lib/compiler/implementation/dart_backend/dart_backend.dart
index 4e664880eb8219b516534e5d2708a86b4be12426..8e3d93d0458e833885331766c3fb695a83dd585c 100644
--- a/dart/lib/compiler/implementation/dart_backend/dart_backend.dart
+++ b/dart/lib/compiler/implementation/dart_backend/dart_backend.dart
@@ -2,17 +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 dart_backend;
-#import('../elements/elements.dart');
-#import('../leg.dart');
-#import('../scanner/scannerlib.dart');
-#import('../tree/tree.dart');
-#import('../universe/universe.dart');
-#import('../util/util.dart');
+import '../elements/elements.dart';
+import '../dart2jslib.dart';
+import '../tree/tree.dart';
+import '../util/util.dart';
-#source('backend.dart');
-#source('emitter.dart');
-#source('renamer.dart');
-#source('placeholder_collector.dart');
-#source('utils.dart');
+import '../scanner/scannerlib.dart' show StringToken,
+ Keyword,
+ IDENTIFIER_INFO;
+
+part 'backend.dart';
+part 'emitter.dart';
+part 'renamer.dart';
+part 'placeholder_collector.dart';
+part 'utils.dart';

Powered by Google App Engine
This is Rietveld 408576698