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 | 8 |
9 import '../common.dart'; | 9 import '../common.dart'; |
10 | 10 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 import 'new_emitter/emitter.dart' as new_js_emitter; | 57 import 'new_emitter/emitter.dart' as new_js_emitter; |
58 | 58 |
59 import '../io/line_column_provider.dart' show | 59 import '../io/line_column_provider.dart' show |
60 LineColumnCollector, | 60 LineColumnCollector, |
61 LineColumnProvider; | 61 LineColumnProvider; |
62 | 62 |
63 import '../io/source_map_builder.dart' show | 63 import '../io/source_map_builder.dart' show |
64 SourceMapBuilder; | 64 SourceMapBuilder; |
65 | 65 |
66 import '../universe/universe.dart' show | |
67 TypeMaskSet, | |
68 TypedSelector; | |
69 | |
70 import '../util/characters.dart' show | 66 import '../util/characters.dart' show |
71 $$, | 67 $$, |
72 $A, | 68 $A, |
73 $HASH, | 69 $HASH, |
74 $PERIOD, | 70 $PERIOD, |
75 $Z, | 71 $Z, |
76 $a, | 72 $a, |
77 $z; | 73 $z; |
78 | 74 |
79 import '../util/util.dart' show | 75 import '../util/util.dart' show |
(...skipping 29 matching lines...) Expand all Loading... |
109 | 105 |
110 part 'old_emitter/class_builder.dart'; | 106 part 'old_emitter/class_builder.dart'; |
111 part 'old_emitter/class_emitter.dart'; | 107 part 'old_emitter/class_emitter.dart'; |
112 part 'old_emitter/code_emitter_helper.dart'; | 108 part 'old_emitter/code_emitter_helper.dart'; |
113 part 'old_emitter/container_builder.dart'; | 109 part 'old_emitter/container_builder.dart'; |
114 part 'old_emitter/declarations.dart'; | 110 part 'old_emitter/declarations.dart'; |
115 part 'old_emitter/emitter.dart'; | 111 part 'old_emitter/emitter.dart'; |
116 part 'old_emitter/interceptor_emitter.dart'; | 112 part 'old_emitter/interceptor_emitter.dart'; |
117 part 'old_emitter/nsm_emitter.dart'; | 113 part 'old_emitter/nsm_emitter.dart'; |
118 part 'old_emitter/setup_program_builder.dart'; | 114 part 'old_emitter/setup_program_builder.dart'; |
OLD | NEW |