using System; using System.Collections.Generic; using System.Text; using CLab.Auxiliary; using CLab.Exceptions; namespace CLab { public class NotNegExpression : Expression { private Expression left; public NotNegExpression(Common.ExprType type, Expression left) : base(type) { this.left = left; } internal Expression Left { get { return left; } } } }