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

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

Issue 2982993003: Remove UriReferencedElement with its uri/uriOffset/uriEnd properties. (Closed)
Patch Set: Merge. Created 3 years, 5 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/status/element_writer.dart
diff --git a/pkg/analysis_server/lib/src/status/element_writer.dart b/pkg/analysis_server/lib/src/status/element_writer.dart
index 91649a59a90be90a978510f9de9b87104721d663..8299ef9d7a12b3cb21aeb41c2678f3bb60b6de51 100644
--- a/pkg/analysis_server/lib/src/status/element_writer.dart
+++ b/pkg/analysis_server/lib/src/status/element_writer.dart
@@ -147,9 +147,6 @@ class ElementWriter extends GeneralizingElementVisitor with TreeWriter {
if (element is TypeParameterizedElement) {
properties['typeParameters'] = element.typeParameters;
}
- if (element is UriReferencedElement) {
- properties['uri'] = element.uri;
- }
if (element is VariableElement) {
properties['constantValue'] = element.constantValue;
properties['hasImplicitType'] = element.hasImplicitType;

Powered by Google App Engine
This is Rietveld 408576698