Ejemplo n.º 1
0
 public SuperInitializer(ComponentReader reader)
 {
     isSynthetic = reader.ReadByte();
     fileOffset  = new FileOffset(reader);
     target      = new ConstructorReference(reader);
     arguments   = new Arguments(reader);
 }
Ejemplo n.º 2
0
 public SuperInitializer(FileOffset fileOffset, ConstructorReference target, Arguments arguments, bool isSynthetic = false)
 {
     this.isSynthetic = isSynthetic ? (byte)0 : (byte)1;
     this.fileOffset  = fileOffset;
     this.target      = target;
     this.arguments   = arguments;
 }
Ejemplo n.º 3
0
 public RedirectingInitializer(ConstructorReference target, Arguments arguments, bool isSynthetic = false)
 {
     this.isSynthetic = isSynthetic ? (byte)0 : (byte)1;
     this.target      = target;
     this.arguments   = arguments;
 }