| 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 '../constants/values.dart'; | 9 import '../constants/values.dart'; |
| 10 | 10 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 RuntimeTypes, | 43 RuntimeTypes, |
| 44 SetterName, | 44 SetterName, |
| 45 Substitution, | 45 Substitution, |
| 46 TypeCheck, | 46 TypeCheck, |
| 47 TypeChecks, | 47 TypeChecks, |
| 48 TypeVariableHandler; | 48 TypeVariableHandler; |
| 49 | 49 |
| 50 import 'model.dart'; | 50 import 'model.dart'; |
| 51 import 'program_builder/program_builder.dart'; | 51 import 'program_builder/program_builder.dart'; |
| 52 | 52 |
| 53 import 'full_emitter/emitter.dart' as full_js_emitter; |
| 53 import 'lazy_emitter/emitter.dart' as lazy_js_emitter; | 54 import 'lazy_emitter/emitter.dart' as lazy_js_emitter; |
| 54 import 'full_emitter/emitter.dart' as full_js_emitter; | 55 import 'startup_emitter/emitter.dart' as startup_js_emitter; |
| 55 | 56 |
| 56 import '../universe/universe.dart' show | 57 import '../universe/universe.dart' show |
| 57 TypeMaskSet, | 58 TypeMaskSet, |
| 58 TypedSelector; | 59 TypedSelector; |
| 59 | 60 |
| 60 import '../util/util.dart' show | 61 import '../util/util.dart' show |
| 61 NO_LOCATION_SPANNABLE, | 62 NO_LOCATION_SPANNABLE, |
| 62 Setlet; | 63 Setlet; |
| 63 | 64 |
| 64 import '../deferred_load.dart' show | 65 import '../deferred_load.dart' show |
| 65 OutputUnit; | 66 OutputUnit; |
| 66 | 67 |
| 67 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; | 68 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; |
| 68 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin; | 69 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin; |
| 69 | 70 |
| 70 import '../native/native.dart' as native; | 71 import '../native/native.dart' as native; |
| 71 | 72 |
| 72 part 'class_stub_generator.dart'; | 73 part 'class_stub_generator.dart'; |
| 73 part 'code_emitter_task.dart'; | 74 part 'code_emitter_task.dart'; |
| 74 part 'helpers.dart'; | 75 part 'helpers.dart'; |
| 75 part 'interceptor_stub_generator.dart'; | 76 part 'interceptor_stub_generator.dart'; |
| 76 part 'main_call_stub_generator.dart'; | 77 part 'main_call_stub_generator.dart'; |
| 77 part 'metadata_collector.dart'; | 78 part 'metadata_collector.dart'; |
| 78 part 'native_emitter.dart'; | 79 part 'native_emitter.dart'; |
| 79 part 'native_generator.dart'; | 80 part 'native_generator.dart'; |
| 80 part 'parameter_stub_generator.dart'; | 81 part 'parameter_stub_generator.dart'; |
| 81 part 'runtime_type_generator.dart'; | 82 part 'runtime_type_generator.dart'; |
| 82 part 'type_test_registry.dart'; | 83 part 'type_test_registry.dart'; |
| OLD | NEW |