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