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

Side by Side Diff: dart/lib/compiler/implementation/js_backend/js_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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #library('js_backend'); 5 library js_backend;
6 6
7 #import('../closure.dart'); 7 import '../closure.dart';
8 #import('../../compiler.dart', prefix: 'api'); 8 import '../../compiler.dart' as api;
9 #import('../elements/elements.dart'); 9 import '../elements/elements.dart';
10 #import('../leg.dart'); 10 import '../dart2jslib.dart' hide Selector;
11 #import('../native_handler.dart', prefix: 'native'); 11 import '../native_handler.dart' as native;
12 #import('../scanner/scannerlib.dart'); 12 import '../source_file.dart';
13 #import('../source_file.dart'); 13 import '../source_map_builder.dart';
14 #import('../source_map_builder.dart'); 14 import '../ssa/ssa.dart';
15 #import('../ssa/ssa.dart'); 15 import '../tree/tree.dart';
16 #import('../tree/tree.dart'); 16 import '../universe/universe.dart';
17 #import('../universe/universe.dart'); 17 import '../util/characters.dart';
18 #import('../util/characters.dart'); 18 import '../util/util.dart';
19 #import('../util/util.dart');
20 19
21 #source('backend.dart'); 20 part 'backend.dart';
22 #source('constant_emitter.dart'); 21 part 'constant_emitter.dart';
23 #source('constant_system_javascript.dart'); 22 part 'constant_system_javascript.dart';
24 #source('emitter.dart'); 23 part 'emitter.dart';
25 #source('emitter_no_eval.dart'); 24 part 'emitter_no_eval.dart';
26 #source('namer.dart'); 25 part 'namer.dart';
27 #source('native_emitter.dart'); 26 part 'native_emitter.dart';
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698