| 35 | type stackValuesKey struct{} |
| 36 | |
| 37 | type stackValues struct { |
| 38 | key interface{} |
| 39 | value interface{} |
| 40 | parent *stackValues |
| 41 | } |
| 42 | |
| 43 | func withStackValue(parent *stackValues, key, value interface{}) *stackValues { |
| 44 | if key == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected