IronRuby.Compiler.Ast.WhileLoopExpression.WhileLoopExpression C# (CSharp) Méthode

WhileLoopExpression() public méthode

public WhileLoopExpression ( Expression condition, bool isWhileLoop, bool isPostTest, Statements statements, Microsoft.Scripting.SourceSpan location ) : System.Collections
condition Expression
isWhileLoop bool
isPostTest bool
statements Statements
location Microsoft.Scripting.SourceSpan
Résultat System.Collections
        public WhileLoopExpression(Expression/*!*/ condition, bool isWhileLoop, bool isPostTest, Statements/*!*/ statements, SourceSpan location)
            : base(location) {

            ContractUtils.RequiresNotNull(condition, "condition");
            ContractUtils.RequiresNotNull(statements, "statements");

            _condition = condition;
            _isWhileLoop = isWhileLoop;
            _isPostTest = isPostTest;
            _statements = statements;
        }