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

Divide() публичный Метод

Pops two values from the stack, divides the first by the second, then pushes the result to the stack.
public Divide ( ) : void
Результат void
        public override void Divide()
        {
            Emit1ByteOpCode(0x5B, 2, 1);
            CheckArithmeticOperands(ArithmeticOperator.Divide);
        }
DynamicILGenerator