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

Unified Diff: pkg/analyzer/lib/src/dart/element/handle.dart

Issue 2020293004: Conditionally enable SDK summaries in server (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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/analyzer/lib/src/dart/element/handle.dart
diff --git a/pkg/analyzer/lib/src/dart/element/handle.dart b/pkg/analyzer/lib/src/dart/element/handle.dart
index 0e714999944dbdf21edafb64bd87a4b3790633e9..27c845f34c552e3932f76006a366e748fb7da791 100644
--- a/pkg/analyzer/lib/src/dart/element/handle.dart
+++ b/pkg/analyzer/lib/src/dart/element/handle.dart
@@ -480,6 +480,9 @@ abstract class ElementHandle implements Element {
actualElement.isAccessibleIn(library);
@override
+ String toString() => actualElement.toString();
+
+ @override
void visitChildren(ElementVisitor visitor) {
actualElement.visitChildren(visitor);
}

Powered by Google App Engine
This is Rietveld 408576698