(node *ast.Node)
| 14900 | } |
| 14901 | |
| 14902 | func (c *Checker) getTargetOfExportAssignment(node *ast.Node) *ast.Symbol { |
| 14903 | resolved := c.getTargetOfAliasLikeExpression(node.Expression()) |
| 14904 | c.markSymbolOfAliasDeclarationIfTypeOnly(node, nil) |
| 14905 | return resolved |
| 14906 | } |
| 14907 | |
| 14908 | func (c *Checker) getTargetOfBinaryExpression(node *ast.Node) *ast.Symbol { |
| 14909 | resolved := c.getTargetOfAliasLikeExpression(node.AsBinaryExpression().Right) |
no test coverage detected