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

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

Issue 11184046: Clean up leg.dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebased on CL 11187067 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/ssa/ssa.dart
diff --git a/dart/lib/compiler/implementation/ssa/ssa.dart b/dart/lib/compiler/implementation/ssa/ssa.dart
index 4a6ce7ab14631ef09d7acb929f1db4c8536e7483..0e83a74fe2e9da4ab86a80d990dcee7b4199a150 100644
--- a/dart/lib/compiler/implementation/ssa/ssa.dart
+++ b/dart/lib/compiler/implementation/ssa/ssa.dart
@@ -2,34 +2,37 @@
// 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('ssa');
+library ssa;
-#import('../closure.dart');
-#import('../js/js.dart', prefix: 'js');
-#import('../leg.dart');
-#import('../source_file.dart');
-#import('../source_map_builder.dart');
-#import('../elements/elements.dart');
-#import('../js_backend/js_backend.dart');
-#import('../native_handler.dart', prefix: 'native');
-#import('../runtime_types.dart');
-#import('../scanner/scannerlib.dart');
-#import('../tree/tree.dart');
-#import('../types/types.dart');
-#import('../universe/universe.dart');
-#import('../util/util.dart');
-#import('../util/characters.dart');
+import '../closure.dart';
+import '../js/js.dart' as js;
+import '../dart2jslib.dart' hide Selector;
+import '../source_file.dart';
+import '../source_map_builder.dart';
+import '../elements/elements.dart';
+import '../js_backend/js_backend.dart';
+import '../native_handler.dart' as native;
+import '../runtime_types.dart';
+import '../tree/tree.dart';
+import '../types/types.dart';
+import '../universe/universe.dart';
+import '../util/util.dart';
+import '../util/characters.dart';
-#source('bailout.dart');
-#source('builder.dart');
-#source('codegen.dart');
-#source('codegen_helpers.dart');
-#source('js_names.dart');
-#source('nodes.dart');
-#source('optimize.dart');
-#source('types.dart');
-#source('types_propagation.dart');
-#source('validate.dart');
-#source('variable_allocator.dart');
-#source('value_range_analyzer.dart');
-#source('value_set.dart');
+import '../scanner/scannerlib.dart' show PartialFunctionElement,
+ Token,
+ PLUS_TOKEN;
+
+part 'bailout.dart';
+part 'builder.dart';
+part 'codegen.dart';
+part 'codegen_helpers.dart';
+part 'js_names.dart';
+part 'nodes.dart';
+part 'optimize.dart';
+part 'types.dart';
+part 'types_propagation.dart';
+part 'validate.dart';
+part 'variable_allocator.dart';
+part 'value_range_analyzer.dart';
+part 'value_set.dart';
« no previous file with comments | « dart/lib/compiler/implementation/scanner/scannerlib.dart ('k') | dart/lib/compiler/implementation/ssa/tracer.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698