(Regexp.Op op)
| 213 | // op pushes a regexp with the given op onto the stack |
| 214 | // and returns that regexp. |
| 215 | private Regexp op(Regexp.Op op) { |
| 216 | Regexp re = newRegexp(op); |
| 217 | re.flags = flags; |
| 218 | return push(re); |
| 219 | } |
| 220 | |
| 221 | // repeat replaces the top stack element with itself repeated according to |
| 222 | // op, min, max. beforePos is the start position of the repetition operator. |
no test coverage detected