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
ScalaBuff will correctly generate FooMsg and BarMsg under the same package com.company.proto, and therefore the reference from BarMsg to FooMsg should be either unqualified (just FooMsg) or the full com.company.proto.FooMsg. However, currently, ScalaBuff emits foo.FooMsg which does not exist.
The text was updated successfully, but these errors were encountered:
@SandroGrzicic thanks for fixing this. We haven't heard anything for a while, and wanted to have a shot at addressing few other gaps (lenses, one-ofs, custom types), so we started http://trueaccord.github.io/ScalaPB/
Looks good - having more similar projects is always a good thing, especially since your project is using protoc itself instead of having a custom parser as in ScalaBuff. Good luck!
Example:
foo.proto:
bar.proto:
ScalaBuff will correctly generate
FooMsg
andBarMsg
under the same packagecom.company.proto
, and therefore the reference fromBarMsg
toFooMsg
should be either unqualified (justFooMsg
) or the fullcom.company.proto.FooMsg
. However, currently, ScalaBuff emitsfoo.FooMsg
which does not exist.The text was updated successfully, but these errors were encountered: