| 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:collection' show Queue; | 7 import 'dart:collection' show Queue; |
| 8 | 8 |
| 9 import '../common.dart'; | 9 import '../common.dart'; |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 CheckedModeHelper, | 29 CheckedModeHelper, |
| 30 ConstantEmitter, | 30 ConstantEmitter, |
| 31 CustomElementsAnalysis, | 31 CustomElementsAnalysis, |
| 32 JavaScriptBackend, | 32 JavaScriptBackend, |
| 33 JavaScriptBackend, | 33 JavaScriptBackend, |
| 34 Namer, | 34 Namer, |
| 35 NativeEmitter, | 35 NativeEmitter, |
| 36 RuntimeTypes, | 36 RuntimeTypes, |
| 37 Substitution, | 37 Substitution, |
| 38 TypeCheck, | 38 TypeCheck, |
| 39 TypeChecks, | 39 TypeChecks; |
| 40 TypeVariableHandler; | |
| 41 | 40 |
| 42 import '../source_file.dart' show | 41 import '../source_file.dart' show |
| 43 SourceFile; | 42 SourceFile; |
| 44 | 43 |
| 45 import '../source_map_builder.dart' show | 44 import '../source_map_builder.dart' show |
| 46 SourceMapBuilder; | 45 SourceMapBuilder; |
| 47 | 46 |
| 48 import '../util/characters.dart' show | 47 import '../util/characters.dart' show |
| 49 $$, | 48 $$, |
| 50 $A, | 49 $A, |
| (...skipping 12 matching lines...) Expand all Loading... |
| 63 part 'code_emitter_helper.dart'; | 62 part 'code_emitter_helper.dart'; |
| 64 part 'code_emitter_task.dart'; | 63 part 'code_emitter_task.dart'; |
| 65 part 'container_builder.dart'; | 64 part 'container_builder.dart'; |
| 66 part 'declarations.dart'; | 65 part 'declarations.dart'; |
| 67 part 'helpers.dart'; | 66 part 'helpers.dart'; |
| 68 part 'interceptor_emitter.dart'; | 67 part 'interceptor_emitter.dart'; |
| 69 part 'metadata_emitter.dart'; | 68 part 'metadata_emitter.dart'; |
| 70 part 'nsm_emitter.dart'; | 69 part 'nsm_emitter.dart'; |
| 71 part 'reflection_data_parser.dart'; | 70 part 'reflection_data_parser.dart'; |
| 72 part 'type_test_emitter.dart'; | 71 part 'type_test_emitter.dart'; |
| OLD | NEW |