Exemple #1
0
        public override String Print(int depth)
        {
            var str = LValue.Print(depth) + " = ";

            if (Qualifier != null)
            {
                str += Qualifier.Print(depth);
            }
            else
            {
                str += (Expr == null ? Statement.Print(depth) : Expr.Print(depth));
            }

            return(str);
        }
Exemple #2
0
 public override String Print(int depth)
 {
     return(LValue.Print(depth) + " = " + Expr.Print(depth));
 }