Extension properties are just converted to static ...
# getting-started
r
Extension properties are just converted to static functions. For example,
Copy code
val String.test: Int get() = length
is compiled to
Copy code
public static final int getTest(@NotNull String $receiver) {
    Intrinsics.checkParameterIsNotNull($receiver, "$receiver");
    return $receiver.length();
}