()
| 196 | } |
| 197 | |
| 198 | func (p *Parser) tryParseComment() (*StringLiteral, error) { |
| 199 | if !p.tryConsumeKeywords(KeywordComment) { |
| 200 | return nil, nil |
| 201 | } |
| 202 | return p.parseString(p.Pos()) |
| 203 | } |
| 204 | |
| 205 | func (p *Parser) tryParseIfExists() (bool, error) { |
| 206 | if !p.tryConsumeKeywords(KeywordIf) { |
no test coverage detected