``` callable.parameters.forEachIndexed { idx, para...
# jackson-kotlin
m
Copy code
callable.parameters.forEachIndexed { idx, paramDef ->
    if (paramDef.kind == KParameter.Kind.INSTANCE || paramDef.kind == KParameter.Kind.EXTENSION_RECEIVER) {
        // we shouldn't have an instance or receiver parameter and if we do, just go with default Java-ish behavior
        return super.createFromObjectWith(ctxt, props, buffer)
    }
...