| 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 28 matching lines...) Expand all Loading... |
| 39 import 'library_loader.dart' | 39 import 'library_loader.dart' |
| 40 show LibraryLoader, | 40 show LibraryLoader, |
| 41 LibraryLoaderTask, | 41 LibraryLoaderTask, |
| 42 LoadedLibraries; | 42 LoadedLibraries; |
| 43 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; | 43 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; |
| 44 import 'native/native.dart' as native; | 44 import 'native/native.dart' as native; |
| 45 import 'ordered_typeset.dart'; | 45 import 'ordered_typeset.dart'; |
| 46 import 'patch_parser.dart'; | 46 import 'patch_parser.dart'; |
| 47 import 'resolution/class_members.dart' show MembersCreator; | 47 import 'resolution/class_members.dart' show MembersCreator; |
| 48 import 'resolution/resolution.dart'; | 48 import 'resolution/resolution.dart'; |
| 49 import 'resolution/semantic_visitor.dart'; |
| 50 import 'resolution/send_structure.dart'; |
| 51 import 'resolution/operators.dart' as op; |
| 49 import 'scanner/scannerlib.dart'; | 52 import 'scanner/scannerlib.dart'; |
| 50 import 'ssa/ssa.dart'; | 53 import 'ssa/ssa.dart'; |
| 51 import 'io/source_file.dart' show SourceFile; | 54 import 'io/source_file.dart' show SourceFile; |
| 52 import 'tracer.dart' show Tracer; | 55 import 'tracer.dart' show Tracer; |
| 53 import 'tree/tree.dart'; | 56 import 'tree/tree.dart'; |
| 54 import 'types/types.dart' as ti; | 57 import 'types/types.dart' as ti; |
| 55 import 'universe/universe.dart'; | 58 import 'universe/universe.dart'; |
| 56 import 'util/characters.dart' show $_; | 59 import 'util/characters.dart' show $_; |
| 57 import 'util/uri_extras.dart' as uri_extras show relativize; | 60 import 'util/uri_extras.dart' as uri_extras show relativize; |
| 58 import 'util/util.dart'; | 61 import 'util/util.dart'; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 75 part 'compiler.dart'; | 78 part 'compiler.dart'; |
| 76 part 'constant_system.dart'; | 79 part 'constant_system.dart'; |
| 77 part 'constant_system_dart.dart'; | 80 part 'constant_system_dart.dart'; |
| 78 part 'diagnostic_listener.dart'; | 81 part 'diagnostic_listener.dart'; |
| 79 part 'enqueue.dart'; | 82 part 'enqueue.dart'; |
| 80 part 'resolved_visitor.dart'; | 83 part 'resolved_visitor.dart'; |
| 81 part 'script.dart'; | 84 part 'script.dart'; |
| 82 part 'typechecker.dart'; | 85 part 'typechecker.dart'; |
| 83 part 'warnings.dart'; | 86 part 'warnings.dart'; |
| 84 part 'world.dart'; | 87 part 'world.dart'; |
| OLD | NEW |