<@UKPEELJCW> similar question to what you answered...
# compiler
t
@dmitriy.novozhilov similar question to what you answered here:
Copy code
// before
fun String.foo(x: Int) {}

s.foo(10)
// after
fun foo(reciever: String, x: Int)

foo(s, 10)
What does the backend do when a receiver type is specified for a property? I.E.,
Copy code
inline val org.gradle.plugin.use.PluginDependenciesSpec.`java-test-fixtures`: org.gradle.plugin.use.PluginDependencySpec
    get() = id("org.gradle.java-test-fixtures")
Does the backend apply a similar transformation to a property method like the getter or setter?