Esempio n. 1
0
 public XElement Visit(PushStringOpcode opcode, AbcMethodBodyInstruction arg)
 {
     return(new XElement("pushstring", new XAttribute("value", opcode.Value)));
 }
Esempio n. 2
0
 public BaseAvm2Opcode Visit(PushStringOpcode opcode, AbcDataReader arg)
 {
     opcode.Value = _context.GetString(arg.ReadU30());
     return(opcode);
 }