public ExprNodeVisitor_CodeEmitor(StmtNodeVisitor_CodeEmitor stmt, Type targetType, ExprNode node)
 {
     Trace.Assert(targetType != null);
     m_stmt       = stmt;
     m_targetType = targetType;
     node.acceptVisitor(this);
     toTargetType();
 }
Example #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();
 }