public bool VisitNode(CastExpression node)
 {
     throw new NotImplementedException();
 }
Example #2
0
 public bool VisitNode(CastExpression node)
 {
     // type(expr)
     node.CastType.AcceptVisitor(this);
     Append("(");
     node.CastTarget.AcceptVisitor(this);
     Append(")");
     return true;
 }