| 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 |
| 9 HashSet, |
| 10 Queue; |
| 9 | 11 |
| 10 import 'dart:profiler' show | 12 import 'dart:profiler' show |
| 11 UserTag; | 13 UserTag; |
| 12 | 14 |
| 13 import 'closure.dart' as closureMapping; | 15 import 'closure.dart' as closureMapping; |
| 14 import 'dart_backend/dart_backend.dart' as dart_backend; | 16 import 'dart_backend/dart_backend.dart' as dart_backend; |
| 15 import 'dart_types.dart'; | 17 import 'dart_types.dart'; |
| 16 import 'elements/elements.dart'; | 18 import 'elements/elements.dart'; |
| 17 import 'elements/modelx.dart' | 19 import 'elements/modelx.dart' |
| 18 show ErroneousElementX, | 20 show ErroneousElementX, |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 part 'constant_system_dart.dart'; | 68 part 'constant_system_dart.dart'; |
| 67 part 'diagnostic_listener.dart'; | 69 part 'diagnostic_listener.dart'; |
| 68 part 'enqueue.dart'; | 70 part 'enqueue.dart'; |
| 69 part 'library_loader.dart'; | 71 part 'library_loader.dart'; |
| 70 part 'resolved_visitor.dart'; | 72 part 'resolved_visitor.dart'; |
| 71 part 'script.dart'; | 73 part 'script.dart'; |
| 72 part 'tree_validator.dart'; | 74 part 'tree_validator.dart'; |
| 73 part 'typechecker.dart'; | 75 part 'typechecker.dart'; |
| 74 part 'warnings.dart'; | 76 part 'warnings.dart'; |
| 75 part 'world.dart'; | 77 part 'world.dart'; |
| OLD | NEW |