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

LoadInt64() public method

Pushes a 64-bit constant value onto the stack.
public LoadInt64 ( long value ) : void
value long The 64-bit integer to push onto the stack.
return void
        public override void LoadInt64(long value)
        {
            // ldc.i8 value = 21 <int64>
            Emit1ByteOpCodeInt64(0x21, 0, 1, value);

            // The instruction pushes a value onto the stack.
            PushStackOperand(VESType.Int64);
        }
DynamicILGenerator