* Panic is identical to the builtin panic except it purges the session before calling panic. */
(v interface{})
| 82 | Panic is identical to the builtin panic except it purges the session before calling panic. |
| 83 | */ |
| 84 | func Panic(v interface{}) { |
| 85 | Purge() // creates a new key so it is safe to recover from this panic |
| 86 | panic(v) |
| 87 | } |
searching dependent graphs…