public XElement Visit(NewObjectOpcode opcode, AbcMethodBodyInstruction arg) { return(new XElement("newobject").AddArgsCount(opcode.ArgCount)); }
public BaseAvm2Opcode Visit(NewObjectOpcode opcode, AbcDataReader arg) { opcode.ArgCount = arg.ReadU30(); return(opcode); }