8 references to Instructions
illink (8)
Linker\LinkerILProcessor.cs (8)
46
Instruction? lastInstruction =
Instructions
.Count == 0 ? null :
Instructions
[
Instructions
.Count - 1];
67
Instruction? nextInstruction =
Instructions
.Count == index + 1 ? null :
Instructions
[index + 1];
68
Instruction? previousInstruction = index == 0 ? null :
Instructions
[index - 1];
76
public void RemoveAt (int index) => Remove (
Instructions
[index]);
108
foreach (var instr in
Instructions
) {