C# Class Microsoft.Scripting.Interpreter.CallInstruction

Inheritance: Microsoft.Scripting.Interpreter.Instruction
Mostrar archivo Open project: jschementi/iron Class Usage Examples

Public Methods

Method Description
ArrayItemSetter1 ( Array array, int index0, object value ) : void
ArrayItemSetter2 ( Array array, int index0, int index1, object value ) : void
ArrayItemSetter3 ( Array array, int index0, int index1, int index2, object value ) : void
Create ( MethodInfo info ) : CallInstruction
Create ( MethodInfo info, ParameterInfo parameters ) : CallInstruction

Creates a new ReflectedCaller which can be used to quickly invoke the provided MethodInfo.

ToString ( ) : string

Private Methods

Method Description
CallInstruction ( ) : System
GetArrayAccessor ( MethodInfo info, int argumentCount ) : CallInstruction
IndexIsNotReturnType ( int index, MethodInfo target, ParameterInfo pi ) : bool
ShouldCache ( MethodInfo info ) : bool
SlowCreate ( MethodInfo info, ParameterInfo pis ) : CallInstruction

Uses reflection to create new instance of the appropriate ReflectedCaller

TryGetParameterOrReturnType ( MethodInfo target, ParameterInfo pi, int index ) : Type

Gets the next type or null if no more types are available.

Method Details

ArrayItemSetter1() public static method

public static ArrayItemSetter1 ( Array array, int index0, object value ) : void
array System.Array
index0 int
value object
return void

ArrayItemSetter2() public static method

public static ArrayItemSetter2 ( Array array, int index0, int index1, object value ) : void
array System.Array
index0 int
index1 int
value object
return void

ArrayItemSetter3() public static method

public static ArrayItemSetter3 ( Array array, int index0, int index1, int index2, object value ) : void
array System.Array
index0 int
index1 int
index2 int
value object
return void

Create() public static method

public static Create ( MethodInfo info ) : CallInstruction
info System.Reflection.MethodInfo
return CallInstruction

Create() public static method

Creates a new ReflectedCaller which can be used to quickly invoke the provided MethodInfo.
public static Create ( MethodInfo info, ParameterInfo parameters ) : CallInstruction
info System.Reflection.MethodInfo
parameters System.Reflection.ParameterInfo
return CallInstruction

ToString() public method

public ToString ( ) : string
return string