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); }
public void AppendPrint(int indent, StringBuilder buf) { Helper.PrintASTIndentLine("cons " + Type, indent, buf); Helper.PrintASTIndentLine("params", indent + 1, buf); Params.AppendPrint(indent + 2, buf); }