| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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 import 'dart:async'; | 5 import 'dart:async'; |
| 6 import 'dart:io'; | 6 import 'dart:io'; |
| 7 | 7 |
| 8 import 'package:front_end/compiler_options.dart'; | 8 import 'package:front_end/compiler_options.dart'; |
| 9 import 'package:front_end/dependency_grapher.dart'; | 9 import 'package:front_end/dependency_grapher.dart'; |
| 10 import 'package:path/path.dart' as pathos; | 10 import 'package:path/path.dart' as pathos; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 'lib/src/fasta/scanner', | 40 'lib/src/fasta/scanner', |
| 41 'lib/src/fasta/testing', | 41 'lib/src/fasta/testing', |
| 42 ]), | 42 ]), |
| 43 'lib/src/fasta/analyzer': | 43 'lib/src/fasta/analyzer': |
| 44 new SubpackageRules(mayImportAnalyzer: true, allowedDependencies: [ | 44 new SubpackageRules(mayImportAnalyzer: true, allowedDependencies: [ |
| 45 'lib/src/scanner', | 45 'lib/src/scanner', |
| 46 'lib/src/fasta', | 46 'lib/src/fasta', |
| 47 'lib/src/fasta/builder', | 47 'lib/src/fasta/builder', |
| 48 'lib/src/fasta/dill', | 48 'lib/src/fasta/dill', |
| 49 'lib/src/fasta/kernel', | 49 'lib/src/fasta/kernel', |
| 50 'lib/src/fasta/parser', |
| 50 'lib/src/fasta/scanner', | 51 'lib/src/fasta/scanner', |
| 51 'lib/src/fasta/source', | 52 'lib/src/fasta/source', |
| 52 ]), | 53 ]), |
| 53 'lib/src/fasta/bin': new SubpackageRules(allowedDependencies: [ | 54 'lib/src/fasta/bin': new SubpackageRules(allowedDependencies: [ |
| 54 'lib/src/fasta', | 55 'lib/src/fasta', |
| 55 ]), | 56 ]), |
| 56 'lib/src/fasta/builder': new SubpackageRules(allowedDependencies: [ | 57 'lib/src/fasta/builder': new SubpackageRules(allowedDependencies: [ |
| 57 'lib/src/fasta', | 58 'lib/src/fasta', |
| 58 'lib/src/fasta/dill', | 59 'lib/src/fasta/dill', |
| 59 'lib/src/fasta/parser', | 60 'lib/src/fasta/parser', |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 problem('Uri $src is inside package:front_end but is not in any known ' | 229 problem('Uri $src is inside package:front_end but is not in any known ' |
| 229 'subpackage'); | 230 'subpackage'); |
| 230 } else if (!subpackageRules[subpackage].allowSubdirs && | 231 } else if (!subpackageRules[subpackage].allowSubdirs && |
| 231 pathWithinSubpackage.contains('/')) { | 232 pathWithinSubpackage.contains('/')) { |
| 232 problem('Uri $src is in a subfolder of $subpackage, but that ' | 233 problem('Uri $src is in a subfolder of $subpackage, but that ' |
| 233 'subpackage does not allow dart files in subdirectories.'); | 234 'subpackage does not allow dart files in subdirectories.'); |
| 234 } | 235 } |
| 235 return subpackage; | 236 return subpackage; |
| 236 } | 237 } |
| 237 } | 238 } |
| OLD | NEW |