Write %%begin code to lex.yy.cpp
| 2338 | |
| 2339 | /// Write %%begin code to lex.yy.cpp |
| 2340 | void Reflex::write_section_begin() |
| 2341 | { |
| 2342 | if (!options["flex"].empty()) |
| 2343 | *out << |
| 2344 | " YY_USER_INIT\n"; |
| 2345 | if (!section_begin.empty()) |
| 2346 | write_code(section_begin); |
| 2347 | } |
| 2348 | |
| 2349 | /// Write perf_report code to lex.yy.cpp |
| 2350 | void Reflex::write_perf_report() |