Exemplo n.º 1
0
 public XElement Visit(DebugFileOpcode opcode, AbcMethodBodyInstruction arg)
 {
     return(new XElement("debugfile", new XAttribute("fileName", opcode.FileName)));
 }
Exemplo n.º 2
0
 public BaseAvm2Opcode Visit(DebugFileOpcode opcode, AbcDataReader arg)
 {
     opcode.FileName = _context.GetString(arg.ReadU30());
     return(opcode);
 }