Mono.Debugger.Backend.DwarfReader.DieInheritance.ProcessAttribute C# (CSharp) Method

ProcessAttribute() protected method

protected ProcessAttribute ( Attribute attribute ) : void
attribute System.Attribute
return void
            protected override void ProcessAttribute(Attribute attribute)
            {
                switch (attribute.DwarfAttribute) {
                case DwarfAttribute.type:
                    type_offset = (long) attribute.Data;
                    break;

                case DwarfAttribute.data_member_location:
                    data_member_location = new DwarfLocation (comp_unit, null, attribute, false);
                    break;

                default:
                    base.ProcessAttribute (attribute);
                    break;
                }
            }