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

BitwiseNot() public method

Pops a value from the stack, inverts it, then pushes the result to the stack.
public BitwiseNot ( ) : void
return void
        public override void BitwiseNot()
        {
            Emit1ByteOpCode(0x66, 1, 1);
            PopStackOperands(VESType.Int32);
            PushStackOperand(VESType.Int32);
        }
DynamicILGenerator