Boo.Lang.Compiler.CompilerContext.CurrentVariable C# (CSharp) Method

CurrentVariable() private static method

private static CurrentVariable ( ) : DynamicVariable
return DynamicVariable
        private static DynamicVariable<CompilerContext> CurrentVariable()
        {
            if (null == _current) _current = new DynamicVariable<CompilerContext>();
            return _current;
        }