| OLD | NEW |
| 1 // Copyright (c) 2011, 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('leg'); | 5 #library('leg'); |
| 6 | 6 |
| 7 #import('dart:uri'); | 7 #import('dart:uri'); |
| 8 | 8 |
| 9 #import('closure.dart', prefix: 'closureMapping'); | 9 #import('closure.dart', prefix: 'closureMapping'); |
| 10 #import('dart_backend/dart_backend.dart', prefix: 'dart_backend'); | 10 #import('dart_backend/dart_backend.dart', prefix: 'dart_backend'); |
| 11 #import('elements/elements.dart'); | 11 #import('elements/elements.dart'); |
| 12 #import('js_backend/js_backend.dart', prefix: 'js_backend'); | 12 #import('js_backend/js_backend.dart', prefix: 'js_backend'); |
| 13 #import('native_handler.dart', prefix: 'native'); |
| 13 #import('scanner/scanner_implementation.dart'); | 14 #import('scanner/scanner_implementation.dart'); |
| 14 #import('scanner/scannerlib.dart'); | 15 #import('scanner/scannerlib.dart'); |
| 15 #import('ssa/ssa.dart'); | 16 #import('ssa/ssa.dart'); |
| 16 #import('string_validator.dart'); | 17 #import('string_validator.dart'); |
| 17 #import('source_file.dart'); | 18 #import('source_file.dart'); |
| 18 #import('source_map_builder.dart'); | 19 #import('source_map_builder.dart'); |
| 19 #import('tree/tree.dart'); | 20 #import('tree/tree.dart'); |
| 20 #import('util/characters.dart'); | 21 #import('util/characters.dart'); |
| 21 #import('util/util.dart'); | 22 #import('util/util.dart'); |
| 22 #import('../compiler.dart', prefix: 'api'); | 23 #import('../compiler.dart', prefix: 'api'); |
| 23 #import('patch_parser.dart'); | 24 #import('patch_parser.dart'); |
| 24 #import('types/types.dart', prefix: 'ti'); | 25 #import('types/types.dart', prefix: 'ti'); |
| 25 | 26 |
| 26 #source('code_buffer.dart'); | 27 #source('code_buffer.dart'); |
| 27 #source('compile_time_constants.dart'); | 28 #source('compile_time_constants.dart'); |
| 28 #source('compiler.dart'); | 29 #source('compiler.dart'); |
| 29 #source('diagnostic_listener.dart'); | 30 #source('diagnostic_listener.dart'); |
| 30 #source('enqueue.dart'); | 31 #source('enqueue.dart'); |
| 31 #source('namer.dart'); | 32 #source('namer.dart'); |
| 32 #source('operations.dart'); | 33 #source('operations.dart'); |
| 33 #source('resolved_visitor.dart'); | 34 #source('resolved_visitor.dart'); |
| 34 #source('resolver.dart'); | 35 #source('resolver.dart'); |
| 35 #source('script.dart'); | 36 #source('script.dart'); |
| 36 #source('tree_validator.dart'); | 37 #source('tree_validator.dart'); |
| 37 #source('typechecker.dart'); | 38 #source('typechecker.dart'); |
| 38 #source('universe.dart'); | 39 #source('universe.dart'); |
| 39 #source('warnings.dart'); | 40 #source('warnings.dart'); |
| 40 #source('world.dart'); | 41 #source('world.dart'); |
| OLD | NEW |