Exemple #1
0
 public XElement Visit(PushUIntOpcode opcode, AbcMethodBodyInstruction arg)
 {
     return(new XElement("pushuint", new XAttribute("value", opcode.Value)));
 }
Exemple #2
0
 public BaseAvm2Opcode Visit(PushUIntOpcode opcode, AbcDataReader arg)
 {
     opcode.Value = _context.GetUInteger(arg.ReadU30());
     return(opcode);
 }