We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
gobfuscate does not work with the following code (shortened):
package main import ( "fmt" ) type Test1 struct { data map[int]pathInfo } type pathInfo struct { name string } func main() { fmt.Println("Hello There!") }
It complains with XXX has no member "pathInfo". The only solution is to modify the source code and move pathInfo definition above Test1 structure.
XXX has no member "pathInfo"
Can you fix it?
The text was updated successfully, but these errors were encountered:
Looks like go itself scans the source code twice. Minimal case updated.
Sorry, something went wrong.
No branches or pull requests
gobfuscate does not work with the following code (shortened):
It complains with
XXX has no member "pathInfo"
. The only solution is to modify the source code and move pathInfo definition above Test1 structure.Can you fix it?
The text was updated successfully, but these errors were encountered: