type github.com/golang/protobuf/proto.ParseError

7 uses

	github.com/golang/protobuf/proto (current package)
		text_decode.go#L25: type ParseError struct {
		text_decode.go#L32: func (e *ParseError) Error() string {
		text_decode.go#L56: 			return &ParseError{Message: err.Error()}
		text_decode.go#L77: 	err      *ParseError
		text_decode.go#L475: func (p *textParser) checkForColon(fd protoreflect.FieldDescriptor) *ParseError {
		text_decode.go#L534: func (p *textParser) errorf(format string, a ...interface{}) *ParseError {
		text_decode.go#L535: 	pe := &ParseError{fmt.Sprintf(format, a...), p.cur.line, p.cur.offset}