In [src/lowering.rs#L275](https://github.com/nrc/rls-analysis/blob/master/src/lowering.rs#L275) crate_name and qualname are concatenated. This creates very _interesting_ results for the qualname, for example: - `std<f64>::cbrt` - `libc::unix::::readdir` (not sure if this one belong here) - `core<char>::is_lowercase` - `alloc<[T]>::into_vec` Why is this done and how are you supposed to get the crate name form this?
In src/lowering.rs#L275 crate_name and qualname are concatenated. This creates very interesting results for the qualname, for example:
std<f64>::cbrtlibc::unix::::readdir(not sure if this one belong here)core<char>::is_lowercasealloc<[T]>::into_vecWhy is this done and how are you supposed to get the crate name form this?