| 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 17 matching lines...) Expand all Loading... |
| 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 import '../compile_time_constants.dart'; | 33 import '../compile_time_constants.dart'; |
| 34 import '../constants/constant_system.dart'; | 34 import '../constants/constant_system.dart'; |
| 35 import '../constants/expressions.dart'; | 35 import '../constants/expressions.dart'; |
| 36 import '../constants/values.dart'; | 36 import '../constants/values.dart'; |
| 37 import '../dart_types.dart'; | 37 import '../dart_types.dart'; |
| 38 import '../diagnostics/diagnostic_listener.dart' show |
| 39 DiagnosticMessage; |
| 38 import '../diagnostics/invariant.dart' show | 40 import '../diagnostics/invariant.dart' show |
| 39 invariant; | 41 invariant; |
| 40 import '../diagnostics/messages.dart' show MessageKind; | 42 import '../diagnostics/messages.dart' show MessageKind; |
| 41 import '../diagnostics/spannable.dart' show | 43 import '../diagnostics/spannable.dart' show |
| 42 NO_LOCATION_SPANNABLE, | 44 NO_LOCATION_SPANNABLE, |
| 43 Spannable, | 45 Spannable, |
| 44 SpannableAssertionFailure; | 46 SpannableAssertionFailure; |
| 45 import '../elements/elements.dart'; | 47 import '../elements/elements.dart'; |
| 46 import '../elements/visitor.dart' show | 48 import '../elements/visitor.dart' show |
| 47 BaseElementVisitor; | 49 BaseElementVisitor; |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 part 'constant_handler_javascript.dart'; | 101 part 'constant_handler_javascript.dart'; |
| 100 part 'custom_elements_analysis.dart'; | 102 part 'custom_elements_analysis.dart'; |
| 101 part 'frequency_namer.dart'; | 103 part 'frequency_namer.dart'; |
| 102 part 'field_naming_mixin.dart'; | 104 part 'field_naming_mixin.dart'; |
| 103 part 'minify_namer.dart'; | 105 part 'minify_namer.dart'; |
| 104 part 'namer.dart'; | 106 part 'namer.dart'; |
| 105 part 'namer_names.dart'; | 107 part 'namer_names.dart'; |
| 106 part 'no_such_method_registry.dart'; | 108 part 'no_such_method_registry.dart'; |
| 107 part 'runtime_types.dart'; | 109 part 'runtime_types.dart'; |
| 108 part 'type_variable_handler.dart'; | 110 part 'type_variable_handler.dart'; |
| OLD | NEW |