Replies: 1 comment 1 reply
-
I don't think we have anything that does precisely what you want. For the AST you can use the ast viewer to see the representation of things in the AST but that doesn't apply to types. Within vscode you can highlight the method name and then use To just easily see which methods are available we have reference documentation here: |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm quite new to CodeQL but the tool is really impressive for tracing data flow in programs.
I did the whole tutorial about the abstract situation with the villagers and everything but when switching to real Golang use cases, it start to become difficult.
Is there any way of seeing/debugging/printing all the data associated with some types?
For example, I wanted to see all the things related to
InterfaceType
in my program, or more generally, interfaces, because I wanted to detect the implementation of some interface and it's quite frustrating to have toselect
each possible method of the different types to see if there are some related data that exists to filter on. It seems it is really difficult to browse the types to understand how to filter them.Do you have any piece of advice related to this? Dumping all available information on a type to see it?
Beta Was this translation helpful? Give feedback.
All reactions