public override LoliBool Eval() { if (Statment != null) { return(Statment.Apply(Left, Right)); } else { return(false); } }
public virtual T Eval() { if (Statment == null) { return(Value); } else { return(Statment.Apply(Left, Right)); } }