Describe the bug
The isSysPkg function in lang/golang/parser/utils.go incorrectly identifies local packages as system packages. The current implementation assumes that any import path not starting with a domain-like name (e.g., github.com/...) is a system package. This logic fails for local modules defined in go.mod that do not use a domain prefix, causing them to be misclassified.
To Reproduce
If a user imported a package that its import path is not starting with a domain-like name, this bug would be triggered.
Expected behavior
skip.
Screenshots
skip.
Version:
latest.
Environment:
skip.
Additional context
skip.