scanningState is the state of the scan to detect and process a stack trace and stores the traces found.
| 443 | // scanningState is the state of the scan to detect and process a stack trace |
| 444 | // and stores the traces found. |
| 445 | type scanningState struct { |
| 446 | *Snapshot |
| 447 | state state |
| 448 | prefix []byte |
| 449 | goroutineIndex int |
| 450 | } |
| 451 | |
| 452 | func isFramesElidedLine(line []byte) bool { |
| 453 | // before go1.21: |
nothing calls this directly
no outgoing calls
no test coverage detected