From 409fa2c19e044f11dcd050924f8f6632d9142b82 Mon Sep 17 00:00:00 2001 From: pq Date: Mon, 8 Apr 2024 20:55:10 +0000 Subject: [PATCH] enable multi-option context support https://github.com/dart-lang/sdk/issues/53876 Change-Id: Ia6e8fd299685f6049862a7027e9c7734d806e328 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/350342 Commit-Queue: Phil Quitslund Reviewed-by: Brian Wilkerson --- pkg/analyzer/lib/src/dart/analysis/context_locator.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/analyzer/lib/src/dart/analysis/context_locator.dart b/pkg/analyzer/lib/src/dart/analysis/context_locator.dart index 0c851dc9285..dcb13c4c545 100644 --- a/pkg/analyzer/lib/src/dart/analysis/context_locator.dart +++ b/pkg/analyzer/lib/src/dart/analysis/context_locator.dart @@ -31,7 +31,7 @@ class ContextLocatorImpl implements ContextLocator { /// analysis options file. /// /// See: https://github.com/dart-lang/sdk/issues/53876 - static bool singleOptionContexts = true; + static bool singleOptionContexts = false; /// The resource provider used to access the file system. final ResourceProvider resourceProvider;