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

Unified Diff: src/api.cc

Issue 2840803002: Expose TryCatch is_verbose_ (Closed)
Patch Set: Created 3 years, 8 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 | « include/v8.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/api.cc
diff --git a/src/api.cc b/src/api.cc
index d7c01afb2cd603f6992067cbf20ab950c35bc598..3f5dab5697792d054a083f009600e22de5e1d274 100644
--- a/src/api.cc
+++ b/src/api.cc
@@ -2710,6 +2710,10 @@ void v8::TryCatch::SetVerbose(bool value) {
is_verbose_ = value;
}
+bool v8::TryCatch::IsVerbose() const {
+ return is_verbose_;
+}
+
void v8::TryCatch::SetCaptureMessage(bool value) {
capture_message_ = value;
« no previous file with comments | « include/v8.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698