(w binary.Writer)
| 97 | w.Int32(int32(v)) |
| 98 | } |
| 99 | func (v valIntHex) encode(w binary.Writer) { |
| 100 | writeTypedValueHeader(w, typeIntHex) |
| 101 | w.Uint32(uint32(v)) |
| 102 | } |
| 103 | func (v valReference) encode(w binary.Writer) { |
| 104 | writeTypedValueHeader(w, typeReference) |
| 105 | w.Uint32(uint32(v)) |
nothing calls this directly
no test coverage detected