| 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 |
| 11 import '../closure.dart' | 11 import '../closure.dart' |
| 12 show ClosureClassElement, ClosureClassMap, ClosureFieldElement; | 12 show ClosureClassElement, ClosureClassMap, ClosureFieldElement; |
| 13 import '../common.dart'; | 13 import '../common.dart'; |
| 14 import '../common/names.dart' show Identifiers; | 14 import '../common/names.dart' show Identifiers; |
| 15 import '../common/tasks.dart' show CompilerTask; | 15 import '../common/tasks.dart' show CompilerTask; |
| 16 import '../compiler.dart' show Compiler; | 16 import '../compiler.dart' show Compiler; |
| 17 import '../constants/values.dart'; | 17 import '../constants/values.dart'; |
| 18 import '../core_types.dart' show CoreClasses; | 18 import '../core_types.dart' show CommonElements; |
| 19 import '../dart_types.dart' | 19 import '../dart_types.dart' |
| 20 show | 20 show |
| 21 DartType, | 21 DartType, |
| 22 FunctionType, | 22 FunctionType, |
| 23 InterfaceType, | 23 InterfaceType, |
| 24 TypedefType, | 24 TypedefType, |
| 25 Types, | 25 Types, |
| 26 TypeVariableType; | 26 TypeVariableType; |
| 27 import '../deferred_load.dart' show OutputUnit; | 27 import '../deferred_load.dart' show OutputUnit; |
| 28 import '../elements/elements.dart' | 28 import '../elements/elements.dart' |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 part 'code_emitter_task.dart'; | 70 part 'code_emitter_task.dart'; |
| 71 part 'helpers.dart'; | 71 part 'helpers.dart'; |
| 72 part 'interceptor_stub_generator.dart'; | 72 part 'interceptor_stub_generator.dart'; |
| 73 part 'main_call_stub_generator.dart'; | 73 part 'main_call_stub_generator.dart'; |
| 74 part 'metadata_collector.dart'; | 74 part 'metadata_collector.dart'; |
| 75 part 'native_emitter.dart'; | 75 part 'native_emitter.dart'; |
| 76 part 'native_generator.dart'; | 76 part 'native_generator.dart'; |
| 77 part 'parameter_stub_generator.dart'; | 77 part 'parameter_stub_generator.dart'; |
| 78 part 'runtime_type_generator.dart'; | 78 part 'runtime_type_generator.dart'; |
| 79 part 'type_test_registry.dart'; | 79 part 'type_test_registry.dart'; |
| OLD | NEW |