| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 import '../constants/expressions.dart'; | 43 import '../constants/expressions.dart'; |
| 44 import '../constants/values.dart'; | 44 import '../constants/values.dart'; |
| 45 import '../dart_types.dart'; | 45 import '../dart_types.dart'; |
| 46 import '../elements/elements.dart'; | 46 import '../elements/elements.dart'; |
| 47 import '../elements/visitor.dart' show | 47 import '../elements/visitor.dart' show |
| 48 BaseElementVisitor; | 48 BaseElementVisitor; |
| 49 import '../enqueue.dart' show | 49 import '../enqueue.dart' show |
| 50 Enqueuer, | 50 Enqueuer, |
| 51 ResolutionEnqueuer, | 51 ResolutionEnqueuer, |
| 52 WorldImpact; | 52 WorldImpact; |
| 53 import '../helpers/helpers.dart'; | |
| 54 import '../io/code_output.dart'; | 53 import '../io/code_output.dart'; |
| 55 import '../io/source_information.dart' show | 54 import '../io/source_information.dart' show |
| 56 SourceInformationStrategy, | 55 SourceInformationStrategy, |
| 57 useNewSourceInfo; | 56 useNewSourceInfo; |
| 58 import '../io/position_information.dart' show | 57 import '../io/position_information.dart' show |
| 59 PositionSourceInformationStrategy; | 58 PositionSourceInformationStrategy; |
| 60 import '../io/start_end_information.dart' show | 59 import '../io/start_end_information.dart' show |
| 61 StartEndSourceInformationStrategy; | 60 StartEndSourceInformationStrategy; |
| 62 import '../js/js.dart' as jsAst; | 61 import '../js/js.dart' as jsAst; |
| 63 import '../js/js.dart' show js; | 62 import '../js/js.dart' show js; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 part 'constant_handler_javascript.dart'; | 105 part 'constant_handler_javascript.dart'; |
| 107 part 'custom_elements_analysis.dart'; | 106 part 'custom_elements_analysis.dart'; |
| 108 part 'frequency_namer.dart'; | 107 part 'frequency_namer.dart'; |
| 109 part 'field_naming_mixin.dart'; | 108 part 'field_naming_mixin.dart'; |
| 110 part 'minify_namer.dart'; | 109 part 'minify_namer.dart'; |
| 111 part 'namer.dart'; | 110 part 'namer.dart'; |
| 112 part 'namer_names.dart'; | 111 part 'namer_names.dart'; |
| 113 part 'no_such_method_registry.dart'; | 112 part 'no_such_method_registry.dart'; |
| 114 part 'runtime_types.dart'; | 113 part 'runtime_types.dart'; |
| 115 part 'type_variable_handler.dart'; | 114 part 'type_variable_handler.dart'; |
| OLD | NEW |