fun isPlainObjectInterface()

in build-logic/generatorlegacybuild/src/main/kotlin/karakum/browser/IDL.kt [351:367]


    fun isPlainObjectInterface(
        name: String,
    ): Boolean {
        if (name in plainObjectInterfaces)
            return true

        if (!name.endsWith("Options"))
            return false

        return when (name) {
            "LocaleOptions",
            "PushSubscriptionOptions",
                -> false

            else -> true
        }
    }