Пример #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));
 }
Пример #3
0
 protected internal While(NRefactory.WhileStatement whileStatement, IScope scope, INRefcatoryExpressionVisitor visitor)
     : base(scope, visitor) {
     _whileStatement = whileStatement;
     BuildWhileBlock();
     InternalType = Body.Type;
 }
Пример #4
0
 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));
 }