| 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 | 8 |
| 9 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' | 9 import 'package:_internal/compiler/js_lib/shared/embedded_names.dart' |
| 10 as embeddedNames; | 10 as embeddedNames; |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 import '../types/types.dart'; | 32 import '../types/types.dart'; |
| 33 import '../universe/universe.dart'; | 33 import '../universe/universe.dart'; |
| 34 import '../util/characters.dart'; | 34 import '../util/characters.dart'; |
| 35 import '../util/util.dart'; | 35 import '../util/util.dart'; |
| 36 | 36 |
| 37 import '../elements/visitor.dart' show | 37 import '../elements/visitor.dart' show |
| 38 ElementVisitor; | 38 ElementVisitor; |
| 39 | 39 |
| 40 import '../js_backend/codegen/task.dart'; | 40 import '../js_backend/codegen/task.dart'; |
| 41 import 'patch_resolver.dart'; | 41 import 'patch_resolver.dart'; |
| 42 import '../resolution/resolution.dart' show ResolutionRegistry; |
| 42 | 43 |
| 43 part 'backend.dart'; | 44 part 'backend.dart'; |
| 44 part 'checked_mode_helpers.dart'; | 45 part 'checked_mode_helpers.dart'; |
| 45 part 'constant_emitter.dart'; | 46 part 'constant_emitter.dart'; |
| 46 part 'constant_handler_javascript.dart'; | 47 part 'constant_handler_javascript.dart'; |
| 47 part 'constant_system_javascript.dart'; | 48 part 'constant_system_javascript.dart'; |
| 48 part 'custom_elements_analysis.dart'; | 49 part 'custom_elements_analysis.dart'; |
| 49 part 'minify_namer.dart'; | 50 part 'minify_namer.dart'; |
| 50 part 'namer.dart'; | 51 part 'namer.dart'; |
| 51 part 'runtime_types.dart'; | 52 part 'runtime_types.dart'; |
| 52 part 'type_variable_handler.dart'; | 53 part 'type_variable_handler.dart'; |
| OLD | NEW |