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

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

Issue 1149063005: Remove debugging print statements. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/context/cache.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/protocol_server.dart
diff --git a/pkg/analysis_server/lib/src/protocol_server.dart b/pkg/analysis_server/lib/src/protocol_server.dart
index 153958fa41484621908f2492ddfa1a5d92d33829..913e1f2bb2d1e9a9c74f1914c2f83043d987f9fd 100644
--- a/pkg/analysis_server/lib/src/protocol_server.dart
+++ b/pkg/analysis_server/lib/src/protocol_server.dart
@@ -163,12 +163,6 @@ Location newLocation_fromElement(engine.Element element) {
engine.AnalysisContext context = element.context;
engine.Source source = element.source;
if (context == null || source == null) {
- print('element=$element context=$context source=$source');
- engine.Element e = element;
- while (e != null) {
- print(' (${e.runtimeType}) $e');
- e = e.enclosingElement;
- }
return null;
}
String name = element.displayName;
« no previous file with comments | « no previous file | pkg/analyzer/lib/src/context/cache.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698