| 1080 | |
| 1081 | |
| 1082 | int collect_string(void *element_, element_count, void *info_) |
| 1083 | { |
| 1084 | String *element= static_cast<String*>(element_); |
| 1085 | TREE_INFO *info= static_cast<TREE_INFO*>(info_); |
| 1086 | if (info->found) |
| 1087 | info->str->append(','); |
| 1088 | else |
| 1089 | info->found = 1; |
| 1090 | info->str->append('\''); |
| 1091 | if (info->str->append_for_single_quote(element)) |
| 1092 | return 1; |
| 1093 | info->str->append('\''); |
| 1094 | return 0; |
| 1095 | } // collect_string |
| 1096 | |
| 1097 | |
| 1098 | int collect_real(void *element_, element_count, void *info_) |
nothing calls this directly
no test coverage detected