| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 JavaScriptConstantCompiler, | 49 JavaScriptConstantCompiler, |
| 50 Namer, | 50 Namer, |
| 51 RuntimeTypes, | 51 RuntimeTypes, |
| 52 RuntimeTypesEncoder, | 52 RuntimeTypesEncoder, |
| 53 Substitution, | 53 Substitution, |
| 54 TypeCheck, | 54 TypeCheck, |
| 55 TypeChecks, | 55 TypeChecks, |
| 56 TypeVariableHandler; | 56 TypeVariableHandler; |
| 57 import '../universe/call_structure.dart' show CallStructure; | 57 import '../universe/call_structure.dart' show CallStructure; |
| 58 import '../universe/selector.dart' show Selector; | 58 import '../universe/selector.dart' show Selector; |
| 59 import '../universe/universe.dart' show SelectorConstraints; | 59 import '../universe/world_builder.dart' show SelectorConstraints; |
| 60 import '../util/util.dart' show Setlet; | 60 import '../util/util.dart' show Setlet; |
| 61 import 'full_emitter/emitter.dart' as full_js_emitter; | 61 import 'full_emitter/emitter.dart' as full_js_emitter; |
| 62 import 'lazy_emitter/emitter.dart' as lazy_js_emitter; | 62 import 'lazy_emitter/emitter.dart' as lazy_js_emitter; |
| 63 import 'model.dart'; | 63 import 'model.dart'; |
| 64 import 'program_builder/program_builder.dart'; | 64 import 'program_builder/program_builder.dart'; |
| 65 import 'startup_emitter/emitter.dart' as startup_js_emitter; | 65 import 'startup_emitter/emitter.dart' as startup_js_emitter; |
| 66 | 66 |
| 67 part 'class_stub_generator.dart'; | 67 part 'class_stub_generator.dart'; |
| 68 part 'code_emitter_task.dart'; | 68 part 'code_emitter_task.dart'; |
| 69 part 'helpers.dart'; | 69 part 'helpers.dart'; |
| 70 part 'interceptor_stub_generator.dart'; | 70 part 'interceptor_stub_generator.dart'; |
| 71 part 'main_call_stub_generator.dart'; | 71 part 'main_call_stub_generator.dart'; |
| 72 part 'metadata_collector.dart'; | 72 part 'metadata_collector.dart'; |
| 73 part 'native_emitter.dart'; | 73 part 'native_emitter.dart'; |
| 74 part 'native_generator.dart'; | 74 part 'native_generator.dart'; |
| 75 part 'parameter_stub_generator.dart'; | 75 part 'parameter_stub_generator.dart'; |
| 76 part 'runtime_type_generator.dart'; | 76 part 'runtime_type_generator.dart'; |
| 77 part 'type_test_registry.dart'; | 77 part 'type_test_registry.dart'; |
| OLD | NEW |