(expr)
| 5303 | // Return true if provided expression is LeftHandSideExpression |
| 5304 | |
| 5305 | function isLeftHandSide(expr) { |
| 5306 | return expr.type === Syntax.Identifier || expr.type === Syntax.MemberExpression; |
| 5307 | } |
| 5308 | |
| 5309 | function isAssignableLeftHandSide(expr) { |
| 5310 | return isLeftHandSide(expr) || expr.type === Syntax.ObjectPattern || expr.type === Syntax.ArrayPattern; |
no outgoing calls
no test coverage detected