Add "add" extension function for Json class.

This commit is contained in:
pTalanov
2012-03-10 17:44:01 +04:00
parent dac63773ce
commit 6fd6ac0231
+4 -1
View File
@@ -15,4 +15,7 @@ library("jsonGet")
fun Json.get(paramName : String) : Any? = js.noImpl
library("jsonFromTuples")
fun json(vararg pairs : Tuple2<String, Any?>) : Json = js.noImpl
fun json(vararg pairs : Tuple2<String, Any?>) : Json = js.noImpl
library("jsonAddProperties")
fun Json.add(other : Json) : Json = js.noImpl