| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 36ba9e6 commit 554fa24
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -8168,6 +8168,11 @@ class V8_EXPORT TryCatch { | |||
| 8168 | 8168 | */ | |
| 8169 | 8169 | void SetVerbose(bool value); | |
| 8170 | 8170 | ||
| 8171 | + /** | ||
| 8172 | + * Returns true if verbosity is enabled. | ||
| 8173 | + */ | ||
| 8174 | + bool IsVerbose() const; | ||
| 8175 | + | ||
| 8171 | 8176 | /** | |
| 8172 | 8177 | * Set whether or not this TryCatch should capture a Message object | |
| 8173 | 8178 | * which holds source information about where the exception | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2709,6 +2709,10 @@ void v8::TryCatch::SetVerbose(bool value) { | |||
| 2709 | 2709 | is_verbose_ = value; | |
| 2710 | 2710 | } | |
| 2711 | 2711 | ||
| 2712 | + bool v8::TryCatch::IsVerbose() const { | ||
| 2713 | + return is_verbose_; | ||
| 2714 | + } | ||
| 2715 | + | ||
| 2712 | 2716 | ||
| 2713 | 2717 | void v8::TryCatch::SetCaptureMessage(bool value) { | |
| 2714 | 2718 | capture_message_ = value; | |
| Back | FazBrowse Home | New Git URL |
0 commit comments