(s string)
| 81 | } |
| 82 | |
| 83 | func newTextParser(s string) *textParser { |
| 84 | p := new(textParser) |
| 85 | p.s = s |
| 86 | p.line = 1 |
| 87 | p.cur.line = 1 |
| 88 | return p |
| 89 | } |
| 90 | |
| 91 | func (p *textParser) unmarshalMessage(m protoreflect.Message, terminator string) (err error) { |
| 92 | md := m.Descriptor() |
no outgoing calls
no test coverage detected
searching dependent graphs…