in src/main/kotlin/ScipSymbolDescriptor.kt [40:45]
fun parseDescriptorElementUntil(endChar: Char, suffix: Scip.Descriptor.Suffix): ScipSymbolDescriptorElement {
val lastIndex = descriptor.indexOf(endChar, index + 1)
val name = descriptor.substring(index + 1, lastIndex)
index = lastIndex + 1
return ScipSymbolDescriptorElement(name, null, suffix)
}