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

Subtract() public method

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