private void addInstructionToInstructionList(Instruction instruction, InstructionList instructionList)
 {
     if (mutator.skipNextInstruction())
     {
         return;
     }
     possiblyAddNewInstruction(instructionList);
     possiblyMutateInstruction(instruction);
     instructionList.addInstruction(instruction);
 }