IronPython.Compiler.Ast.ScopeStatement.ClosureInfo.ClosureInfo C# (CSharp) Метод

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

public ClosureInfo ( PythonVariable variable, bool accessedInScope ) : System
variable PythonVariable
accessedInScope bool
Результат System
            public ClosureInfo(PythonVariable variable, bool accessedInScope) {
                Variable = variable;
                AccessedInScope = accessedInScope;
            }
        }
ScopeStatement.ClosureInfo