Jurassic.Compiler.DynamicILGenerator.Subtract C# (CSharp) 메소드

Subtract() 공개 메소드

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