MCPcopy Create free account
hub / github.com/DNAProject/DNA / DeserializeNotify

Function DeserializeNotify

vm/crossvm_codec/notify_codec.go:33–40  ·  view source on GitHub ↗
(input []byte)

Source from the content-addressed store, hash-verified

31)
32
33func DeserializeNotify(input []byte) interface{} {
34 val, err := parseNotify(input)
35 if err != nil {
36 return input
37 }
38
39 return stringify(val)
40}
41
42func stringify(notify interface{}) interface{} {
43 switch val := notify.(type) {

Callers 2

NotifyFunction · 0.92
TestDeserializeNotifyFunction · 0.85

Calls 2

parseNotifyFunction · 0.85
stringifyFunction · 0.85

Tested by 1

TestDeserializeNotifyFunction · 0.68