(config, file_name)
| 186 | |
| 187 | |
| 188 | def to_file_name(config, file_name): |
| 189 | if config.use_snake_file_names: |
| 190 | return to_snake_case(file_name).replace(".cpp", ".cc") |
| 191 | return file_name |
| 192 | |
| 193 | |
| 194 | # ---- End of utilities exposed to generator ---- |
no test coverage detected
searching dependent graphs…