| 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('../../lib/uri/uri.dart'); | 7 #import('../../uri/uri.dart'); |
| 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('tree/tree.dart'); | 16 #import('tree/tree.dart'); |
| 17 #import('util/characters.dart'); | 17 #import('util/characters.dart'); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 28 #source('resolver.dart'); | 28 #source('resolver.dart'); |
| 29 #source('script.dart'); | 29 #source('script.dart'); |
| 30 #source('tree_validator.dart'); | 30 #source('tree_validator.dart'); |
| 31 #source('typechecker.dart'); | 31 #source('typechecker.dart'); |
| 32 #source('universe.dart'); | 32 #source('universe.dart'); |
| 33 #source('warnings.dart'); | 33 #source('warnings.dart'); |
| 34 | 34 |
| 35 void unreachable() { | 35 void unreachable() { |
| 36 throw const Exception("Internal Error (Leg): UNREACHABLE"); | 36 throw const Exception("Internal Error (Leg): UNREACHABLE"); |
| 37 } | 37 } |
| OLD | NEW |