()
| 6299 | } |
| 6300 | |
| 6301 | func (p *Parser) isBinaryOperator() bool { |
| 6302 | if p.inDisallowInContext() && p.token == ast.KindInKeyword { |
| 6303 | return false |
| 6304 | } |
| 6305 | return ast.GetBinaryOperatorPrecedence(p.token) != ast.OperatorPrecedenceInvalid |
| 6306 | } |
| 6307 | |
| 6308 | func (p *Parser) isValidHeritageClauseObjectLiteral() bool { |
| 6309 | return p.lookAhead((*Parser).nextIsValidHeritageClauseObjectLiteral) |
no test coverage detected