Home | History | Annotate | Download | only in runtime

Lines Matching defs:handle_scope

36 #include "handle_scope.h"
783 void PushHandleScope(HandleScope* handle_scope) {
784 DCHECK_EQ(handle_scope->GetLink(), tlsPtr_.top_handle_scope);
785 tlsPtr_.top_handle_scope = handle_scope;
789 HandleScope* handle_scope = tlsPtr_.top_handle_scope;
790 DCHECK(handle_scope != nullptr);
792 return handle_scope;