(e *error)
| 326 | } |
| 327 | |
| 328 | func panicToError(e *error) { |
| 329 | if r := recover(); r != nil { |
| 330 | *e = fmt.Errorf("panic: %v", r) |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | // DecodingLayerParserOptions provides options to affect the behavior of a given |
| 335 | // DecodingLayerParser. |
no outgoing calls
no test coverage detected
searching dependent graphs…