public string VisitBool(BoolNode boolNode)
 {
     throw new NotImplementedException();
 }
예제 #2
0
 public bool visit(BoolNode boolNode)
 {
     return(bool.Parse(boolNode.getValue()));
 }
예제 #3
0
 public AddressNode VisitBool(BoolNode boolNode)
 {
     throw new System.NotImplementedException();
 }