Lines Matching refs:debug
40 #include "src/debug/debug-frames.h"
42 #include "src/debug/debug-wasm-objects.h"
44 #include "src/debug/debug.h"
1803 base::Optional<Object> maybe_exception = debug()->OnThrow(exception);
2629 Handle<Object> promise_on_stack(debug()->thread_local_.promise_stack_, this);
2631 debug()->thread_local_.promise_stack_ = *promise_on_stack;
2636 debug()->thread_local_.promise_stack_ =
2637 PromiseOnStack::cast(debug()->thread_local_.promise_stack_).prev();
2642 DCHECK_IMPLIES(!debug()->thread_local_.promise_stack_.IsSmi(),
2643 debug()->thread_local_.promise_stack_.IsPromiseOnStack());
2644 return debug()->thread_local_.promise_stack_.IsSmi();
2725 Handle<Object> promise_stack(debug()->thread_local_.promise_stack_, this);
3372 debug()->Unload();
4633 PromiseHookFields::IsDebugActive::encode(debug()->is_active());
5018 async_event_delegate_->AsyncEventOccurred(debug::kDebugAwait,
5021 if (debug()->is_active()) {
5030 Maybe<debug::DebugAsyncActionType> action_type =
5031 Nothing<debug::DebugAsyncActionType>();
5042 action_type = Just(debug::kDebugPromiseCatch);
5045 action_type = Just(debug::kDebugPromiseFinally);
5048 action_type = Just(debug::kDebugPromiseThen);
5059 debug()->IsBlackboxed(info));
5072 debug::kDebugWillHandle, promise->async_task_id(), false);
5075 if (debug()->is_active()) PushPromise(promise);
5084 debug::kDebugDidHandle, promise->async_task_id(), false);
5087 if (debug()->is_active()) PopPromise();
5111 debug()->thread_local_.promise_stack_ = Smi::zero();