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

Divide() public method

Pops two values from the stack, divides the first by the second, then pushes the result to the stack.
public Divide ( ) : void
return void
        public override void Divide()
        {
            Emit1ByteOpCode(0x5B, 2, 1);
            CheckArithmeticOperands(ArithmeticOperator.Divide);
        }
DynamicILGenerator