Generates all possible regular expressions (within the parameters), calling HandleRegexp for each one.
| 65 | // Generates all possible regular expressions (within the parameters), |
| 66 | // calling HandleRegexp for each one. |
| 67 | void RegexpGenerator::Generate() { |
| 68 | std::vector<std::string> postfix; |
| 69 | GeneratePostfix(&postfix, 0, 0, 0); |
| 70 | } |
| 71 | |
| 72 | // Generates random regular expressions, calling HandleRegexp for each one. |
| 73 | void RegexpGenerator::GenerateRandom(int32_t seed, int n) { |
no outgoing calls