(str string)
| 185 | } |
| 186 | |
| 187 | func ParseFieldType(str string) (t FieldType, ok bool) { |
| 188 | v, ok := fieldTypeByString[str] |
| 189 | return v, ok |
| 190 | } |
| 191 | |
| 192 | const RepeatedKeyword = "repeated" |
| 193 | const RepeatedKeywordLen = len(RepeatedKeyword) |
no outgoing calls
no test coverage detected