Returns true if the given string is suitable as an identifier.
(name string)
| 258 | |
| 259 | // Returns true if the given string is suitable as an identifier. |
| 260 | func validIdentifierName(name string) bool { |
| 261 | return validIdentifierRegexp.MatchString(name) |
| 262 | } |
| 263 | |
| 264 | // Pseudo Column type returned by table.C(name) |
| 265 | type deferredLookupColumn struct { |
no outgoing calls
no test coverage detected