psi2ir: dynamic array element get/set

This commit is contained in:
Dmitry Petrov
2019-02-11 14:17:06 +03:00
parent 9a2bd5f4e6
commit fbbe4f6e92
12 changed files with 273 additions and 24 deletions
@@ -0,0 +1,7 @@
fun testArrayIncrementDecrement(d: dynamic) {
val t1 = ++d["prefixIncr"]
val t2 = --d["prefixDecr"]
val t3 = d["postfixIncr"]++
val t4 = d["postfixDecr"]--
}