| 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 Future; | 7 import 'dart:async' show Future; |
| 8 import 'dart:collection' show LinkedHashMap, Queue; | 8 import 'dart:collection' show LinkedHashMap, Queue; |
| 9 | 9 |
| 10 import '../closure.dart'; | 10 import '../closure.dart'; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 import '../util/characters.dart'; | 24 import '../util/characters.dart'; |
| 25 import '../util/util.dart'; | 25 import '../util/util.dart'; |
| 26 | 26 |
| 27 part 'backend.dart'; | 27 part 'backend.dart'; |
| 28 part 'constant_emitter.dart'; | 28 part 'constant_emitter.dart'; |
| 29 part 'constant_system_javascript.dart'; | 29 part 'constant_system_javascript.dart'; |
| 30 part 'minify_namer.dart'; | 30 part 'minify_namer.dart'; |
| 31 part 'namer.dart'; | 31 part 'namer.dart'; |
| 32 part 'native_emitter.dart'; | 32 part 'native_emitter.dart'; |
| 33 part 'runtime_types.dart'; | 33 part 'runtime_types.dart'; |
| 34 part 'type_variable_handler.dart'; |
| OLD | NEW |