| OLD | NEW |
| 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 dart2js; | 5 library dart2js; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:collection' show Queue; | 8 import 'dart:collection' show Queue; |
| 9 | 9 |
| 10 import 'dart:profiler' show | 10 import 'dart:profiler' show |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 import 'helpers/helpers.dart'; // Included for debug helpers. | 26 import 'helpers/helpers.dart'; // Included for debug helpers. |
| 27 import 'js_backend/js_backend.dart' as js_backend; | 27 import 'js_backend/js_backend.dart' as js_backend; |
| 28 import 'library_loader.dart' | 28 import 'library_loader.dart' |
| 29 show LibraryLoader, | 29 show LibraryLoader, |
| 30 LibraryLoaderTask; | 30 LibraryLoaderTask; |
| 31 import 'native_handler.dart' as native; | 31 import 'native_handler.dart' as native; |
| 32 import 'scanner/scannerlib.dart'; | 32 import 'scanner/scannerlib.dart'; |
| 33 import 'ssa/ssa.dart'; | 33 import 'ssa/ssa.dart'; |
| 34 import 'tree/tree.dart'; | 34 import 'tree/tree.dart'; |
| 35 import 'cps_ir/cps_ir_builder.dart' show IrBuilderTask; | 35 import 'cps_ir/cps_ir_builder.dart' show IrBuilderTask; |
| 36 import 'cps_ir/const_expression.dart'; |
| 36 import 'universe/universe.dart'; | 37 import 'universe/universe.dart'; |
| 37 import 'util/util.dart'; | 38 import 'util/util.dart'; |
| 38 import 'util/characters.dart' show $_; | 39 import 'util/characters.dart' show $_; |
| 39 import 'ordered_typeset.dart'; | 40 import 'ordered_typeset.dart'; |
| 40 import '../compiler.dart' as api; | 41 import '../compiler.dart' as api; |
| 41 import 'patch_parser.dart'; | 42 import 'patch_parser.dart'; |
| 42 import 'types/types.dart' as ti; | 43 import 'types/types.dart' as ti; |
| 43 import 'resolution/resolution.dart'; | 44 import 'resolution/resolution.dart'; |
| 44 import 'resolution/class_members.dart' show MembersCreator; | 45 import 'resolution/class_members.dart' show MembersCreator; |
| 45 import 'source_file.dart' show SourceFile; | 46 import 'source_file.dart' show SourceFile; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 69 part 'constants.dart'; | 70 part 'constants.dart'; |
| 70 part 'constant_system.dart'; | 71 part 'constant_system.dart'; |
| 71 part 'constant_system_dart.dart'; | 72 part 'constant_system_dart.dart'; |
| 72 part 'diagnostic_listener.dart'; | 73 part 'diagnostic_listener.dart'; |
| 73 part 'enqueue.dart'; | 74 part 'enqueue.dart'; |
| 74 part 'resolved_visitor.dart'; | 75 part 'resolved_visitor.dart'; |
| 75 part 'script.dart'; | 76 part 'script.dart'; |
| 76 part 'typechecker.dart'; | 77 part 'typechecker.dart'; |
| 77 part 'warnings.dart'; | 78 part 'warnings.dart'; |
| 78 part 'world.dart'; | 79 part 'world.dart'; |
| OLD | NEW |