Lines Matching defs:thisObj
1709 std::unique_ptr<RemoteObject> thisObj = std::make_unique<RemoteObject>();
1711 DebuggerImpl::GenerateScopeChains(getScope, frameHandler, jsPandaFile, scopeChain, thisObj);
1717 .SetThis(std::move(thisObj));
1725 std::unique_ptr<RemoteObject> &thisObj)
1729 thisObj->SetType(ObjectType::Undefined);
1732 scopeChain.emplace_back(GetLocalScopeChain(frameHandler, &thisObj));
1734 auto closureScopeChains = GetClosureScopeChains(frameHandler, &thisObj);
1749 std::unique_ptr<RemoteObject> *thisObj)
1776 *thisObj = RemoteObject::FromTagged(vm_, thisVal);
1777 runtime_->CacheObjectIfNeeded(thisVal, (*thisObj).get());
1802 std::unique_ptr<RemoteObject> *thisObj)
1825 bool thisFound = (*thisObj)->HasValue();
1851 *thisObj = RemoteObject::FromTagged(vm_, value);
1853 runtime_->CacheObjectIfNeeded(value, (*thisObj).get());