示例#1
0
 public void AppendPrint(int indent, StringBuilder buf)
 {
     Helper.PrintASTIndentLine("func", indent, buf);
     Function.AppendPrint(indent + 2, buf);
     Helper.PrintASTIndentLine("params", indent + 1, buf);
     Params.AppendPrint(indent + 2, buf);
 }
示例#2
0
 public void AppendPrint(int indent, StringBuilder buf)
 {
     Helper.PrintASTIndentLine("cons " + Type, indent, buf);
     Helper.PrintASTIndentLine("params", indent + 1, buf);
     Params.AppendPrint(indent + 2, buf);
 }