(name string)
| 672 | } |
| 673 | |
| 674 | func isIdentifier(name string) bool { |
| 675 | if name == "" { |
| 676 | return false |
| 677 | } |
| 678 | for i, c := range name { |
| 679 | if !unicode.IsLetter(c) && c != '_' && (i == 0 || !unicode.IsDigit(c)) { |
| 680 | return false |
| 681 | } |
| 682 | } |
| 683 | return true |
| 684 | } |
| 685 | |
| 686 | func isQuoted(s string) bool { |
| 687 | if s == "" { |
no outgoing calls
no test coverage detected
searching dependent graphs…