| 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 import 'dart:profiler' show | 9 import 'dart:profiler' show |
| 10 UserTag; | 10 UserTag; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 LibraryLoaderTask, | 40 LibraryLoaderTask, |
| 41 LoadedLibraries; | 41 LoadedLibraries; |
| 42 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; | 42 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; |
| 43 import 'native/native.dart' as native; | 43 import 'native/native.dart' as native; |
| 44 import 'ordered_typeset.dart'; | 44 import 'ordered_typeset.dart'; |
| 45 import 'patch_parser.dart'; | 45 import 'patch_parser.dart'; |
| 46 import 'resolution/class_members.dart' show MembersCreator; | 46 import 'resolution/class_members.dart' show MembersCreator; |
| 47 import 'resolution/resolution.dart'; | 47 import 'resolution/resolution.dart'; |
| 48 import 'scanner/scannerlib.dart'; | 48 import 'scanner/scannerlib.dart'; |
| 49 import 'ssa/ssa.dart'; | 49 import 'ssa/ssa.dart'; |
| 50 import 'source_file.dart' show SourceFile; | 50 import 'io/source_file.dart' show SourceFile; |
| 51 import 'tracer.dart' show Tracer; | 51 import 'tracer.dart' show Tracer; |
| 52 import 'tree/tree.dart'; | 52 import 'tree/tree.dart'; |
| 53 import 'types/types.dart' as ti; | 53 import 'types/types.dart' as ti; |
| 54 import 'universe/universe.dart'; | 54 import 'universe/universe.dart'; |
| 55 import 'util/characters.dart' show $_; | 55 import 'util/characters.dart' show $_; |
| 56 import 'util/uri_extras.dart' as uri_extras show relativize; | 56 import 'util/uri_extras.dart' as uri_extras show relativize; |
| 57 import 'util/util.dart'; | 57 import 'util/util.dart'; |
| 58 import 'dart_backend/dart_backend.dart'; | 58 import 'dart_backend/dart_backend.dart'; |
| 59 | 59 |
| 60 export 'helpers/helpers.dart'; | 60 export 'helpers/helpers.dart'; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 74 part 'compiler.dart'; | 74 part 'compiler.dart'; |
| 75 part 'constant_system.dart'; | 75 part 'constant_system.dart'; |
| 76 part 'constant_system_dart.dart'; | 76 part 'constant_system_dart.dart'; |
| 77 part 'diagnostic_listener.dart'; | 77 part 'diagnostic_listener.dart'; |
| 78 part 'enqueue.dart'; | 78 part 'enqueue.dart'; |
| 79 part 'resolved_visitor.dart'; | 79 part 'resolved_visitor.dart'; |
| 80 part 'script.dart'; | 80 part 'script.dart'; |
| 81 part 'typechecker.dart'; | 81 part 'typechecker.dart'; |
| 82 part 'warnings.dart'; | 82 part 'warnings.dart'; |
| 83 part 'world.dart'; | 83 part 'world.dart'; |
| OLD | NEW |