True if the group stack is empty.
()
| 2415 | |
| 2416 | // True if the group stack is empty. |
| 2417 | func (p *parser) emptyStack() bool { |
| 2418 | return p.stack == nil |
| 2419 | } |
| 2420 | |
| 2421 | // Start a new round for the parser state (in response to an open paren or string start) |
| 2422 | func (p *parser) startGroup(openGroup *RegexNode) { |