17a8fd2c0b
So that all irText tests could be found in one place
13 lines
201 B
Kotlin
Vendored
13 lines
201 B
Kotlin
Vendored
fun testArrayAccess1(d: dynamic): dynamic {
|
|
return d["KEY"]
|
|
}
|
|
|
|
fun testArrayAccess2(d: dynamic): dynamic {
|
|
return d()["KEY"]
|
|
}
|
|
|
|
fun testArrayAccess3(d: dynamic): dynamic {
|
|
return d.get("KEY")
|
|
}
|
|
|