OLD | NEW |
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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.js_emitter; | 5 library dart2js.js_emitter; |
6 | 6 |
7 import 'dart:convert'; | 7 import 'dart:convert'; |
8 import 'dart:collection' show HashMap; | 8 import 'dart:collection' show HashMap; |
9 | 9 |
10 import '../common.dart'; | 10 import '../common.dart'; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 RuntimeTypes, | 50 RuntimeTypes, |
51 SetterName, | 51 SetterName, |
52 Substitution, | 52 Substitution, |
53 TypeCheck, | 53 TypeCheck, |
54 TypeChecks, | 54 TypeChecks, |
55 TypeVariableHandler; | 55 TypeVariableHandler; |
56 | 56 |
57 import 'model.dart'; | 57 import 'model.dart'; |
58 import 'program_builder.dart'; | 58 import 'program_builder.dart'; |
59 | 59 |
60 import 'new_emitter/emitter.dart' as new_js_emitter; | 60 import 'lazy_emitter/emitter.dart' as lazy_js_emitter; |
61 | 61 |
62 import '../io/line_column_provider.dart' show | 62 import '../io/line_column_provider.dart' show |
63 LineColumnCollector, | 63 LineColumnCollector, |
64 LineColumnProvider; | 64 LineColumnProvider; |
65 | 65 |
66 import '../io/source_map_builder.dart' show | 66 import '../io/source_map_builder.dart' show |
67 SourceMapBuilder; | 67 SourceMapBuilder; |
68 | 68 |
69 import '../universe/universe.dart' show | 69 import '../universe/universe.dart' show |
70 TypeMaskSet, | 70 TypeMaskSet, |
(...skipping 30 matching lines...) Expand all Loading... |
101 part 'helpers.dart'; | 101 part 'helpers.dart'; |
102 part 'interceptor_stub_generator.dart'; | 102 part 'interceptor_stub_generator.dart'; |
103 part 'main_call_stub_generator.dart'; | 103 part 'main_call_stub_generator.dart'; |
104 part 'metadata_collector.dart'; | 104 part 'metadata_collector.dart'; |
105 part 'native_emitter.dart'; | 105 part 'native_emitter.dart'; |
106 part 'native_generator.dart'; | 106 part 'native_generator.dart'; |
107 part 'parameter_stub_generator.dart'; | 107 part 'parameter_stub_generator.dart'; |
108 part 'runtime_type_generator.dart'; | 108 part 'runtime_type_generator.dart'; |
109 part 'type_test_registry.dart'; | 109 part 'type_test_registry.dart'; |
110 | 110 |
111 part 'old_emitter/class_builder.dart'; | 111 part 'full_emitter/class_builder.dart'; |
112 part 'old_emitter/class_emitter.dart'; | 112 part 'full_emitter/class_emitter.dart'; |
113 part 'old_emitter/code_emitter_helper.dart'; | 113 part 'full_emitter/code_emitter_helper.dart'; |
114 part 'old_emitter/container_builder.dart'; | 114 part 'full_emitter/container_builder.dart'; |
115 part 'old_emitter/declarations.dart'; | 115 part 'full_emitter/declarations.dart'; |
116 part 'old_emitter/emitter.dart'; | 116 part 'full_emitter/emitter.dart'; |
117 part 'old_emitter/interceptor_emitter.dart'; | 117 part 'full_emitter/interceptor_emitter.dart'; |
118 part 'old_emitter/nsm_emitter.dart'; | 118 part 'full_emitter/nsm_emitter.dart'; |
119 part 'old_emitter/setup_program_builder.dart'; | 119 part 'full_emitter/setup_program_builder.dart'; |
OLD | NEW |