Esempio n. 1
0
 public static JNode Parse(JsonValue data)
 {
     return(JNodeHjson.Parse(data));
 }
Esempio n. 2
0
 public static void UpdateFromHjson(this JNode node, string hjson, bool clearLists = true)
 {
     node.Merge(JNodeHjson.Parse(hjson), clearLists);
 }
Esempio n. 3
0
 public static JNode Parse(string json)
 {
     return(JNodeHjson.Parse(json));
 }