ValidateHomogeneousAggregateLiterals checks that all list and map literals entries have the same types, i.e. no mixed list element types or mixed map key or map value types. Note: the string format call relies on a mixed element type list for ease of use, so this check skips all literals which occu
()
| 217 | // Note: the string format call relies on a mixed element type list for ease of use, so this check skips all |
| 218 | // literals which occur within string format calls. |
| 219 | func ValidateHomogeneousAggregateLiterals() ASTValidator { |
| 220 | return homogeneousAggregateLiteralValidator{} |
| 221 | } |
| 222 | |
| 223 | // ValidateComprehensionNestingLimit ensures that comprehension nesting does not exceed the specified limit. |
| 224 | // |
no outgoing calls