(id *call.ID)
| 22 | } |
| 23 | |
| 24 | func idInputDebugString(id *call.ID) string { |
| 25 | if id == nil { |
| 26 | return "<nil>" |
| 27 | } |
| 28 | if id.IsHandle() { |
| 29 | return id.Display() |
| 30 | } |
| 31 | return string(id.Digest()) |
| 32 | } |
| 33 | |
| 34 | func resultCallRefFromResult(ctx context.Context, res AnyResult) (*ResultCallRef, error) { |
| 35 | if res == nil { |
no test coverage detected