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

Remainder() public method

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