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

Multiply() public method

Pops two values from the stack, multiplies them together, then pushes the result to the stack.
public Multiply ( ) : void
return void
        public override void Multiply()
        {
            Emit1ByteOpCode(0x5A, 2, 1);
            CheckArithmeticOperands(ArithmeticOperator.Multiply);
        }
DynamicILGenerator