(node *ast.Node)
| 14936 | } |
| 14937 | |
| 14938 | func (c *Checker) getTargetOfAccessExpression(node *ast.Node) *ast.Symbol { |
| 14939 | if ast.IsBinaryExpression(node.Parent) { |
| 14940 | expr := node.Parent.AsBinaryExpression() |
| 14941 | if expr.Left == node && expr.OperatorToken.Kind == ast.KindEqualsToken { |
| 14942 | return c.getTargetOfAliasLikeExpression(expr.Right) |
| 14943 | } |
| 14944 | } |
| 14945 | return nil |
| 14946 | } |
| 14947 | |
| 14948 | func (c *Checker) getModuleSpecifierForImportOrExport(node *ast.Node) *ast.Node { |
| 14949 | switch node.Kind { |
no test coverage detected