| 1724 | static std::string var_parse_to_string( VAR_PARSE_VAR const * parse, bool debug = false ); |
| 1725 | |
| 1726 | static std::string var_parse_to_string( VAR_PARSE_STRING * string, bool debug ) |
| 1727 | { |
| 1728 | std::string result; |
| 1729 | if ( debug ) result += "'"; |
| 1730 | result += object_str( string->s ) ? object_str( string->s ) : ""; |
| 1731 | if ( debug ) result += "'"; |
| 1732 | return result; |
| 1733 | } |
| 1734 | static std::string var_parse_to_string( VAR_PARSE_GROUP * group, bool debug ) |
| 1735 | { |
| 1736 | std::string result; |
no test coverage detected