-
-
Notifications
You must be signed in to change notification settings - Fork 425
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated dependencies; removed pointer
analyzer as it panics in go 1.22; updated readme and gitignore
#177
base: master
Are you sure you want to change the base?
Conversation
Will this be merged? There are many issues regarding pointer analysis. Since golang.org/x/tools/go/pointer has been deprecated, we should either remove it (as it is in this PR), or at least change the default analysis. |
Strong +1 for this PR! |
+1 for the PR, im also using Go 1.22 and this fixed the error |
Also in my environment, this pr is correctly work, Thanks. git clone https://github.com/ofabry/go-callvis.git
cd go-callvis
gh co 177 # checkout to this nice pull request.
make install go-callvis .
2024/07/18 15:45:40 http serving at http://localhost:7878
2024/07/18 15:45:40 converting dot to svg..
2024/07/18 15:45:40 serving file: /var/folders/../../go-callvis_export.svg |
Is there anyone besides @ondrajz who can merge this PR? |
With 1.23.1 , getting this error now on this branch
|
Will this be merged? There are many issues regarding pointer analysis. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The main changes to the code are:
- Removed the code related to "golang.org/x/tools/go/pointer" and its associated code, as it caused numerous issues.
- Added the -algo parameter.
- Upgraded the Go version to 1.22.
fixes #170