Example #1
0
 public Integer(Negative negative, Text zeroPadding, Text value)
     : base(negative)
 {
     this.negative    = negative;
     this.zeroPadding = zeroPadding;
     this.value       = value;
 }
 public Integer(Negative negative, Text zeroPadding, Text value)
     : base(negative)
 {
     this.negative = negative;
     this.zeroPadding = zeroPadding;
     this.value = value;
 }
Example #3
0
 public Integer(Negative negative, Text value)
     : this(negative, Text.Empty, value)
 {
 }
 protected virtual Negative VisitNegative(Negative node)
 {
     return VisitSyntaxNode(node) as Negative;
 }
 public Integer(Negative negative, Text value)
     : this(negative, Text.Empty, value)
 { }
 protected override Negative VisitNegative(Negative node)
 {
     visitedNegative = true;
     Assert.IsTrue(node.Value == "-");
     return base.VisitNegative(node);
 }