Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Cache

override Instruction [] System.Linq.Expressions.Interpreter.BranchInstruction.Cache
get

Definition at line 11 of file BranchInstruction.cs.

12 {
13 get
14 {
15 if (s_caches == null)
16 {
17 s_caches = new Instruction[2][][]
18 {
19 new Instruction[2][],
20 new Instruction[2][]
21 };
22 }
23 return s_caches[ConsumedStack][ProducedStack] ?? (s_caches[ConsumedStack][ProducedStack] = new Instruction[32]);
24 }
25 }