Example #1
0
 public void Visit(StructCreateNode node)
 {
     source.Append("new " + node.GetStructType().Identifier + "()");
 }
Example #2
0
 public void Visit(StructCreateNode node)
 {
     visitor.OnVisit((n, v) => Result = (n as StructCreateNode)?.GetStructType() == node.GetStructType());
     reference.Visit(visitor);
 }