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

LoadStaticMethodPointer() public method

Pushes a pointer to the native code implementing the given method onto the evaluation stack. The virtual qualifier will be ignored, if present.
public LoadStaticMethodPointer ( System method ) : void
method System The method to retrieve a pointer for.
return void
        public override void LoadStaticMethodPointer(System.Reflection.MethodBase method)
        {
            if (method == null)
                throw new ArgumentNullException("method");
            var token = this.GetToken(method);
            Emit2ByteOpCodeInt32(0xFE, 0x06, 0, 1, token);
            PushStackOperand(VESType.NativeInt);
        }
DynamicILGenerator