예제 #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>();
 }