Esempio n. 1
0
 public XElement Visit(PushByteOpcode opcode, AbcMethodBodyInstruction arg)
 {
     return(new XElement("pushbyte", new XAttribute("value", opcode.Value)));
 }
Esempio n. 2
0
 public BaseAvm2Opcode Visit(PushByteOpcode opcode, AbcDataReader arg)
 {
     opcode.Value = arg.ReadU8();
     return(opcode);
 }