Пример #1
0
 public static ILInstruction GetLoadFloatInstruction(ILoadFloatInstruction instruction)
 {
     return(instruction == null ? null :
            new ILInstruction()
     {
         LoadFloatInstruction = new LoadFloatInstruction()
         {
             Value = instruction.Value
         }
     });
 }
 public virtual void VisitLoadFloatInstruction(ILoadFloatInstruction instruction)
 {
     Visit(instruction);
 }