! * \brief Escape a string for JSON output. * \deprecated Use EscapeStringJSON instead. * \param value The input string * \return The escaped string, quoted with double quotes */
| 881 | * \return The escaped string, quoted with double quotes |
| 882 | */ |
| 883 | [[deprecated("Use EscapeStringJSON instead")]] inline String EscapeString(const String& value) { |
| 884 | return EscapeStringJSON(value); |
| 885 | } |
| 886 | |
| 887 | /*! |
| 888 | * \brief Return a Python-style escaped string representation. |
nothing calls this directly
no test coverage detected