예제 #1
0
 public XElement Visit(NewCatchOpcode opcode, AbcMethodBodyInstruction arg)
 {
     return(new XElement("newcatch", new XAttribute("exceptionBlock", opcode.ExceptionBlockIndex)));
 }
예제 #2
0
 public BaseAvm2Opcode Visit(NewCatchOpcode opcode, AbcDataReader arg)
 {
     opcode.ExceptionBlockIndex = arg.ReadU30();
     return(opcode);
 }