| 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:collection' show LinkedHashMap; | 7 import 'dart:collection' show LinkedHashMap, Queue; |
| 8 | 8 |
| 9 import '../closure.dart'; | 9 import '../closure.dart'; |
| 10 import '../../compiler.dart' as api; | 10 import '../../compiler.dart' as api; |
| 11 import '../elements/elements.dart'; | 11 import '../elements/elements.dart'; |
| 12 import '../elements/modelx.dart' show FunctionElementX; | 12 import '../elements/modelx.dart' show FunctionElementX; |
| 13 | 13 |
| 14 // TODO(ahe): There seems to be a bug in the VM, so we have to hide "js". | 14 // TODO(ahe): There seems to be a bug in the VM, so we have to hide "js". |
| 15 import '../dart2jslib.dart' hide Selector, TypedSelector, js; | 15 import '../dart2jslib.dart' hide Selector, TypedSelector, js; |
| 16 import '../dart_types.dart'; | 16 import '../dart_types.dart'; |
| 17 import '../js/js.dart' as jsAst; | 17 import '../js/js.dart' as jsAst; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 28 | 28 |
| 29 part 'backend.dart'; | 29 part 'backend.dart'; |
| 30 part 'constant_emitter.dart'; | 30 part 'constant_emitter.dart'; |
| 31 part 'constant_system_javascript.dart'; | 31 part 'constant_system_javascript.dart'; |
| 32 part 'emitter.dart'; | 32 part 'emitter.dart'; |
| 33 part 'emitter_no_eval.dart'; | 33 part 'emitter_no_eval.dart'; |
| 34 part 'minify_namer.dart'; | 34 part 'minify_namer.dart'; |
| 35 part 'namer.dart'; | 35 part 'namer.dart'; |
| 36 part 'native_emitter.dart'; | 36 part 'native_emitter.dart'; |
| 37 part 'runtime_types.dart'; | 37 part 'runtime_types.dart'; |
| OLD | NEW |