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

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

Issue 2746023003: fasta.Keyword implement analyzer.Keyword (Closed)
Patch Set: update subpackage relationship test Created 3 years, 9 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 ba82d6b3b23b280301db3e48aeab80c2d2815afa..629e37ef20ca7bd12dc8de2b1c1482a6e560fa15 100644
--- a/pkg/front_end/test/subpackage_relationships_test.dart
+++ b/pkg/front_end/test/subpackage_relationships_test.dart
@@ -82,6 +82,8 @@ final subpackageRules = {
new SubpackageRules(allowSubdirs: true, allowedDependencies: [
'lib/src/fasta',
'lib/src/fasta/parser',
+ // fasta scanner produces analyzer scanner tokens
+ 'lib/src/scanner',
'lib/src/fasta/util',
]),
'lib/src/fasta/source': new SubpackageRules(allowedDependencies: [
@@ -104,6 +106,8 @@ final subpackageRules = {
'lib/src/fasta/util': new SubpackageRules(),
'lib/src/scanner': new SubpackageRules(allowedDependencies: [
'lib/src/base',
+ // fasta scanner produces analyzer scanner tokens
+ 'lib/src/fasta/scanner',
]),
};

Powered by Google App Engine
This is Rietveld 408576698