(colName string, falseColumn ...string)
| 395 | } |
| 396 | |
| 397 | func isIgnoreFields(colName string, falseColumn ...string) bool { |
| 398 | for _, v := range falseColumn { |
| 399 | if colName == v { |
| 400 | return false |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | _, ok := ignoreColumns[colName] |
| 405 | return ok |
| 406 | } |
| 407 | |
| 408 | var newlineIdentifier = []struct{ old, new string }{ |
| 409 | {"\r\n", "\n//"}, |
no outgoing calls
no test coverage detected
searching dependent graphs…