Microsoft.Scripting.Interpreter.InterpretedFrame.Enter C# (CSharp) Method

Enter() private method

private Enter ( ) : ThreadLocal.StorageInfo
return ThreadLocal.StorageInfo
        internal ThreadLocal<InterpretedFrame>.StorageInfo Enter() {
            var currentFrame = InterpretedFrame.CurrentFrame.GetStorageInfo();
            _parent = currentFrame.Value;
            currentFrame.Value = this;
            return currentFrame;
        }