| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 #library('leg'); | |
| 6 | |
| 7 #import('dart:uri'); | |
| 8 | |
| 9 #import('closure.dart', prefix: 'closureMapping'); | |
| 10 #import('dart_backend/dart_backend.dart', prefix: 'dart_backend'); | |
| 11 #import('elements/elements.dart'); | |
| 12 #import('js_backend/js_backend.dart', prefix: 'js_backend'); | |
| 13 #import('native_handler.dart', prefix: 'native'); | |
| 14 #import('scanner/scanner_implementation.dart'); | |
| 15 #import('scanner/scannerlib.dart'); | |
| 16 #import('ssa/ssa.dart'); | |
| 17 #import('string_validator.dart'); | |
| 18 #import('source_file.dart'); | |
| 19 #import('tree/tree.dart'); | |
| 20 #import('universe/universe.dart'); | |
| 21 #import('util/characters.dart'); | |
| 22 #import('util/util.dart'); | |
| 23 #import('../compiler.dart', prefix: 'api'); | |
| 24 #import('patch_parser.dart'); | |
| 25 #import('types/types.dart', prefix: 'ti'); | |
| 26 | |
| 27 #source('code_buffer.dart'); | |
| 28 #source('compile_time_constants.dart'); | |
| 29 #source('compiler.dart'); | |
| 30 #source('constants.dart'); | |
| 31 #source('constant_system.dart'); | |
| 32 #source('constant_system_dart.dart'); | |
| 33 #source('diagnostic_listener.dart'); | |
| 34 #source('enqueue.dart'); | |
| 35 #source('library_loader.dart'); | |
| 36 #source('resolved_visitor.dart'); | |
| 37 #source('resolver.dart'); | |
| 38 #source('script.dart'); | |
| 39 #source('tree_validator.dart'); | |
| 40 #source('typechecker.dart'); | |
| 41 #source('warnings.dart'); | |
| 42 #source('world.dart'); | |
| OLD | NEW |