OLD | NEW |
| (Empty) |
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 | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 library js_backend; | |
6 | |
7 import 'dart:async' show EventSink, Future; | |
8 import 'dart:collection' show Queue, LinkedHashMap, LinkedHashSet; | |
9 | |
10 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' as embedde
dNames; | |
11 | |
12 import '../closure.dart'; | |
13 import '../constants/expressions.dart'; | |
14 import '../constants/values.dart'; | |
15 import '../dart2jslib.dart'; | |
16 import '../dart_types.dart'; | |
17 import '../elements/elements.dart'; | |
18 import '../js/js.dart' as jsAst; | |
19 import '../js/js.dart' show js; | |
20 import '../js_emitter/js_emitter.dart' | |
21 show Emitter, CodeEmitterTask, ClassBuilder, MetadataEmitter; | |
22 import '../library_loader.dart' show LibraryLoader; | |
23 import '../native/native.dart' as native; | |
24 import '../ssa/ssa.dart'; | |
25 import '../tree/tree.dart'; | |
26 import '../types/types.dart'; | |
27 import '../universe/universe.dart'; | |
28 import '../util/characters.dart'; | |
29 import '../util/util.dart'; | |
30 | |
31 import '../elements/visitor.dart' show | |
32 ElementVisitor; | |
33 | |
34 part 'backend.dart'; | |
35 part 'checked_mode_helpers.dart'; | |
36 part 'constant_emitter.dart'; | |
37 part 'constant_handler_javascript.dart'; | |
38 part 'constant_system_javascript.dart'; | |
39 part 'custom_elements_analysis.dart'; | |
40 part 'minify_namer.dart'; | |
41 part 'namer.dart'; | |
42 part 'native_emitter.dart'; | |
43 part 'runtime_types.dart'; | |
44 part 'type_variable_handler.dart'; | |
OLD | NEW |