ExprUnaryOp
namespace Microsoft.CSharp.RuntimeBinder.Semantics
{
internal sealed class ExprUnaryOp : ExprOperator
{
public Expr Child { get; set; }
public ExprUnaryOp(ExpressionKind kind, CType type)
: base(kind, type)
{
}
}
}