(pos Pos)
| 229 | } |
| 230 | |
| 231 | func (p *Parser) tryParseNull(pos Pos) *NullLiteral { |
| 232 | if !p.tryConsumeKeywords(KeywordNull) { |
| 233 | return nil |
| 234 | } |
| 235 | return &NullLiteral{NullPos: pos} |
| 236 | } |
| 237 | |
| 238 | func (p *Parser) tryParseNotNull(pos Pos) (*NotNullLiteral, error) { |
| 239 | if !p.tryConsumeKeywords(KeywordNot) { |
no test coverage detected