(s string)
| 300 | } |
| 301 | |
| 302 | func isJSONStringLiteral(s string) bool { |
| 303 | if len(s) < 2 || s[0] != '"' { |
| 304 | return false |
| 305 | } |
| 306 | |
| 307 | var v string |
| 308 | return json.Unmarshal([]byte(s), &v) == nil |
| 309 | } |
| 310 | |
| 311 | func isBareGraphQLLiteral(s string) bool { |
| 312 | switch s { |
no outgoing calls
no test coverage detected