| 43 | |
| 44 | // Hack to expose ArrayList.removeRange(). |
| 45 | private static class Stack extends ArrayList<Regexp> { |
| 46 | @Override |
| 47 | public void removeRange(int fromIndex, int toIndex) { |
| 48 | super.removeRange(fromIndex, toIndex); |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | private final String wholeRegexp; |
| 53 | // Flags control the behavior of the parser and record information about |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…