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

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

Issue 876703003: Issue 22155. Send outline for both parsed and resolved Dart units. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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/domain_execution.dart
diff --git a/pkg/analysis_server/lib/src/domain_execution.dart b/pkg/analysis_server/lib/src/domain_execution.dart
index a8f7f328c2e97989c58a88e31c6203e076b60f23..586b65971f945c4c9eb9c0f2bceba0fe4221f412 100644
--- a/pkg/analysis_server/lib/src/domain_execution.dart
+++ b/pkg/analysis_server/lib/src/domain_execution.dart
@@ -142,7 +142,7 @@ class ExecutionDomainHandler implements RequestHandler {
void _fileAnalyzed(ChangeNotice notice) {
Source source = notice.source;
String filePath = source.fullName;
- if (!notice.resolved || !_isInAnalysisRoot(filePath)) {
+ if (!_isInAnalysisRoot(filePath)) {
return;
}
AnalysisContext context = server.getAnalysisContext(filePath);

Powered by Google App Engine
This is Rietveld 408576698