(w binary.Writer)
| 101 | w.Uint32(uint32(v)) |
| 102 | } |
| 103 | func (v valReference) encode(w binary.Writer) { |
| 104 | writeTypedValueHeader(w, typeReference) |
| 105 | w.Uint32(uint32(v)) |
| 106 | } |
| 107 | func (v valStringID) encode(w binary.Writer) { |
| 108 | writeTypedValueHeader(w, typeString) |
| 109 | w.Uint32(stringPoolRef(v).stringPoolIndex()) |
nothing calls this directly
no test coverage detected