-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
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
Remove scalapb #64
Remove scalapb #64
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks good, the build failed though
src/test/scala/higherkindness/skeuomorph/protobuf/ProtobufSpec.scala
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm observing some concerning list.head
, could we avoid them?
|
||
final case class NativeOneOfField(name: String, tpe: NativeOneOf) extends NativeFieldF | ||
|
||
sealed trait NativeDescriptor |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the reason of using this ADT? why don't we use the ProtobufF
directly? It looks like we have a 1 to 1 mapping in here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was my first approach actually, but when I tried to express the conversion Coalgebra[ProtobufF, FileDescriptorProto]
I realized that FileDescriptorProto
is not algebraic enough. I can try again.
Closed in favor of #66 |
This PR removes scalapb. I need to organize all the PRs related to protobuf.