feat: add polyfills insertion for ES Next used features

This commit is contained in:
Artem Kobzar
2022-02-16 10:49:11 +00:00
committed by Space
parent 76ff717091
commit 804eb61bf0
80 changed files with 8769 additions and 6552 deletions
@@ -0,0 +1,20 @@
// WITH_STDLIB
// TARGET_BACKEND: JS_IR
// FILE: main.js
Int32Array.prototype.fill = function fill(value) {
fill.called = true;
for (var i = 0; i < this.length; i++) {
this[i] = value;
}
return this
}
// FILE: main.kt
fun box(): String {
val int = IntArray(4).apply { fill(42) }
assertEquals(int.joinToString(", "), "42, 42, 42, 42")
assertEquals(js("Int32Array.prototype.fill.called"), true)
return "OK"
}