Exemplo n.º 1
0
 public XElement Visit(HasNext2Opcode opcode, AbcMethodBodyInstruction arg)
 {
     return(new XElement("hasnext2", new XAttribute("objectReg", opcode.ObjectReg), new XAttribute("indexReg", opcode.IndexReg)));
 }
Exemplo n.º 2
0
 public BaseAvm2Opcode Visit(HasNext2Opcode opcode, AbcDataReader arg)
 {
     opcode.ObjectReg = arg.ReadU30();
     opcode.IndexReg  = arg.ReadU30();
     return(opcode);
 }