Ejemplo n.º 1
0
 public XElement Visit(CallStaticOpcode opcode, AbcMethodBodyInstruction arg)
 {
     return(new XElement("callstatic").AddMethod(opcode.Method).AddArgsCount(opcode.ArgCount));
 }
Ejemplo n.º 2
0
 public BaseAvm2Opcode Visit(CallStaticOpcode opcode, AbcDataReader arg)
 {
     opcode.Method   = _context.GetMethod(arg.ReadU30());
     opcode.ArgCount = arg.ReadU30();
     return(opcode);
 }