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

Commit d220b32

Browse files
obastemurchakrabot
authored andcommitted
deps: update ChakraCore to chakra-core/ChakraCore@77a31ac554
Merged PR 104443: IsExternal: fix full build undef. ref Reviewed-By: chakrabot <[email protected]>
1 parent 6368743 commit d220b32

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: deps/chakrashim/core/lib/Runtime/Types/RecyclableObject.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,6 @@ namespace Js
213213
return NULL;
214214
}
215215

216-
BOOL RecyclableObject::IsExternal() const
217-
{
218-
Assert(this->IsExternalVirtual() == this->GetType()->IsExternal());
219-
return this->GetType()->IsExternal();
220-
}
221-
222216
BOOL RecyclableObject::SkipsPrototype() const
223217
{
224218
Assert(this->DbgSkipsPrototype() == this->GetType()->SkipsPrototype());

Diff for: deps/chakrashim/core/lib/Runtime/Types/RecyclableObject.inl

+6
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@ namespace Js
5656
return this->GetLibrary()->GetScriptContext();
5757
}
5858

59+
inline BOOL RecyclableObject::IsExternal() const
60+
{
61+
Assert(this->IsExternalVirtual() == this->GetType()->IsExternal());
62+
return this->GetType()->IsExternal();
63+
}
64+
5965
inline BOOL RecyclableObject::HasItem(uint32 index)
6066
{
6167
return JavascriptConversion::PropertyQueryFlagsToBoolean(HasItemQuery(index));

0 commit comments

Comments
 (0)