| 1247 | // ---------------------------------------------------------------------------------------- |
| 1248 | |
| 1249 | method_record convert_tok_method_record ( |
| 1250 | const tok_method_record& rec, |
| 1251 | const unsigned long expand_tabs |
| 1252 | ) |
| 1253 | { |
| 1254 | method_record temp; |
| 1255 | |
| 1256 | temp.comment = format_comment(rec.comment, expand_tabs); |
| 1257 | temp.name = get_function_name(rec.declaration); |
| 1258 | temp.declaration = pretty_print_declaration(rec.declaration); |
| 1259 | return temp; |
| 1260 | } |
| 1261 | |
| 1262 | // ---------------------------------------------------------------------------------------- |
| 1263 |
no test coverage detected