Home
last modified time | relevance | path

Searched refs:maybe_exception (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/execution/
Dmicrotask-queue.cc159 MaybeHandle<Object> maybe_exception; in RunMicrotasks() local
174 &maybe_exception); in RunMicrotasks()
183 if (maybe_result.is_null() && maybe_exception.is_null()) { in RunMicrotasks()
Disolate.cc1803 base::Optional<Object> maybe_exception = debug()->OnThrow(exception); in ThrowInternal() local
1804 if (maybe_exception.has_value()) { in ThrowInternal()
1805 return *maybe_exception; in ThrowInternal()
/third_party/node/deps/v8/src/inspector/
Dv8-console-message.cc399 v8::MaybeLocal<v8::Value> maybe_exception = m_arguments[0]->Get(isolate); in getAssociatedExceptionData() local
401 if (!maybe_exception.ToLocal(&exception)) return nullptr; in getAssociatedExceptionData()
/third_party/node/deps/v8/src/wasm/
Dc-api.cc1625 i::Isolate* isolate, i::Handle<i::Object> maybe_exception) { in GetProperException() argument
1626 if (maybe_exception->IsJSReceiver()) { in GetProperException()
1627 return i::Handle<i::JSReceiver>::cast(maybe_exception); in GetProperException()
1630 i::Object::ToString(isolate, maybe_exception); in GetProperException()
2162 i::Handle<i::Object> maybe_exception(isolate->pending_exception(), in make() local
2165 store, GetProperException(isolate, maybe_exception)); in make()