| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 js_backend; | 5 library js_backend; |
| 6 | 6 |
| 7 import 'dart:async' show EventSink, Future; | 7 import 'dart:async' show EventSink, Future; |
| 8 import 'dart:collection' show HashMap; | 8 import 'dart:collection' show HashMap; |
| 9 | 9 |
| 10 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; | 10 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 import '../compile_time_constants.dart'; | 42 import '../compile_time_constants.dart'; |
| 43 import '../constants/constant_system.dart'; | 43 import '../constants/constant_system.dart'; |
| 44 import '../constants/expressions.dart'; | 44 import '../constants/expressions.dart'; |
| 45 import '../constants/values.dart'; | 45 import '../constants/values.dart'; |
| 46 import '../core_types.dart' show | 46 import '../core_types.dart' show |
| 47 CoreClasses, | 47 CoreClasses, |
| 48 CoreTypes; | 48 CoreTypes; |
| 49 import '../dart_types.dart'; | 49 import '../dart_types.dart'; |
| 50 import '../deferred_load.dart' show | 50 import '../deferred_load.dart' show |
| 51 DeferredLoadTask; | 51 DeferredLoadTask; |
| 52 import '../diagnostics/invariant.dart' show |
| 53 DEBUG_MODE; |
| 52 import '../dump_info.dart' show | 54 import '../dump_info.dart' show |
| 53 DumpInfoTask; | 55 DumpInfoTask; |
| 54 import '../elements/elements.dart'; | 56 import '../elements/elements.dart'; |
| 55 import '../elements/visitor.dart' show | 57 import '../elements/visitor.dart' show |
| 56 BaseElementVisitor; | 58 BaseElementVisitor; |
| 57 import '../enqueue.dart' show | 59 import '../enqueue.dart' show |
| 58 Enqueuer, | 60 Enqueuer, |
| 59 ResolutionEnqueuer; | 61 ResolutionEnqueuer; |
| 60 import '../io/code_output.dart'; | 62 import '../io/code_output.dart'; |
| 61 import '../io/source_information.dart' show | 63 import '../io/source_information.dart' show |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 part 'constant_handler_javascript.dart'; | 122 part 'constant_handler_javascript.dart'; |
| 121 part 'custom_elements_analysis.dart'; | 123 part 'custom_elements_analysis.dart'; |
| 122 part 'frequency_namer.dart'; | 124 part 'frequency_namer.dart'; |
| 123 part 'field_naming_mixin.dart'; | 125 part 'field_naming_mixin.dart'; |
| 124 part 'minify_namer.dart'; | 126 part 'minify_namer.dart'; |
| 125 part 'namer.dart'; | 127 part 'namer.dart'; |
| 126 part 'namer_names.dart'; | 128 part 'namer_names.dart'; |
| 127 part 'no_such_method_registry.dart'; | 129 part 'no_such_method_registry.dart'; |
| 128 part 'runtime_types.dart'; | 130 part 'runtime_types.dart'; |
| 129 part 'type_variable_handler.dart'; | 131 part 'type_variable_handler.dart'; |
| OLD | NEW |