(expr)
| 1990 | // Return true if provided expression is LeftHandSideExpression |
| 1991 | |
| 1992 | function isLeftHandSide(expr) { |
| 1993 | return expr.type === Syntax.Identifier || expr.type === Syntax.MemberExpression; |
| 1994 | } |
| 1995 | |
| 1996 | // 11.1.4 Array Initialiser |
| 1997 |
no outgoing calls
no test coverage detected