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

Add() 공개 메소드

Pops two values from the stack, adds them together, then pushes the result to the stack.
public Add ( ) : void
리턴 void
        public override void Add()
        {
            Emit1ByteOpCode(0x58, 2, 1);
            CheckArithmeticOperands(ArithmeticOperator.Add);
        }
DynamicILGenerator