Microsoft.CSharp.RuntimeBinder.Semantics.EXPRMEMGRP
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal class EXPRMEMGRP : EXPR
{
public Name name;
public TypeArray typeArgs;
public SYMKIND sk;
public EXPR OptionalObject;
public EXPR OptionalLHS;
public CMemberLookupResults MemberLookupResults;
public CType ParentType;
public EXPR GetOptionalObject();
public void SetOptionalObject(EXPR value);
public EXPR GetOptionalLHS();
public void SetOptionalLHS(EXPR lhs);
public CMemberLookupResults GetMemberLookupResults();
public void SetMemberLookupResults(CMemberLookupResults results);
public CType GetParentType();
public void SetParentType(CType type);
public bool isDelegate();
public EXPRMEMGRP();
}
}