| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; | 45 import 'mirrors_used.dart' show MirrorUsageAnalyzerTask; |
| 46 import 'native/native.dart' as native; | 46 import 'native/native.dart' as native; |
| 47 import 'ordered_typeset.dart'; | 47 import 'ordered_typeset.dart'; |
| 48 import 'patch_parser.dart'; | 48 import 'patch_parser.dart'; |
| 49 import 'resolution/class_members.dart' show MembersCreator; | 49 import 'resolution/class_members.dart' show MembersCreator; |
| 50 import 'resolution/resolution.dart'; | 50 import 'resolution/resolution.dart'; |
| 51 import 'resolution/semantic_visitor.dart'; | 51 import 'resolution/semantic_visitor.dart'; |
| 52 import 'resolution/send_structure.dart'; | 52 import 'resolution/send_structure.dart'; |
| 53 import 'resolution/operators.dart' as op; | 53 import 'resolution/operators.dart' as op; |
| 54 import 'scanner/scannerlib.dart'; | 54 import 'scanner/scannerlib.dart'; |
| 55 import 'serialization/task.dart'; |
| 55 import 'ssa/ssa.dart'; | 56 import 'ssa/ssa.dart'; |
| 56 import 'io/source_file.dart' show SourceFile; | 57 import 'io/source_file.dart' show SourceFile; |
| 57 import 'tracer.dart' show Tracer; | 58 import 'tracer.dart' show Tracer; |
| 58 import 'tree/tree.dart'; | 59 import 'tree/tree.dart'; |
| 59 import 'types/types.dart' as ti; | 60 import 'types/types.dart' as ti; |
| 60 import 'universe/universe.dart'; | 61 import 'universe/universe.dart'; |
| 61 import 'util/characters.dart' show $_; | 62 import 'util/characters.dart' show $_; |
| 62 import 'util/uri_extras.dart' as uri_extras show relativize; | 63 import 'util/uri_extras.dart' as uri_extras show relativize; |
| 63 import 'util/util.dart'; | 64 import 'util/util.dart'; |
| 64 | 65 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 76 NO_LOCATION_SPANNABLE; | 77 NO_LOCATION_SPANNABLE; |
| 77 | 78 |
| 78 part 'compiler.dart'; | 79 part 'compiler.dart'; |
| 79 part 'diagnostic_listener.dart'; | 80 part 'diagnostic_listener.dart'; |
| 80 part 'enqueue.dart'; | 81 part 'enqueue.dart'; |
| 81 part 'resolved_visitor.dart'; | 82 part 'resolved_visitor.dart'; |
| 82 part 'script.dart'; | 83 part 'script.dart'; |
| 83 part 'typechecker.dart'; | 84 part 'typechecker.dart'; |
| 84 part 'warnings.dart'; | 85 part 'warnings.dart'; |
| 85 part 'world.dart'; | 86 part 'world.dart'; |
| OLD | NEW |