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

VisitDoWhileStatement() public method

public VisitDoWhileStatement ( System.Management.Automation.Language.DoWhileStatementAst doWhileStatementAst ) : AstVisitAction
doWhileStatementAst System.Management.Automation.Language.DoWhileStatementAst
return AstVisitAction
        public override AstVisitAction VisitDoWhileStatement(DoWhileStatementAst doWhileStatementAst)
        {
            return VisitSimpleLoopStatement(doWhileStatementAst.Body, doWhileStatementAst.Condition, true, false);
        }
ExecutionVisitor