| 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 'package:js_ast/src/precedence.dart' as js_precedence; | 7 import 'package:js_ast/src/precedence.dart' as js_precedence; |
| 8 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; | 8 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; |
| 9 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin; | 9 import 'package:js_runtime/shared/embedded_names.dart' show JsBuiltin; |
| 10 | 10 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 JavaScriptBackend, | 62 JavaScriptBackend, |
| 63 JavaScriptConstantCompiler, | 63 JavaScriptConstantCompiler, |
| 64 Namer, | 64 Namer, |
| 65 RuntimeTypes, | 65 RuntimeTypes, |
| 66 RuntimeTypesEncoder, | 66 RuntimeTypesEncoder, |
| 67 SetterName, | 67 SetterName, |
| 68 Substitution, | 68 Substitution, |
| 69 TypeCheck, | 69 TypeCheck, |
| 70 TypeChecks, | 70 TypeChecks, |
| 71 TypeVariableHandler; | 71 TypeVariableHandler; |
| 72 import '../native/native.dart' as native; | |
| 73 import '../universe/call_structure.dart' show | 72 import '../universe/call_structure.dart' show |
| 74 CallStructure; | 73 CallStructure; |
| 75 import '../universe/selector.dart' show | 74 import '../universe/selector.dart' show |
| 76 Selector; | 75 Selector; |
| 77 import '../universe/universe.dart' show | 76 import '../universe/universe.dart' show |
| 78 SelectorConstraints; | 77 SelectorConstraints; |
| 79 import '../util/util.dart' show | 78 import '../util/util.dart' show |
| 80 Setlet; | 79 Setlet; |
| 81 | 80 |
| 82 | 81 |
| 83 import 'full_emitter/emitter.dart' as full_js_emitter; | 82 import 'full_emitter/emitter.dart' as full_js_emitter; |
| 84 import 'lazy_emitter/emitter.dart' as lazy_js_emitter; | 83 import 'lazy_emitter/emitter.dart' as lazy_js_emitter; |
| 85 import 'model.dart'; | 84 import 'model.dart'; |
| 86 import 'program_builder/program_builder.dart'; | 85 import 'program_builder/program_builder.dart'; |
| 87 import 'startup_emitter/emitter.dart' as startup_js_emitter; | 86 import 'startup_emitter/emitter.dart' as startup_js_emitter; |
| 88 | 87 |
| 89 part 'class_stub_generator.dart'; | 88 part 'class_stub_generator.dart'; |
| 90 part 'code_emitter_task.dart'; | 89 part 'code_emitter_task.dart'; |
| 91 part 'helpers.dart'; | 90 part 'helpers.dart'; |
| 92 part 'interceptor_stub_generator.dart'; | 91 part 'interceptor_stub_generator.dart'; |
| 93 part 'main_call_stub_generator.dart'; | 92 part 'main_call_stub_generator.dart'; |
| 94 part 'metadata_collector.dart'; | 93 part 'metadata_collector.dart'; |
| 95 part 'native_emitter.dart'; | 94 part 'native_emitter.dart'; |
| 96 part 'native_generator.dart'; | 95 part 'native_generator.dart'; |
| 97 part 'parameter_stub_generator.dart'; | 96 part 'parameter_stub_generator.dart'; |
| 98 part 'runtime_type_generator.dart'; | 97 part 'runtime_type_generator.dart'; |
| 99 part 'type_test_registry.dart'; | 98 part 'type_test_registry.dart'; |
| OLD | NEW |