| 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 dart2js; | 5 library dart2js; |
| 6 | 6 |
| 7 import 'dart:uri'; | 7 import 'dart:uri'; |
| 8 import 'dart:collection' show Queue, LinkedHashMap; | 8 import 'dart:collection' show Queue, LinkedHashMap; |
| 9 | 9 |
| 10 import 'closure.dart' as closureMapping; | 10 import 'closure.dart' as closureMapping; |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 isUserDefinableOperator, | 39 isUserDefinableOperator, |
| 40 isUnaryOperator, | 40 isUnaryOperator, |
| 41 isBinaryOperator, | 41 isBinaryOperator, |
| 42 isTernaryOperator, | 42 isTernaryOperator, |
| 43 isMinusOperator; | 43 isMinusOperator; |
| 44 export 'universe/universe.dart' show Selector; | 44 export 'universe/universe.dart' show Selector; |
| 45 | 45 |
| 46 part 'code_buffer.dart'; | 46 part 'code_buffer.dart'; |
| 47 part 'compile_time_constants.dart'; | 47 part 'compile_time_constants.dart'; |
| 48 part 'compiler.dart'; | 48 part 'compiler.dart'; |
| 49 part 'constants.dart'; | |
| 50 part 'constant_system.dart'; | 49 part 'constant_system.dart'; |
| 51 part 'constant_system_dart.dart'; | 50 part 'constant_system_dart.dart'; |
| 51 part 'constants.dart'; |
| 52 part 'diagnostic_listener.dart'; | 52 part 'diagnostic_listener.dart'; |
| 53 part 'enqueue.dart'; | 53 part 'enqueue.dart'; |
| 54 part 'deferred_load.dart'; |
| 54 part 'library_loader.dart'; | 55 part 'library_loader.dart'; |
| 55 part 'resolved_visitor.dart'; | 56 part 'resolved_visitor.dart'; |
| 56 part 'script.dart'; | 57 part 'script.dart'; |
| 57 part 'tree_validator.dart'; | 58 part 'tree_validator.dart'; |
| 58 part 'typechecker.dart'; | 59 part 'typechecker.dart'; |
| 59 part 'warnings.dart'; | 60 part 'warnings.dart'; |
| 60 part 'world.dart'; | 61 part 'world.dart'; |
| OLD | NEW |