Searched refs:exception_obj (Results 1 – 4 of 4) sorted by relevance
41 void Isolate::set_pending_exception(Object exception_obj) { in set_pending_exception() argument42 DCHECK(!exception_obj.IsException(this)); in set_pending_exception()43 thread_local_top()->pending_exception_ = exception_obj; in set_pending_exception()
2341 Object exception_obj = pending_exception(); in ThrowInternal() local2355 if (!is_catchable_by_javascript(exception_obj)) return; in ThrowInternal()2361 if (IsExternalHandlerOnTop(exception_obj)) { in ThrowInternal()2366 should_report_exception = !IsJavaScriptHandlerOnTop(exception_obj); in ThrowInternal()2373 Handle<Object> exception(exception_obj, this); in ThrowInternal()
657 inline void set_pending_exception(Object exception_obj);
1961 Local<v8::Value> exception_obj) { in ReportException() argument1974 v8::String::Utf8Value exception(isolate, exception_obj); in ReportException()2012 if (v8::TryCatch::StackTrace(context, exception_obj) in ReportException()