fun nonProcessedChildTypes()

in build-logic/generatorlegacybuild/src/main/kotlin/karakum/browser/MarkerRegistry.kt [54:65]


    fun nonProcessedChildTypes(
        type: String,
    ): List<String> {
        // TEMP
        if (type == "ImageBitmapSource")
            return emptyList()

        return BASE_TYPES.filter {
            val parentTypes = map[it]
            parentTypes != null && type in parentTypes
        }
    }