コード例 #1
0
 private void ProcessCallInstruction(Instruction instruction, MethodDefinition method)
 {
     if (instruction.Operand is MethodReference calledMethod)
     {
         var calledMethodDefinition = calledMethod.Resolve();
         if (calledMethodDefinition != null && GetInlineAttribute(calledMethodDefinition) != null)
         {
             ProcessMethod(calledMethodDefinition);
             var inlineMethodWeaver = new InlineMethodWeaver(this, instruction, method, calledMethodDefinition);
             inlineMethodWeaver.Process();
         }
     }
 }
コード例 #2
0
 public Arg(InlineMethodWeaver inlineMethodWeaver, int paramIndex, Instruction pushInstruction)
 {
     _inlineMethodWeaver = inlineMethodWeaver;
     _paramIndex         = paramIndex;
     _pushInstruction    = pushInstruction;
 }