You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When compiling a protobuf that has a json_name param, the name must be a valid variable name format, or else it will throw an exception like the following example:
Message
message Foo {
string bar = 1 [json_name="bar:baz"]
}
When compiling a protobuf that has a
json_name
param, the name must be a valid variable name format, or else it will throw an exception like the following example:Message
Exception
I assume the fix should instead use
object['bar:baz']
instead of the dot notationThe text was updated successfully, but these errors were encountered: