We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, I've been playing around with this and it looks really cool! However, I think I have discovered what I think is an issue:
Write the following message to the file Foo.proto:
Foo.proto
message FooProto { optional string msg = 1; }
Now complication fails since ScalaPB attempts to generate two files with the same same, one for the descriptor, one for the message.
Is this something that can be fixed by telling the compiler via a flag to generate only one file?
Given the same input, the Google's Java compiler outputs valid code.
The text was updated successfully, but these errors were encountered:
36cbc9c
No branches or pull requests
Hi,
I've been playing around with this and it looks really cool! However, I think I have discovered what I think is an issue:
Write the following message to the file
Foo.proto
:Now complication fails since ScalaPB attempts to generate two files with the same same, one for the descriptor, one for the message.
Is this something that can be fixed by telling the compiler via a flag to generate only one file?
Given the same input, the Google's Java compiler outputs valid code.
The text was updated successfully, but these errors were encountered: