(v any)
| 115 | } |
| 116 | |
| 117 | func asAnySlice(v any) []any { |
| 118 | s, _ := v.([]any) |
| 119 | return s |
| 120 | } |
| 121 | |
| 122 | // fetchedSource is a transformed file plus its parsed source map (if any), |
| 123 | // cached per event so multiple frames from the same file fetch once. |
no outgoing calls
no test coverage detected