| 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 14 matching lines...) Expand all Loading... |
| 25 import '../common/registry.dart' show | 25 import '../common/registry.dart' show |
| 26 Registry; | 26 Registry; |
| 27 import '../common/tasks.dart' show | 27 import '../common/tasks.dart' show |
| 28 CompilerTask; | 28 CompilerTask; |
| 29 import '../common/resolution.dart' show | 29 import '../common/resolution.dart' show |
| 30 Feature, | 30 Feature, |
| 31 ListLiteralUse, | 31 ListLiteralUse, |
| 32 MapLiteralUse, | 32 MapLiteralUse, |
| 33 Resolution, | 33 Resolution, |
| 34 ResolutionCallbacks, | 34 ResolutionCallbacks, |
| 35 ResolutionWorldImpact, | 35 ResolutionImpact, |
| 36 TransformedWorldImpact; | 36 TransformedWorldImpact; |
| 37 import '../common/work.dart' show | 37 import '../common/work.dart' show |
| 38 ItemCompilationContext; | 38 ItemCompilationContext; |
| 39 import '../compiler.dart' show | 39 import '../compiler.dart' show |
| 40 Compiler; | 40 Compiler; |
| 41 import '../compile_time_constants.dart'; | 41 import '../compile_time_constants.dart'; |
| 42 import '../constants/constant_system.dart'; | 42 import '../constants/constant_system.dart'; |
| 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'; |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 part 'constant_handler_javascript.dart'; | 103 part 'constant_handler_javascript.dart'; |
| 104 part 'custom_elements_analysis.dart'; | 104 part 'custom_elements_analysis.dart'; |
| 105 part 'frequency_namer.dart'; | 105 part 'frequency_namer.dart'; |
| 106 part 'field_naming_mixin.dart'; | 106 part 'field_naming_mixin.dart'; |
| 107 part 'minify_namer.dart'; | 107 part 'minify_namer.dart'; |
| 108 part 'namer.dart'; | 108 part 'namer.dart'; |
| 109 part 'namer_names.dart'; | 109 part 'namer_names.dart'; |
| 110 part 'no_such_method_registry.dart'; | 110 part 'no_such_method_registry.dart'; |
| 111 part 'runtime_types.dart'; | 111 part 'runtime_types.dart'; |
| 112 part 'type_variable_handler.dart'; | 112 part 'type_variable_handler.dart'; |
| OLD | NEW |