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
Currently ProtoReflect() returns the reflection based protoreflect.Message, but since we are implemented protoreflect.Message on our message type directly (for now), we need to change this to:
This also means that all the generated methods like Descriptor can't just call ProtoReflect().Descriptor() because that would be self reflexive. But we can deal with that in #3.
The text was updated successfully, but these errors were encountered:
Currently
ProtoReflect()
returns the reflection basedprotoreflect.Message
, but since we are implementedprotoreflect.Message
on our message type directly (for now), we need to change this to:This also means that all the generated methods like
Descriptor
can't just callProtoReflect().Descriptor()
because that would be self reflexive. But we can deal with that in #3.The text was updated successfully, but these errors were encountered: