Ejemplo n.º 1
0
 public AsExpression CastAs(AstType type)
 {
     return(new AsExpression {
         Type = type, Expression = this
     });
 }
Ejemplo n.º 2
0
 public IsExpression IsType(AstType type)
 {
     return(new IsExpression {
         Type = type, Expression = this
     });
 }
Ejemplo n.º 3
0
 public CastExpression CastTo(AstType type)
 {
     return(new CastExpression {
         Type = type, Expression = this
     });
 }