Example #1
0
 public XElement Visit(GetScopeObjectOpcode opcode, AbcMethodBodyInstruction arg)
 {
     return(new XElement("getscopeobject", new XAttribute("index", opcode.Index)));
 }
Example #2
0
 public BaseAvm2Opcode Visit(GetScopeObjectOpcode opcode, AbcDataReader arg)
 {
     opcode.Index = arg.ReadU8();
     return(opcode);
 }