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

Add() public method

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