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

Unified Diff: src/objects-printer.cc

Issue 1316933002: [es6] Initial steps towards a correct implementation of IsCallable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: ia32, arm and arm64 ports. Misc cleanups. Created 5 years, 4 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: src/objects-printer.cc
diff --git a/src/objects-printer.cc b/src/objects-printer.cc
index 3f7e5ddc3cb606badc27deb65871c29d43c905d0..17d5c01c38cf3f98eb05322ffb6d43f2a752f75d 100644
--- a/src/objects-printer.cc
+++ b/src/objects-printer.cc
@@ -453,7 +453,7 @@ void Map::MapPrint(std::ostream& os) { // NOLINT
if (has_named_interceptor()) os << " - named_interceptor\n";
if (has_indexed_interceptor()) os << " - indexed_interceptor\n";
if (is_undetectable()) os << " - undetectable\n";
- if (has_instance_call_handler()) os << " - instance_call_handler\n";
+ if (is_callable()) os << " - callable\n";
if (is_access_check_needed()) os << " - access_check_needed\n";
if (!is_extensible()) os << " - non-extensible\n";
if (is_observed()) os << " - observed\n";

Powered by Google App Engine
This is Rietveld 408576698