示例#1
0
 protected internal While(NRefactory.WhileStatement whileStatement, IScope scope, INRefcatoryExpressionVisitor visitor)
     : base(scope, visitor)
 {
     _whileStatement = whileStatement;
     BuildWhileBlock();
     InternalType = Body.Type;
 }
示例#2
0
 public static While While(NRefactory.WhileStatement whileStatement, IScope scope, INRefcatoryExpressionVisitor visitor)
 {
     return(new While(whileStatement, scope, visitor));
 }
 protected internal While(NRefactory.WhileStatement whileStatement, IScope scope, INRefcatoryExpressionVisitor visitor)
     : base(scope, visitor) {
     _whileStatement = whileStatement;
     BuildWhileBlock();
     InternalType = Body.Type;
 }
 public virtual S VisitWhileStatement(WhileStatement whileStatement, T data)
 {
     return(VisitChildren(whileStatement, data));
 }
 public virtual S VisitWhileStatement(WhileStatement whileStatement, T data)
 {
     throw new NotImplementedException();
 }
示例#6
0
 public override AstExpression VisitWhileStatement(NRefactory.WhileStatement whileStatement, IScope scope)
 {
     return(AstExpression.While(whileStatement, scope, this));
 }