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