Esempio n. 1
0
 internal DebugInfoSection(DWARFData data, ISection section)
 {
     _stream  = section.GetSectionStream();
     _sheader = section.Header;
     _data    = data;
     ParseCompilationUnits();
 }
Esempio n. 2
0
 internal DebugLineSection(DWARFData data, ISection section)
 {
     _data   = data;
     _stream = section.GetSectionStream();
     LoadLinePrograms();
 }
Esempio n. 3
0
 internal DebugStringsSection(ISection section)
 {
     _stream        = section.GetSectionStream();
     _sectionHeader = section.Header;
     ParseStrings();
 }
Esempio n. 4
0
 internal DebugAbbrevSection(ISection section)
 {
     _stream = section.GetSectionStream();
 }