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

Unified Diff: pkg/analysis_server/lib/src/analysis_server.dart

Issue 1854863002: Issue 26096. Explicitly compute the result that ensures that directives are resolved in units. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fix for a review comment. Created 4 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/analysis_server/lib/src/analysis_server.dart
diff --git a/pkg/analysis_server/lib/src/analysis_server.dart b/pkg/analysis_server/lib/src/analysis_server.dart
index 101348b6839ad8b34e39445cfb9720537b2da4a7..6bda5f9eb023a1c6639ed9955ec09dfcc1b8acea 100644
--- a/pkg/analysis_server/lib/src/analysis_server.dart
+++ b/pkg/analysis_server/lib/src/analysis_server.dart
@@ -1471,7 +1471,7 @@ class AnalysisServer {
onContextsChanged.listen((ContextsChangedEvent event) {
for (AnalysisContext context in event.added) {
context
- .onResultChanged(RESOLVED_UNIT2)
+ .onResultChanged(RESOLVED_UNIT3)
.listen((ResultChangedEvent event) {
if (event.wasComputed) {
Object value = event.value;

Powered by Google App Engine
This is Rietveld 408576698