(containsOptional bool, optional string, required ...string)
| 295 | } |
| 296 | |
| 297 | func buildTokens(containsOptional bool, optional string, required ...string) []string { |
| 298 | if containsOptional { |
| 299 | return append(required, optional) |
| 300 | } |
| 301 | |
| 302 | return required |
| 303 | } |
| 304 | |
| 305 | func unquoteField(quoted bool) string { |
| 306 | // The outer quote of a string is already stripped out by |
no outgoing calls
no test coverage detected
searching dependent graphs…