acceptVisitor() 공개 추상적인 메소드

public abstract acceptVisitor ( IExprNodeVisitor v ) : void
v IExprNodeVisitor
리턴 void
예제 #1
0
 public ExprNodeVisitor_CodeEmitor(StmtNodeVisitor_CodeEmitor stmt, Type targetType, ExprNode node)
 {
     Trace.Assert(targetType != null);
     m_stmt       = stmt;
     m_targetType = targetType;
     node.acceptVisitor(this);
     toTargetType();
 }
예제 #2
0
 public ExprNodeVisitor_CodeEmitor(StmtNodeVisitor_CodeEmitor stmt, Type targetType, ExprNode node)
 {
     Trace.Assert(targetType != null);
     m_stmt = stmt;
     m_targetType = targetType;
     node.acceptVisitor(this);
     toTargetType();
 }