What is the use of different values in `enum class...
# compiler
a
What is the use of different values in
enum class NoLookupLocation : LookupLocation
in kotlin complier? I am trying to find if a particular method exist or not in the current compilation scope and need to pass the value of
LookupLocation
. Method I am using is below
Copy code
moduleDescriptor.getPackage(FqName("kotlin.sequences")).memberScope.getContributedFunctions(
    functionName,
    NoLookupLocation.FROM_BUILTINS
)