Antmicro.Migrant.Utilities.Variable.StoreValueFromStack C# (CSharp) Method

StoreValueFromStack() public method

public StoreValueFromStack ( ILGenerator generator ) : void
generator System.Reflection.Emit.ILGenerator
return void
        public void StoreValueFromStack(ILGenerator generator)
        {
            if(storeValueAction == null)
            {
                throw new InvalidOperationException();
            }

            storeValueAction(generator);
        }