Ejemplo n.º 1
0
 public int Visit(NakedStatement statement)
 {
     statement.Expression.Accept(this);
     return(0);
 }
Ejemplo n.º 2
0
 public int Visit(NakedStatement statement)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 public int Visit(NakedStatement statement)
 {
     statement.Expression.Accept(this);
     _writer.WriteLine(";");
     return(0);
 }
Ejemplo n.º 4
0
 public Statement Visit(NakedStatement statement)
 {
     return(new NakedStatement(statement.Expression.Accept(this)));
 }
Ejemplo n.º 5
0
 public int Visit(NakedStatement statement)
 {
     throw new NotSupportedException(ExpressionsOnly);
 }
Ejemplo n.º 6
0
        public virtual TStmt Visit(NakedStatement statement)
        {
            statement.Expression.Accept(this);

            return(default(TStmt));
        }