Ejemplo n.º 1
0
 public XElement Visit(CallPropVoidOpcode opcode, AbcMethodBodyInstruction arg)
 {
     return(new XElement("callpropvoid").AddName(opcode.Name).AddArgsCount(opcode.ArgCount));
 }
Ejemplo n.º 2
0
 public BaseAvm2Opcode Visit(CallPropVoidOpcode opcode, AbcDataReader arg)
 {
     opcode.Name     = _context.GetMultiname(arg.ReadU30(), null);
     opcode.ArgCount = arg.ReadU30();
     return(opcode);
 }