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