()
| 3513 | } |
| 3514 | |
| 3515 | func (p *Parser) isIndexSignature() bool { |
| 3516 | return p.token == ast.KindOpenBracketToken && p.lookAhead((*Parser).nextIsUnambiguouslyIndexSignature) |
| 3517 | } |
| 3518 | |
| 3519 | func (p *Parser) nextIsUnambiguouslyIndexSignature() bool { |
| 3520 | // The only allowed sequence is: |
no test coverage detected