IronPython.Compiler.Ast.PythonVariable.PythonVariable C# (CSharp) Method

PythonVariable() public method

public PythonVariable ( string name, VariableKind kind, ScopeStatement scope ) : System
name string
kind VariableKind
scope ScopeStatement
return System
        public PythonVariable(string name, VariableKind kind, ScopeStatement/*!*/ scope) {
            Assert.NotNull(scope);
            _name = name;
            _kind = kind;
            _scope = scope;
        }
PythonVariable