(node *ast.Node)
| 24050 | } |
| 24051 | |
| 24052 | func (c *Checker) isVariadicTupleElement(node *ast.Node) bool { |
| 24053 | return c.getTupleElementFlags(node)&ElementFlagsVariadic != 0 |
| 24054 | } |
| 24055 | |
| 24056 | func (c *Checker) getArrayOrTupleTargetType(node *ast.Node) *Type { |
| 24057 | readonly := c.isReadonlyTypeOperator(node.Parent) |
nothing calls this directly
no test coverage detected