| 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:_internal/compiler/js_lib/shared/embedded_names.dart' | 10 import 'package:js_runtime/shared/embedded_names.dart' as embeddedNames; |
| 11 as embeddedNames; | 11 import 'package:js_runtime/shared/embedded_names.dart' show JsGetName; |
| 12 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' | |
| 13 show JsGetName; | |
| 14 | 12 |
| 15 import '../closure.dart'; | 13 import '../closure.dart'; |
| 16 import '../compile_time_constants.dart'; | 14 import '../compile_time_constants.dart'; |
| 17 import '../constants/constant_system.dart'; | 15 import '../constants/constant_system.dart'; |
| 18 import '../constants/expressions.dart'; | 16 import '../constants/expressions.dart'; |
| 19 import '../constants/values.dart'; | 17 import '../constants/values.dart'; |
| 20 import '../dart2jslib.dart'; | 18 import '../dart2jslib.dart'; |
| 21 import '../dart_types.dart'; | 19 import '../dart_types.dart'; |
| 22 import '../elements/elements.dart'; | 20 import '../elements/elements.dart'; |
| 23 import '../io/code_output.dart'; | 21 import '../io/code_output.dart'; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 53 part 'backend.dart'; | 51 part 'backend.dart'; |
| 54 part 'checked_mode_helpers.dart'; | 52 part 'checked_mode_helpers.dart'; |
| 55 part 'constant_emitter.dart'; | 53 part 'constant_emitter.dart'; |
| 56 part 'constant_handler_javascript.dart'; | 54 part 'constant_handler_javascript.dart'; |
| 57 part 'custom_elements_analysis.dart'; | 55 part 'custom_elements_analysis.dart'; |
| 58 part 'minify_namer.dart'; | 56 part 'minify_namer.dart'; |
| 59 part 'namer.dart'; | 57 part 'namer.dart'; |
| 60 part 'no_such_method_registry.dart'; | 58 part 'no_such_method_registry.dart'; |
| 61 part 'runtime_types.dart'; | 59 part 'runtime_types.dart'; |
| 62 part 'type_variable_handler.dart'; | 60 part 'type_variable_handler.dart'; |
| OLD | NEW |