public override String Print(int depth) { return(Object.Print(depth) + "." + Method + "(" + Actuals.Print(depth) + ")"); }
public override String Print(int depth) { return(" new " + ClassName + "(" + Actuals.Print(depth) + ")"); }
public override String Print(int depth) { return((Object == null ? "global" : Object.Print(depth)) + "." + (string.IsNullOrEmpty(Method) ? SpecialFunc.Print(depth) : Method) + (Actuals == null ? string.Empty : "(" + Actuals.Print(depth) + ")")); }