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