Joe Tsai
Joe Tsai
For prior of ES6 float formatting in Go (which is the same as ECMA-262, which is the same as V8), see https://github.com/golang/go/commit/92b3e3651dc44f54b458f171f641779f10fbaec0 and golang/go#14135.
\cc @neild. I vaguely recall some discussion in the past about whether to expose this or not. I don't remember the details, but there are some complexities involved in whether...
Go only adds options that the other major language implementations add. There's no such option in C++: https://developers.google.com/protocol-buffers/docs/reference/cpp/google.protobuf.util.json_util#JsonPrintOptions
> Is there example code for constructing protoregistry.Types? > Is there example code for moving to|from anypb.Any using TypeURL as the key? No and no. Examples and documentation for all...
If you have direct access to `AdderRequest`, is there a reason to not use that concrete type instead of creating a dynamic message? ```go pm := new(protos.AdderRequest) if err :=...
Fundamentally, the generated grpc stub expects a concrete message type in its API. Thus you either have to: * Determine the concrete message type from the grpc API (either through...
Great to hear! Let's keep this issue as I agree that the documentation can be better improved.
My thinking was to introduce the `MyExtension_field` variable as the long-term replacement for `E_MyExtension` and mark `E_MyExtension` as deprecated.
We decided that this does not block v2 release. We still want to do this, but not at the present moment. Our rationale is as follows: * It is *already*...
Variations of what you suggest is already implemented in v2. The v2 generator does not emit any XXX fields or methods.