System.Management.Pash.Implementation.ExecutionVisitor.VisitDoUntilStatement C# (CSharp) Method

VisitDoUntilStatement() public method

public VisitDoUntilStatement ( System.Management.Automation.Language.DoUntilStatementAst doUntilStatementAst ) : AstVisitAction
doUntilStatementAst System.Management.Automation.Language.DoUntilStatementAst
return AstVisitAction
        public override AstVisitAction VisitDoUntilStatement(DoUntilStatementAst doUntilStatementAst)
        {
            return VisitSimpleLoopStatement(doUntilStatementAst.Body, doUntilStatementAst.Condition, true, true);
        }
ExecutionVisitor