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