Jurassic.Compiler.DynamicILGenerator.PushStackOperand C# (CSharp) Method

PushStackOperand() private method

private PushStackOperand ( VESType type ) : void
type VESType
return void
        private void PushStackOperand(VESType type)
        {
            this.operands.Push(type);
            if (this.operands.Count != this.stackSize)
                throw new InvalidOperationException("Inconsistant internal stack sizes.");
        }
DynamicILGenerator