示例#1
0
void FMemberReference::InvalidateSelfScope()
{
	if( IsSelfContext() )
	{
		MemberParentClass = NULL;
	}
}
void FMemberReference::InvalidateScope()
{
	if( IsSelfContext() )
	{
		MemberParent = NULL;
	}
	else if(IsLocalScope())
	{
		MemberScope.Empty();

		// Make it into a member reference since we are clearing the local context
		bSelfContext = true;
	}
}