| 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 11 matching lines...) Expand all Loading... |
| 22 Uris; | 22 Uris; |
| 23 import '../common/registry.dart' show | 23 import '../common/registry.dart' show |
| 24 Registry; | 24 Registry; |
| 25 import '../common/tasks.dart' show | 25 import '../common/tasks.dart' show |
| 26 CompilerTask; | 26 CompilerTask; |
| 27 import '../common/resolution.dart' show | 27 import '../common/resolution.dart' show |
| 28 ResolutionCallbacks; | 28 ResolutionCallbacks; |
| 29 import '../common/work.dart' show | 29 import '../common/work.dart' show |
| 30 ItemCompilationContext; | 30 ItemCompilationContext; |
| 31 import '../compiler.dart' show | 31 import '../compiler.dart' show |
| 32 Compiler, | 32 Compiler; |
| 33 isPrivateName; | |
| 34 import '../compile_time_constants.dart'; | 33 import '../compile_time_constants.dart'; |
| 35 import '../constants/constant_system.dart'; | 34 import '../constants/constant_system.dart'; |
| 36 import '../constants/expressions.dart'; | 35 import '../constants/expressions.dart'; |
| 37 import '../constants/values.dart'; | 36 import '../constants/values.dart'; |
| 38 import '../dart_types.dart'; | 37 import '../dart_types.dart'; |
| 39 import '../diagnostics/invariant.dart' show | 38 import '../diagnostics/invariant.dart' show |
| 40 invariant; | 39 invariant; |
| 41 import '../diagnostics/messages.dart' show MessageKind; | 40 import '../diagnostics/messages.dart' show MessageKind; |
| 42 import '../diagnostics/spannable.dart' show | 41 import '../diagnostics/spannable.dart' show |
| 43 NO_LOCATION_SPANNABLE, | 42 NO_LOCATION_SPANNABLE, |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 part 'constant_handler_javascript.dart'; | 95 part 'constant_handler_javascript.dart'; |
| 97 part 'custom_elements_analysis.dart'; | 96 part 'custom_elements_analysis.dart'; |
| 98 part 'frequency_namer.dart'; | 97 part 'frequency_namer.dart'; |
| 99 part 'field_naming_mixin.dart'; | 98 part 'field_naming_mixin.dart'; |
| 100 part 'minify_namer.dart'; | 99 part 'minify_namer.dart'; |
| 101 part 'namer.dart'; | 100 part 'namer.dart'; |
| 102 part 'namer_names.dart'; | 101 part 'namer_names.dart'; |
| 103 part 'no_such_method_registry.dart'; | 102 part 'no_such_method_registry.dart'; |
| 104 part 'runtime_types.dart'; | 103 part 'runtime_types.dart'; |
| 105 part 'type_variable_handler.dart'; | 104 part 'type_variable_handler.dart'; |
| OLD | NEW |