df54540a81
- Now that non-static declared member scopes don't contain static callables anymore, we have to update some usages in the Analysis API. - In symbol light classes, many usages of `getDeclaredMemberScope` can be kept as-is because Kotlin classes/objects generally cannot declare static callables (and we do not need to create symbol light classes for Java classes). The only exception are enum classes, which implicitly declare some static callables. ^KT-61800