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:uri'; | 8 import 'dart:uri'; |
9 import 'dart:collection' show Queue, LinkedHashMap; | 9 import 'dart:collection' show Queue, LinkedHashMap; |
10 | 10 |
11 import 'closure.dart' as closureMapping; | 11 import 'closure.dart' as closureMapping; |
12 import 'dart_backend/dart_backend.dart' as dart_backend; | 12 import 'dart_backend/dart_backend.dart' as dart_backend; |
13 import 'dart_types.dart'; | 13 import 'dart_types.dart'; |
14 import 'elements/elements.dart'; | 14 import 'elements/elements.dart'; |
15 import 'elements/modelx.dart' | 15 import 'elements/modelx.dart' |
16 show ErroneousElementX, | 16 show ErroneousElementX, |
| 17 ClassElementX, |
17 CompilationUnitElementX, | 18 CompilationUnitElementX, |
18 LibraryElementX, | 19 LibraryElementX, |
19 PrefixElementX, | 20 PrefixElementX, |
20 VoidElementX; | 21 VoidElementX; |
21 import 'js_backend/js_backend.dart' as js_backend; | 22 import 'js_backend/js_backend.dart' as js_backend; |
22 import 'native_handler.dart' as native; | 23 import 'native_handler.dart' as native; |
23 import 'scanner/scanner_implementation.dart'; | 24 import 'scanner/scanner_implementation.dart'; |
24 import 'scanner/scannerlib.dart'; | 25 import 'scanner/scannerlib.dart'; |
25 import 'ssa/ssa.dart'; | 26 import 'ssa/ssa.dart'; |
26 import 'string_validator.dart'; | 27 import 'string_validator.dart'; |
(...skipping 26 matching lines...) Expand all Loading... |
53 part 'constant_system_dart.dart'; | 54 part 'constant_system_dart.dart'; |
54 part 'diagnostic_listener.dart'; | 55 part 'diagnostic_listener.dart'; |
55 part 'enqueue.dart'; | 56 part 'enqueue.dart'; |
56 part 'library_loader.dart'; | 57 part 'library_loader.dart'; |
57 part 'resolved_visitor.dart'; | 58 part 'resolved_visitor.dart'; |
58 part 'script.dart'; | 59 part 'script.dart'; |
59 part 'tree_validator.dart'; | 60 part 'tree_validator.dart'; |
60 part 'typechecker.dart'; | 61 part 'typechecker.dart'; |
61 part 'warnings.dart'; | 62 part 'warnings.dart'; |
62 part 'world.dart'; | 63 part 'world.dart'; |
OLD | NEW |