Mono.Debugger.Backend.DwarfReader.DieMethodVariable.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.location:
                    location_attr = attribute;
                    break;

                case DwarfAttribute.artificial:
                    artificial = (bool) attribute.Data;
                    break;

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