[FIR JS] Fix current tests

This commit is contained in:
Nikolay Lunyak
2022-03-28 11:38:26 +03:00
committed by teamcity
parent c2cecb2818
commit 62ec19bda2
50 changed files with 1277 additions and 2 deletions
@@ -0,0 +1,8 @@
fun testArrayAssignment(d: dynamic) {
d["KEY"] = 1 /*~> Unit */
}
fun testArrayAssignmentFake(d: dynamic) {
d.set("KEY", 2) /*~> Unit */
}