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

Unified Diff: pkg/analyzer/lib/src/generated/engine.dart

Issue 2526063002: Add parser support for using a URI in a part-of directive (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « pkg/analyzer/lib/src/dart/ast/utilities.dart ('k') | pkg/analyzer/lib/src/generated/parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/lib/src/generated/engine.dart
diff --git a/pkg/analyzer/lib/src/generated/engine.dart b/pkg/analyzer/lib/src/generated/engine.dart
index 96bd170c70c4881e09c037c38f79df98fd6f5fc7..0301ed00c7f30d053673b68fa2e8167c0acf582f 100644
--- a/pkg/analyzer/lib/src/generated/engine.dart
+++ b/pkg/analyzer/lib/src/generated/engine.dart
@@ -1155,6 +1155,11 @@ abstract class AnalysisOptions {
bool get enableTiming;
/**
+ * Return `true` to enable the use of URIs in part-of directives.
+ */
+ bool get enableUriInPartOf;
+
+ /**
* Return a list of error processors that are to be used when reporting
* errors in some analysis context.
*/
@@ -1351,6 +1356,9 @@ class AnalysisOptionsImpl implements AnalysisOptions {
List<String> _excludePatterns;
@override
+ bool enableUriInPartOf = false;
+
+ @override
bool generateImplicitErrors = true;
@override
« no previous file with comments | « pkg/analyzer/lib/src/dart/ast/utilities.dart ('k') | pkg/analyzer/lib/src/generated/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698