Skip to content
This repository has been archived by the owner on Oct 15, 2020. It is now read-only.

Commit

Permalink
deps: update ChakraCore to chakra-core/ChakraCore@77a31ac554
Browse files Browse the repository at this point in the history
Merged PR 104443: IsExternal: fix full build undef. ref

Reviewed-By: chakrabot <chakrabot@users.noreply.github.com>
  • Loading branch information
obastemur authored and chakrabot committed Feb 1, 2018
1 parent 6368743 commit d220b32
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 0 additions & 6 deletions deps/chakrashim/core/lib/Runtime/Types/RecyclableObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,6 @@ namespace Js
return NULL;
}

BOOL RecyclableObject::IsExternal() const
{
Assert(this->IsExternalVirtual() == this->GetType()->IsExternal());
return this->GetType()->IsExternal();
}

BOOL RecyclableObject::SkipsPrototype() const
{
Assert(this->DbgSkipsPrototype() == this->GetType()->SkipsPrototype());
Expand Down
6 changes: 6 additions & 0 deletions deps/chakrashim/core/lib/Runtime/Types/RecyclableObject.inl
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,12 @@ namespace Js
return this->GetLibrary()->GetScriptContext();
}

inline BOOL RecyclableObject::IsExternal() const
{
Assert(this->IsExternalVirtual() == this->GetType()->IsExternal());
return this->GetType()->IsExternal();
}

inline BOOL RecyclableObject::HasItem(uint32 index)
{
return JavascriptConversion::PropertyQueryFlagsToBoolean(HasItemQuery(index));
Expand Down

0 comments on commit d220b32

Please sign in to comment.