IronPython.Compiler.ReferenceClosureInfo.ReferenceClosureInfo C# (CSharp) Method

ReferenceClosureInfo() public method

public ReferenceClosureInfo ( PythonVariable variable, int index, System.Linq.Expressions tupleExpr, bool accessedInThisScope ) : System
variable IronPython.Compiler.Ast.PythonVariable
index int
tupleExpr System.Linq.Expressions
accessedInThisScope bool
return System
        public ReferenceClosureInfo(PythonVariable/*!*/ variable, int index, MSAst.Expression/*!*/ tupleExpr, bool accessedInThisScope) {
            Assert.NotNull(variable);

            Variable = variable;
            IsClosedOver = accessedInThisScope;
        }
ReferenceClosureInfo