Пример #1
0
 public ASScript(ABCFile abc, FlashReader input)
     : base(abc)
 {
     InitializerIndex = input.ReadInt30();
     PopulateTraits(input);
 }
Пример #2
0
 public ASException(ABCFile abc)
     : base(abc)
 {
 }
Пример #3
0
 public ASScript(ABCFile abc)
     : base(abc)
 {
 }
Пример #4
0
 public ASClass(ABCFile abc) : base(abc)
 {
 }
Пример #5
0
 public ASMethodBody(ABCFile abc)
     : base(abc)
 {
     Exceptions = new List <ASException>();
 }
Пример #6
0
 public ASInstance(ABCFile abc)
     : base(abc)
 {
     InterfaceIndices = new List <int>();
 }
Пример #7
0
 public ASConstantPool(ABCFile abc)
     : this()
 {
     ABC = abc;
 }
Пример #8
0
 public ASItemInfo(ABCFile abc, FlashReader input)
     : this(abc)
 {
     KeyIndex   = input.ReadInt30();
     ValueIndex = input.ReadInt30();
 }
Пример #9
0
 public ASItemInfo(ABCFile abc)
 {
     _abc = abc;
 }
Пример #10
0
 public ASMethod(ABCFile abc)
     : base(abc)
 {
     Parameters = new List <ASParameter>();
 }