(ch rune)
| 501 | } |
| 502 | |
| 503 | func (p *regExpParser) isClassContentExit(ch rune) bool { |
| 504 | return ch == ']' || p.pos() >= p.end |
| 505 | } |
| 506 | |
| 507 | // ClassRanges ::= '^'? (ClassAtom ('-' ClassAtom)?)* |
| 508 | func (p *regExpParser) scanClassRanges() { |
no test coverage detected