Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
LocalAccessInstruction.cs
Go to the documentation of this file.
2
4
5internal abstract class LocalAccessInstruction : Instruction
6{
7 internal readonly int _index;
8
10 {
11 _index = index;
12 }
13
15 {
16 if (cookie != null)
17 {
18 return InstructionName + "(" + cookie?.ToString() + ": " + _index + ")";
19 }
20 return InstructionName + "(" + _index + ")";
21 }
22}
override string ToDebugString(int instructionIndex, object cookie, Func< int, int > labelIndexer, IReadOnlyList< object > objects)