Jurassic.Compiler.DynamicILGenerator.PushStackOperand C# (CSharp) Метод

PushStackOperand() приватный Метод

private PushStackOperand ( VESType type ) : void
type VESType
Результат void
        private void PushStackOperand(VESType type)
        {
            this.operands.Push(type);
            if (this.operands.Count != this.stackSize)
                throw new InvalidOperationException("Inconsistant internal stack sizes.");
        }
DynamicILGenerator