Exemplo n.º 1
0
 public override String Print(int depth)
 {
     return(Object.Print(depth) + "." + Method + "(" + Actuals.Print(depth) + ")");
 }
Exemplo n.º 2
0
 public override String Print(int depth)
 {
     return(" new " + ClassName + "(" + Actuals.Print(depth) + ")");
 }
Exemplo n.º 3
0
 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) + ")"));
 }