IronRuby.Compiler.Ast.ForLoopExpression.ForLoopExpression C# (CSharp) Метод

ForLoopExpression() публичный Метод

public ForLoopExpression ( LexicalScope definedScope, Parameters variables, Expression list, Statements body, Microsoft.Scripting.SourceSpan location ) : System
definedScope LexicalScope
variables Parameters
list Expression
body Statements
location Microsoft.Scripting.SourceSpan
Результат System
        public ForLoopExpression(LexicalScope/*!*/ definedScope, Parameters/*!*/ variables, Expression/*!*/ list, Statements body, SourceSpan location)
            : base(location) {
            Assert.NotNull(definedScope, variables, list);

            _block = new BlockDefinition(definedScope, variables, body, location);
            _list = list;
        }