Example #1
0
 public Func <NamedDataType, NamedDataType> VisitId(IdDeclarator id)
 {
     return((nt) => new NamedDataType {
         Name = id.Name, DataType = nt.DataType, Size = nt.Size
     });
 }
Example #2
0
 public string VisitId(IdDeclarator id)
 {
     return(id.Name);
 }