Converts Regexp to Prog.
| 1184 | |
| 1185 | // Converts Regexp to Prog. |
| 1186 | Prog* Regexp::CompileToProg(int64_t max_mem) { |
| 1187 | return Compiler::Compile(this, false, max_mem); |
| 1188 | } |
| 1189 | |
| 1190 | Prog* Regexp::CompileToReverseProg(int64_t max_mem) { |
| 1191 | return Compiler::Compile(this, true, max_mem); |
no outgoing calls