panicparse icon indicating copy to clipboard operation
panicparse copied to clipboard

Crash your app in style (Golang)

Results 4 panicparse issues
Sort by recently updated
recently updated
newest added
trafficstars

This is a pretty minor thing, but it confused me enough to make me want to fix it, unless its a harder problem than I'm realizing. Empty structs are decoded...

It would be cool if the tool supported an output format similar to "typical compilers", so that it could be easily fetched into vim's "quickfix" window, for easy jumping through...

### env go version go1.24.0 darwin/arm64 fish, version 4.0.0 panicparse v2.4.0 ### steps to reproduce setup a server like this ``` package main import ( "log" "net/http" "regexp" ) func...