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

Unified Diff: src/objects.cc

Issue 6299: Removed some debug code related to issue 1308895 which was fixed in CL... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 2 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
===================================================================
--- src/objects.cc (revision 448)
+++ src/objects.cc (working copy)
@@ -137,19 +137,6 @@
} else if (IsBoolean()) {
holder = global_context->boolean_function()->instance_prototype();
}
-#ifdef DEBUG
- // Used to track outstanding bug #1308895.
- // TODO(1308895) Remove when bug is fixed.
- if (holder == NULL) {
- PrintF("\nName being looked up: ");
- name->Print();
- PrintF("\nThis (object name is looked up in: ");
- this->Print();
- if (IsScript()) {
- PrintF("IsScript() returns true.\n");
- }
- }
-#endif
ASSERT(holder != NULL); // cannot handle null or undefined.
JSObject::cast(holder)->Lookup(name, result);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698