qitab / cl-protobufs

Common Lisp protocol buffer implementation.
MIT License
82 stars 17 forks source link

Have cl-protobufs print and parse text-format without type #327

Closed copybara-service[bot] closed 3 years ago

copybara-service[bot] commented 3 years ago

Have cl-protobufs print and parse text-format without type

Currently, cl-protobufs prints:

ProtoTypeName { ... }

when print-text-format is called. This is not in the text-format spec, so it should not be printed. Similiarly, we remove the bit of code that checks for ProtoTypeName when parsing a message in text-format

It's still not a proper text-format printer/parser but this makes it closer...