Frederik Z.
Frederik Z.
Sometimes I would like to see the user-defined variables and functions, e.g. in a long-running session, or after I loaded a library or a saved session. I can list the...
The "describe" query usually returns a pointer to the definition of an identifier ("definition of ..."). Pythia could offer a convenience menu item ("Go to definition") as a shortcut.
Specialize the call{ers,ees,graph} queries into the UI: fetch the complete callgraph at startup and cache it. Use it to mark up the source so that all function declarations have a...
This code reports errors on the [tree-sitter playground](https://tree-sitter.github.io/tree-sitter/playground): ``` func f[A int|string, B ~int, C ~int|~string]() { } ``` ``` source_file [0, 0] - [2, 0] function_declaration [0, 0] -...
I start Ivy and enter: ``` )timezone CEST 0 ``` CEST is correct for my location, but offset 0 isn't. CEST is UTC+2, so the offset should be 7200. Now...
A false positive of "Slice memory allocation with excessive size value" in Go (Rule ID: go/uncontrolled-allocation-size). It's a false positive, because the length of the allocated slice is explicitly limited...