Example #1
0
 public static ILInstruction GetLoadDoubleInstruction(ILoadDoubleInstruction instruction)
 {
     return(instruction == null ? null :
            new ILInstruction()
     {
         LoadDoubleInstruction = new LoadDoubleInstruction()
         {
             Value = instruction.Value
         }
     });
 }
 public virtual void VisitLoadDoubleInstruction(ILoadDoubleInstruction instruction)
 {
     Visit(instruction);
 }