diff options
author | Geequlim <geequlim@gmail.com> | 2017-11-03 15:32:58 +0800 |
---|---|---|
committer | Geequlim <geequlim@gmail.com> | 2017-11-07 11:52:45 +0800 |
commit | f7168bf217f810ba7da310953c043448135d0718 (patch) | |
tree | 0feed4a6cc25f049d248685c4d3b15f2e6c9ec00 /core/io/json.h | |
parent | c880302754352dce1e44bf00bf9b1ac20e71cd1d (diff) | |
download | redot-engine-f7168bf217f810ba7da310953c043448135d0718.tar.gz |
Add indent and sort keys support for JSON.print
Diffstat (limited to 'core/io/json.h')
-rw-r--r-- | core/io/json.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/io/json.h b/core/io/json.h index 893a88e264..5e1a89f069 100644 --- a/core/io/json.h +++ b/core/io/json.h @@ -64,7 +64,7 @@ class JSON { static const char *tk_name[TK_MAX]; - static String _print_var(const Variant &p_var); + static String _print_var(const Variant &p_var, const String& p_indent, int p_cur_indent, bool p_sort_keys); static Error _get_token(const CharType *p_str, int &index, int p_len, Token &r_token, int &line, String &r_err_str); static Error _parse_value(Variant &value, Token &token, const CharType *p_str, int &index, int p_len, int &line, String &r_err_str); @@ -72,7 +72,7 @@ class JSON { static Error _parse_object(Dictionary &object, const CharType *p_str, int &index, int p_len, int &line, String &r_err_str); public: - static String print(const Variant &p_var); + static String print(const Variant &p_var, const String& p_indent = "", bool p_sort_keys = true); static Error parse(const String &p_json, Variant &r_ret, String &r_err_str, int &r_err_line); }; |