(expr ast.Expr, name string)
| 1155 | } |
| 1156 | |
| 1157 | func isIdent(expr ast.Expr, name string) bool { |
| 1158 | ident, ok := expr.(*ast.Ident) |
| 1159 | return ok && ident.Name == name |
| 1160 | } |
| 1161 | |
| 1162 | func setOf[T comparable](xs []T) map[T]struct{} { |
| 1163 | if len(xs) == 0 { |
no outgoing calls
no test coverage detected