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

Side by Side Diff: dart/lib/compiler/implementation/dart2jslib.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 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('leg'); 5 library dart2js;
6 6
7 #import('dart:uri'); 7 import 'dart:uri';
8 8
9 #import('closure.dart', prefix: 'closureMapping'); 9 import 'closure.dart' as closureMapping;
10 #import('dart_backend/dart_backend.dart', prefix: 'dart_backend'); 10 import 'dart_backend/dart_backend.dart' as dart_backend;
11 #import('elements/elements.dart'); 11 import 'elements/elements.dart';
12 #import('js_backend/js_backend.dart', prefix: 'js_backend'); 12 import 'js_backend/js_backend.dart' as js_backend;
13 #import('native_handler.dart', prefix: 'native'); 13 import 'native_handler.dart' as native;
14 #import('scanner/scanner_implementation.dart'); 14 import 'scanner/scanner_implementation.dart';
15 #import('scanner/scannerlib.dart'); 15 import 'scanner/scannerlib.dart';
16 #import('ssa/ssa.dart'); 16 import 'ssa/ssa.dart';
17 #import('string_validator.dart'); 17 import 'string_validator.dart';
18 #import('source_file.dart'); 18 import 'source_file.dart';
19 #import('tree/tree.dart'); 19 import 'tree/tree.dart';
20 #import('universe/universe.dart'); 20 import 'universe/universe.dart';
21 #import('util/characters.dart'); 21 import 'util/characters.dart';
22 #import('util/util.dart'); 22 import 'util/util.dart';
23 #import('../compiler.dart', prefix: 'api'); 23 import '../compiler.dart' as api;
24 #import('patch_parser.dart'); 24 import 'patch_parser.dart';
25 #import('types/types.dart', prefix: 'ti'); 25 import 'types/types.dart' as ti;
26 import 'resolution/resolution.dart';
26 27
27 #source('code_buffer.dart'); 28 export 'resolution/resolution.dart' show TreeElements, TreeElementMapping;
28 #source('compile_time_constants.dart'); 29 export 'scanner/scannerlib.dart' show SourceString, isUserDefinableOperator;
29 #source('compiler.dart'); 30 export 'universe/universe.dart' show Selector;
30 #source('constants.dart'); 31
31 #source('constant_system.dart'); 32 part 'code_buffer.dart';
32 #source('constant_system_dart.dart'); 33 part 'compile_time_constants.dart';
33 #source('diagnostic_listener.dart'); 34 part 'compiler.dart';
34 #source('enqueue.dart'); 35 part 'constants.dart';
35 #source('library_loader.dart'); 36 part 'constant_system.dart';
36 #source('resolved_visitor.dart'); 37 part 'constant_system_dart.dart';
37 #source('resolver.dart'); 38 part 'diagnostic_listener.dart';
38 #source('script.dart'); 39 part 'enqueue.dart';
39 #source('tree_validator.dart'); 40 part 'library_loader.dart';
40 #source('typechecker.dart'); 41 part 'resolved_visitor.dart';
41 #source('warnings.dart'); 42 part 'script.dart';
42 #source('world.dart'); 43 part 'tree_validator.dart';
44 part 'typechecker.dart';
45 part 'warnings.dart';
46 part 'world.dart';
OLDNEW
« no previous file with comments | « dart/lib/compiler/implementation/closure.dart ('k') | dart/lib/compiler/implementation/dart_backend/dart_backend.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698