Beispiel #1
0
 public Matcher VisitDouble(IJsonDouble value)
 {
     return(new DoubleMatcher(value));
 }
Beispiel #2
0
 public IEnumerable <IndexValue> VisitDouble(IJsonDouble value)
 {
     yield return(new IndexValue(value.Value));
 }
Beispiel #3
0
 public virtual bool VisitDouble(IJsonDouble value)
 {
     return(false);
 }
Beispiel #4
0
 public DoubleMatcher(IJsonDouble value)
 {
     Value = value;
 }
Beispiel #5
0
 public override bool VisitDouble(IJsonDouble value)
 {
     return Value.Value == value.Value;
 }
Beispiel #6
0
 public DoubleMatcher(IJsonDouble value)
 {
     Value = value;
 }
Beispiel #7
0
 public override bool VisitDouble(IJsonDouble value)
 {
     return(Value.Value == value.Value);
 }