protected override Die CreateDie(DwarfBinaryReader reader, CompilationUnit comp_unit,
long offset, AbbrevEntry abbrev)
{
switch (abbrev.Tag) {
case DwarfTag.inheritance:
return new DieInheritance (reader, comp_unit, abbrev);
default:
return base.CreateDie (reader, comp_unit, offset, abbrev);
}
}