You can’t just restrict resolve to most nested `th...
# getting-started
o
You can’t just restrict resolve to most nested
this
, because it would break a lot of other cases. E.g. something like this
Copy code
fun Person.render() {
   html { div { text = name } }
}
Here
name
is resolved to
Person
property, using
this
from outer scope.