Exemple #1
0
 public static ILInstruction GetUnalignedInstruction(IUnalignedInstruction instruction)
 {
     return(instruction == null ? null :
            new ILInstruction()
     {
         UnalignedInstruction = new UnalignedInstruction()
         {
             Value = instruction.Value
         }
     });
 }
 public virtual void VisitUnalignedInstruction(IUnalignedInstruction instruction)
 {
     Visit(instruction);
 }