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

ConvertToUnsignedInt64() public method

Pops a value from the stack, converts it to an unsigned 64-bit integer, then pushes it back onto the stack.
public ConvertToUnsignedInt64 ( ) : void
return void
        public override void ConvertToUnsignedInt64()
        {
            Emit1ByteOpCode(0x6E, 1, 1);
            PopStackOperands(VESType.Int32 | VESType.Int64 | VESType.NativeInt | VESType.Float);
            PushStackOperand(VESType.Int64);
        }
DynamicILGenerator