4 overrides of Cache
System.Linq.Expressions (4)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (4)
50
public override Instruction[]
Cache
=> field ??= new Instruction[CacheSize];
70
public override Instruction[]
Cache
=> field ??= new Instruction[CacheSize];
90
public override Instruction[]
Cache
=> field ??= new Instruction[CacheSize];
113
public override Instruction[]
Cache
1 reference to Cache
System.Linq.Expressions (1)
System\Linq\Expressions\Interpreter\ControlFlowInstructions.cs (1)
28
Instruction[] cache =
Cache
;