IronRuby.Compiler.Ast.LocalVariable.LocalVariable C# (CSharp) Method

LocalVariable() private method

private LocalVariable ( string name, Microsoft.Scripting.SourceSpan location, int definitionLexicalDepth ) : System.Diagnostics
name string
location Microsoft.Scripting.SourceSpan
definitionLexicalDepth int
return System.Diagnostics
        internal LocalVariable(string/*!*/ name, SourceSpan location, int definitionLexicalDepth)
            : base(name, location) {
            Debug.Assert(definitionLexicalDepth >= -1);

            _definitionLexicalDepth = definitionLexicalDepth;
            _closureIndex = -1;
        }