GetInstructionListName() abstract private method

abstract private GetInstructionListName ( int index ) : string
index int
return string
        internal override string GetInstructionListName(int index)
        {
            IMGUIInstruction instruction        = this.m_Instructions[index];
            BaseInspectView  inspectViewForType = this.GetInspectViewForType(instruction.type);

            return(inspectViewForType.GetInstructionListName(instruction.typeInstructionIndex));
        }