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

CompareEqual() public method

Pops two values from the stack, compares, then pushes 1 if the first argument is equal to the second, or 0 otherwise. Produces 0 if one or both of the arguments are NaN.
public CompareEqual ( ) : void
return void
        public override void CompareEqual()
        {
            Emit2ByteOpCode(0xFE, 0x01, 2, 1);
            CheckComparisonOperands(ComparisonOperator.Equal, branchOperation: false);
        }
DynamicILGenerator