(t)
| 34813 | return parseBinaryExpressionRest(precedence, leftOperand, pos); |
| 34814 | } |
| 34815 | function isInOrOfKeyword(t) { |
| 34816 | return t === 101 /* SyntaxKind.InKeyword */ || t === 160 /* SyntaxKind.OfKeyword */; |
| 34817 | } |
| 34818 | function parseBinaryExpressionRest(precedence, leftOperand, pos) { |
| 34819 | while (true) { |
| 34820 | // We either have a binary operator here, or we're finished. We call |
no outgoing calls
no test coverage detected