Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(882)

Unified Diff: pkg/front_end/test/subpackage_relationships_test.dart

Issue 2824393002: Introduce a testing framework for use with fasta type inference. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/front_end/test/subpackage_relationships_test.dart
diff --git a/pkg/front_end/test/subpackage_relationships_test.dart b/pkg/front_end/test/subpackage_relationships_test.dart
index 6ac5adbf986c7c1419aa6cafd6a5e8463eba2106..968aa2418af69c9d3bd7ac153e8f8ee067fb3e80 100644
--- a/pkg/front_end/test/subpackage_relationships_test.dart
+++ b/pkg/front_end/test/subpackage_relationships_test.dart
@@ -63,6 +63,7 @@ final subpackageRules = {
]),
'lib/src/fasta/kernel': new SubpackageRules(allowedDependencies: [
'lib/src/fasta',
+ 'lib/src/base',
'lib/src/fasta/builder',
'lib/src/fasta/dill',
'lib/src/fasta/parser',
@@ -85,6 +86,7 @@ final subpackageRules = {
]),
'lib/src/fasta/source': new SubpackageRules(allowedDependencies: [
'lib/src/fasta',
+ 'lib/src/base',
'lib/src/fasta/builder',
'lib/src/fasta/dill',
'lib/src/fasta/kernel',
@@ -96,12 +98,15 @@ final subpackageRules = {
'lib/src/fasta/testing':
new SubpackageRules(mayImportAnalyzer: true, allowedDependencies: [
'lib/src/fasta',
+ 'lib/src/base',
'lib/src/fasta/dill',
'lib/src/fasta/kernel',
'lib/src/fasta/analyzer',
'lib/src/fasta/scanner',
]),
- 'lib/src/fasta/type_inference': new SubpackageRules(),
+ 'lib/src/fasta/type_inference': new SubpackageRules(allowedDependencies: [
+ 'lib/src/base',
+ ]),
'lib/src/fasta/util': new SubpackageRules(),
'lib/src/scanner': new SubpackageRules(allowedDependencies: [
'lib/src/base',

Powered by Google App Engine
This is Rietveld 408576698