(noIn)
| 2008 | // Start the precedence parser. |
| 2009 | |
| 2010 | function parseExprOps(noIn) { |
| 2011 | return parseExprOp(parseMaybeUnary(noIn), -1, noIn); |
| 2012 | } |
| 2013 | |
| 2014 | // Parse binary operators with the operator precedence parsing |
| 2015 | // algorithm. `left` is the left-hand side of the operator. |
no test coverage detected