Mono.Debugger.Backend.DwarfReader.DieSubprogram.DieSubprogram C# (CSharp) Method

DieSubprogram() public method

public DieSubprogram ( DwarfBinaryReader reader, CompilationUnit comp_unit, long offset, AbbrevEntry abbrev ) : System
reader DwarfBinaryReader
comp_unit CompilationUnit
offset long
abbrev AbbrevEntry
return System
            public DieSubprogram(DwarfBinaryReader reader, CompilationUnit comp_unit,
					      long offset, AbbrevEntry abbrev)
                : base(reader, comp_unit, abbrev)
            {
                this.real_offset = offset;
                if ((start_pc != 0) && (end_pc != 0))
                    is_continuous = true;

                comp_unit.AddSubprogram (offset, this);
            }