Problem
The "Go to Definition" and Hover features do not work when we use a module member (like uni.Module) as a type for a function parameter.
Example
import jaclang.pycore.unitree as uni;
# ❌ Fails: Hovering over 'Module' here shows nothing.
def update(build: uni.Module) -> None;
# ✅ Works: Return types work correctly.
def get() -> uni.Module;