| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index 18f1e9f484ca529cf95619eae954da464bcaa2a4..49854446225f2854fdcb21e337a728c5bd6afd6f 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -1788,8 +1788,7 @@ v8::TryCatch::TryCatch()
|
| is_verbose_(false),
|
| can_continue_(true),
|
| capture_message_(true),
|
| - rethrow_(false),
|
| - has_terminated_(false) {
|
| + rethrow_(false) {
|
| isolate_->RegisterTryCatchHandler(this);
|
| }
|
|
|
| @@ -1817,11 +1816,6 @@ bool v8::TryCatch::CanContinue() const {
|
| }
|
|
|
|
|
| -bool v8::TryCatch::HasTerminated() const {
|
| - return has_terminated_;
|
| -}
|
| -
|
| -
|
| v8::Handle<v8::Value> v8::TryCatch::ReThrow() {
|
| if (!HasCaught()) return v8::Local<v8::Value>();
|
| rethrow_ = true;
|
| @@ -5589,11 +5583,6 @@ bool V8::IsExecutionTerminating(Isolate* isolate) {
|
| }
|
|
|
|
|
| -void V8::ResumeExecution(Isolate* isolate) {
|
| - reinterpret_cast<i::Isolate*>(isolate)->stack_guard()->ResumeExecution();
|
| -}
|
| -
|
| -
|
| Isolate* Isolate::GetCurrent() {
|
| i::Isolate* isolate = i::Isolate::UncheckedCurrent();
|
| return reinterpret_cast<Isolate*>(isolate);
|
|
|