Microsoft.CSharp.RuntimeBinder.Semantics.EXPRCONSTANT
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal class EXPRCONSTANT : EXPR
{
public EXPR OptionalConstructorCall;
public bool IsZero { get; }
public CONSTVAL Val { get; set; }
public long I64Value { get; }
public EXPR GetOptionalConstructorCall();
public void SetOptionalConstructorCall(EXPR value);
public bool isZero();
public CONSTVAL getVal();
public void setVal(CONSTVAL newValue);
public ulong getU64Value();
public long getI64Value();
public EXPRCONSTANT();
}
}