| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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('colors.dart'); | 9 #import('colors.dart'); |
| 10 #import('elements/elements.dart'); | 10 #import('elements/elements.dart'); |
| 11 #import('native_handler.dart', prefix: 'native'); | 11 #import('native_handler.dart', prefix: 'native'); |
| 12 #import('scanner/scanner_implementation.dart'); | 12 #import('scanner/scanner_implementation.dart'); |
| 13 #import('scanner/scannerlib.dart'); | 13 #import('scanner/scannerlib.dart'); |
| 14 #import('ssa/ssa.dart'); | 14 #import('ssa/ssa.dart'); |
| 15 #import('string_validator.dart'); | 15 #import('string_validator.dart'); |
| 16 #import('source_file.dart'); | 16 #import('source_file.dart'); |
| 17 #import('tree/tree.dart'); | 17 #import('tree/tree.dart'); |
| 18 #import('util/characters.dart'); | 18 #import('util/characters.dart'); |
| 19 #import('util/util.dart'); | 19 #import('util/util.dart'); |
| 20 | 20 |
| 21 #source('compile_time_constants.dart'); | 21 #source('compile_time_constants.dart'); |
| 22 #source('compiler.dart'); | 22 #source('compiler.dart'); |
| 23 #source('diagnostic_listener.dart'); | 23 #source('diagnostic_listener.dart'); |
| 24 #source('emitter.dart'); | 24 #source('emitter.dart'); |
| 25 #source('enqueue.dart'); | 25 #source('enqueue.dart'); |
| 26 #source('namer.dart'); | 26 #source('namer.dart'); |
| 27 #source('native_emitter.dart'); | 27 #source('native_emitter.dart'); |
| 28 #source('operations.dart'); | 28 #source('operations.dart'); |
| 29 #source('resolved_visitor.dart'); |
| 29 #source('resolver.dart'); | 30 #source('resolver.dart'); |
| 30 #source('script.dart'); | 31 #source('script.dart'); |
| 31 #source('tree_validator.dart'); | 32 #source('tree_validator.dart'); |
| 32 #source('typechecker.dart'); | 33 #source('typechecker.dart'); |
| 33 #source('universe.dart'); | 34 #source('universe.dart'); |
| 34 #source('unparse_validator.dart'); | 35 #source('unparse_validator.dart'); |
| 35 #source('warnings.dart'); | 36 #source('warnings.dart'); |
| 36 #source('world.dart'); | 37 #source('world.dart'); |
| OLD | NEW |