ref: Fix bug in vom zero-struct-field encoding.

This bug was reported by Adam Sadovsky.  The bug occurs with the
following example.

type X struct { A any }

The buggy code encodes X{false} the same as X{nil} - in general
any value of the A field that is the zero value for its type is
dropped.  That's just wrong.

The fix is in the encoder.canIgnoreField logic.

In addition I noticed that we'd inadvertantly exposed too many
methods from vom.Encoder.  I've fixed that as well.

Change-Id: I7c23e3936e168de92e1cf9b2d2d6de7bdb909c4e
MultiPart: 2/3
1 file changed
tree: 80ab62f9a97d2abd648d825d07b545a933eae345
  1. cmd/
  2. examples/
  3. internal/
  4. lib/
  5. runtime/
  6. services/
  7. test/
  8. .gitignore
  9. AUTHORS
  10. CONTRIBUTORS
  11. envvar.go
  12. envvar_test.go
  13. LICENSE
  14. PATENTS
  15. README.md
  16. VERSION
README.md

Vanadium

This repository contains a reference implementation of the Vanadium APIs.

Unlike the APIs in https://github.com/vanadium/go.v23, which promises to provide backward compatibility this repository makes no such promises.