Mono.Debugger.Backend.DwarfReader.DieEnumerator.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.name:
                    name = (string) attribute.Data;
                    break;
                case DwarfAttribute.const_value:
                    const_value = (int) (long) attribute.Data;
                    break;
                }
            }
DwarfReader.DieEnumerator