Beispiel #1
0
 public ASMethodBody(ABCFile abc)
     : base(abc)
 {
     Exceptions = new List <ASException>();
 }
Beispiel #2
0
 public ASScript(ABCFile abc)
     : base(abc)
 {
 }
Beispiel #3
0
 public ASInstance(ABCFile abc)
     : base(abc)
 {
     InterfaceIndices = new List <int>();
 }
Beispiel #4
0
 public ASException(ABCFile abc)
     : base(abc)
 {
 }
Beispiel #5
0
 public ASClass(ABCFile abc)
     : base(abc)
 {
 }
Beispiel #6
0
        public ASMetadata(ABCFile abc)
        {
            _abc = abc;

            Items = new List <ASItemInfo>();
        }
Beispiel #7
0
 public ASItemInfo(ABCFile abc, FlashReader input)
     : this(abc)
 {
     KeyIndex   = input.ReadInt30();
     ValueIndex = input.ReadInt30();
 }
Beispiel #8
0
 public ASItemInfo(ABCFile abc)
 {
     _abc = abc;
 }
Beispiel #9
0
 public ASMethod(ABCFile abc)
     : base(abc)
 {
     Parameters = new List <ASParameter>();
 }