(content value)
| 61 | } |
| 62 | |
| 63 | func readyThunk(content value) *cachedThunk { |
| 64 | return &cachedThunk{content: content} |
| 65 | } |
| 66 | |
| 67 | func (t *cachedThunk) getValue(i *interpreter) (value, error) { |
| 68 | if t.content != nil { |
no outgoing calls
no test coverage detected
searching dependent graphs…