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;
}
}