(noComma, noIn)
| 1934 | // or the `in` operator (in for loops initalization expressions). |
| 1935 | |
| 1936 | function parseExpression(noComma, noIn) { |
| 1937 | return parseMaybeAssign(noIn); |
| 1938 | } |
| 1939 | |
| 1940 | // Used for constructs like `switch` and `if` that insist on |
| 1941 | // parentheses around their expression. |
no test coverage detected