17a8fd2c0b
So that all irText tests could be found in one place
9 lines
119 B
Kotlin
Vendored
9 lines
119 B
Kotlin
Vendored
fun testArrayAssignment(d: dynamic) {
|
|
d["KEY"] = 1
|
|
}
|
|
|
|
fun testArrayAssignmentFake(d: dynamic) {
|
|
d.set("KEY", 2)
|
|
}
|
|
|