| 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('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'); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 #import('patch_parser.dart'); | 23 #import('patch_parser.dart'); |
| 24 #import('types/types.dart', prefix: 'ti'); | 24 #import('types/types.dart', prefix: 'ti'); |
| 25 | 25 |
| 26 #source('code_buffer.dart'); | 26 #source('code_buffer.dart'); |
| 27 #source('compile_time_constants.dart'); | 27 #source('compile_time_constants.dart'); |
| 28 #source('compiler.dart'); | 28 #source('compiler.dart'); |
| 29 #source('diagnostic_listener.dart'); | 29 #source('diagnostic_listener.dart'); |
| 30 #source('enqueue.dart'); | 30 #source('enqueue.dart'); |
| 31 #source('namer.dart'); | 31 #source('namer.dart'); |
| 32 #source('operations.dart'); | 32 #source('operations.dart'); |
| 33 #source('javascript_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('unparse_validator.dart'); | 40 #source('unparse_validator.dart'); |
| 40 #source('warnings.dart'); | 41 #source('warnings.dart'); |
| 41 #source('world.dart'); | 42 #source('world.dart'); |
| OLD | NEW |