Ejemplo n.º 1
0
 static bool checkStloc(IList <VariableDefinition> locals, Instr instr, VariableDefinition local)
 {
     if (!instr.isStloc())
     {
         return(false);
     }
     if (Instr.getLocalVar(locals, instr) != local)
     {
         return(false);
     }
     return(true);
 }
Ejemplo n.º 2
0
 static bool checkStloc(IList <Local> locals, Instr instr, Local local)
 {
     if (!instr.isStloc())
     {
         return(false);
     }
     if (Instr.getLocalVar(locals, instr) != local)
     {
         return(false);
     }
     return(true);
 }