| 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 '../common.dart'; | 7 import '../common.dart'; |
| 8 | 8 |
| 9 import '../common/names.dart' show | 9 import '../common/names.dart' show |
| 10 Identifiers; | 10 Identifiers; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 import '../js_backend/js_backend.dart' show | 43 import '../js_backend/js_backend.dart' show |
| 44 CheckedModeHelper, | 44 CheckedModeHelper, |
| 45 CompoundName, | 45 CompoundName, |
| 46 ConstantEmitter, | 46 ConstantEmitter, |
| 47 CustomElementsAnalysis, | 47 CustomElementsAnalysis, |
| 48 GetterName, | 48 GetterName, |
| 49 JavaScriptBackend, | 49 JavaScriptBackend, |
| 50 JavaScriptConstantCompiler, | 50 JavaScriptConstantCompiler, |
| 51 Namer, | 51 Namer, |
| 52 RuntimeTypes, | 52 RuntimeTypes, |
| 53 RuntimeTypesEncoder, |
| 53 SetterName, | 54 SetterName, |
| 54 Substitution, | 55 Substitution, |
| 55 TypeCheck, | 56 TypeCheck, |
| 56 TypeChecks, | 57 TypeChecks, |
| 57 TypeVariableHandler; | 58 TypeVariableHandler; |
| 58 | 59 |
| 59 import 'model.dart'; | 60 import 'model.dart'; |
| 60 import 'program_builder/program_builder.dart'; | 61 import 'program_builder/program_builder.dart'; |
| 61 | 62 |
| 62 import 'full_emitter/emitter.dart' as full_js_emitter; | 63 import 'full_emitter/emitter.dart' as full_js_emitter; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 81 part 'code_emitter_task.dart'; | 82 part 'code_emitter_task.dart'; |
| 82 part 'helpers.dart'; | 83 part 'helpers.dart'; |
| 83 part 'interceptor_stub_generator.dart'; | 84 part 'interceptor_stub_generator.dart'; |
| 84 part 'main_call_stub_generator.dart'; | 85 part 'main_call_stub_generator.dart'; |
| 85 part 'metadata_collector.dart'; | 86 part 'metadata_collector.dart'; |
| 86 part 'native_emitter.dart'; | 87 part 'native_emitter.dart'; |
| 87 part 'native_generator.dart'; | 88 part 'native_generator.dart'; |
| 88 part 'parameter_stub_generator.dart'; | 89 part 'parameter_stub_generator.dart'; |
| 89 part 'runtime_type_generator.dart'; | 90 part 'runtime_type_generator.dart'; |
| 90 part 'type_test_registry.dart'; | 91 part 'type_test_registry.dart'; |
| OLD | NEW |