Skip to content

Commit

Permalink
Merged PR 104443: IsExternal: fix full build undef. ref
Browse files Browse the repository at this point in the history
  • Loading branch information
obastemur committed Jan 31, 2018
2 parents 9f40fcb + 81e28c2 commit 77a31ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 0 additions & 6 deletions 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 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 77a31ac

Please sign in to comment.