(data string, binary bool)
| 707 | } |
| 708 | |
| 709 | func decodeChunkData(data string, binary bool) ([]byte, error) { |
| 710 | if binary { |
| 711 | return base64.StdEncoding.DecodeString(data) |
| 712 | } |
| 713 | return []byte(data), nil |
| 714 | } |
| 715 | |
| 716 | // responseSink writes response frames to the runtime via RPC. |
| 717 | type responseSink struct { |
no outgoing calls
no test coverage detected
searching dependent graphs…