[protobuf] Semantics for options

2016-12-30 Thread Udo Schneider
All, I'm currently working on a protobuf implementation for Smalltalk. While working on the parser I hit an issue where I'm unsure about the semantics of options. E.g: enum EnumDigits { option option1 = true; ZERO = 0; option option2 = true; ONE = 1; TWO = 2; } Do both options apply

Re: [protobuf] Semantics for options

2017-01-02 Thread Udo Schneider
> On 30 Dec 2016, at 20:06, Tim Kientzle wrote: > > When building a new implementation, you can avoid writing your own parser by > building a "plugin" for protoc. That lets you focus on the code generation > and leverage the existing parsing (and normalization) performed by proton. I saw this