Dave Reed
Dave Reed
Here's my two cents :) It is oh so tempting to expand on this libraries features, but we have to convince even ourselves that this is merely a mapping to...
For what it's worth I found a workaround, which is to have a special version of the `infix` rule that is specifically for the ` $"{m.Message} ({m.Location})"))); } public class...
@sebastienros Didn't know you were here! HAI!
The problem is that a typed array does not JSON serialize the way you'd expect: `> JSON.stringify(new Uint8Array(3))` `'{"0":0,"1":0,"2":0}'` I would have wanted: `[0,0,0]` I get that there are efficiencies...
Thanks for the quick answer. I really like how on top of issues and PRs you are! All the more reason I want to use this lib :) I don't...
I looked into this a bit deeper and it's a little more subtle than I first realized. So, the Google library will already handle looking for Extensions within a DescriptorPool....
I think my last comment still applies, but regular extensions don't "already work" like I thought. At first I thought it was just because you didn't pass the DescriptorPool to...
I've just discovered a SIGSEGV in our systems as well. I can't easily provide sample code for it though, it's a rare occurrence in a high throughput, highly concurrent system.
@webmakersteve found the cause, working on a PR!
PR with a reproduction script: https://github.com/fuwaneko/node-protobuf/pull/87