| 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 dart_backend; | 5 library dart_backend; |
| 6 | 6 |
| 7 import 'dart:async' show Future; | 7 import 'dart:async' show Future; |
| 8 import 'dart:math' show max; | 8 import 'dart:math' show max; |
| 9 import '../elements/elements.dart'; | 9 import '../elements/elements.dart'; |
| 10 import '../dart2jslib.dart'; | 10 import '../dart2jslib.dart'; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; | 25 import 'backend_ast_to_frontend_ast.dart' as backend2frontend; |
| 26 import '../tracer.dart'; | 26 import '../tracer.dart'; |
| 27 import '../../compiler.dart' show CompilerOutputProvider; | 27 import '../../compiler.dart' show CompilerOutputProvider; |
| 28 | 28 |
| 29 import '../scanner/scannerlib.dart' show StringToken, | 29 import '../scanner/scannerlib.dart' show StringToken, |
| 30 Keyword, | 30 Keyword, |
| 31 OPEN_PAREN_INFO, | 31 OPEN_PAREN_INFO, |
| 32 CLOSE_PAREN_INFO, | 32 CLOSE_PAREN_INFO, |
| 33 SEMICOLON_INFO, | 33 SEMICOLON_INFO, |
| 34 IDENTIFIER_INFO; | 34 IDENTIFIER_INFO; |
| 35 import '../js_backend/codegen/glue.dart'; |
| 35 | 36 |
| 36 part 'backend.dart'; | 37 part 'backend.dart'; |
| 37 part 'renamer.dart'; | 38 part 'renamer.dart'; |
| 38 part 'placeholder_collector.dart'; | 39 part 'placeholder_collector.dart'; |
| 39 part 'outputter.dart'; | 40 part 'outputter.dart'; |
| OLD | NEW |