Return true if the specified string fully matches `IdentifierRegexp`.
(s string)
| 2 | |
| 3 | // Return true if the specified string fully matches `IdentifierRegexp`. |
| 4 | func IsFullIdentifier(s string) bool { |
| 5 | return anchoredIdentifierRegexp.MatchString(s) |
| 6 | } |
no outgoing calls
searching dependent graphs…