43 lines
1.7 KiB
Kotlin
Vendored
43 lines
1.7 KiB
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1293
|
|
// IGNORE_BACKEND: JS_IR
|
|
// IGNORE_BACKEND: JS_IR_ES6
|
|
|
|
package foo
|
|
|
|
class Fail(message: String) : Exception(message)
|
|
|
|
fun test(testName: String, actual: Any, expectedAsString: String?, expectedAsArray: Array<in Any>? = null) {
|
|
val expected = expectedAsArray ?: eval("[$expectedAsString]") as Array<in Any>
|
|
val expectedJs: dynamic = expected
|
|
val actualJs: dynamic = actual
|
|
if (expectedJs.length != actualJs.length) {
|
|
fail("Lengths do not match: ${expectedJs} vs. ${actualJs}")
|
|
}
|
|
for (index in 0..(expectedJs.length)) {
|
|
val expectedElem = expectedJs[index] as Any?
|
|
val actualElem = actualJs[index] as Any?
|
|
if (expectedElem != actualElem) {
|
|
fail("Content do not match: ${expectedJs} vs. ${actualJs}")
|
|
}
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
try {
|
|
test("arrayOf", arrayOf(0, 1, 2, 3, 4), "0, 1, 2, 3, 4")
|
|
test("booleanArrayOf", booleanArrayOf(true, false, false, true, true), "true, false, false, true, true")
|
|
test("charArray'", charArrayOf('0', '1', '2', '3', '4'), "48, 49, 50, 51, 52")
|
|
test("byteArrayOf", byteArrayOf(0, 1, 2, 3, 4), "0, 1, 2, 3, 4")
|
|
test("shortArrayOf", shortArrayOf(0, 1, 2, 3, 4), "0, 1, 2, 3, 4")
|
|
test("intArray,", intArrayOf(0, 1, 2, 3, 4), "0, 1, 2, 3, 4")
|
|
test("longArrayOf", longArrayOf(0, 1, 2, 3, 4), null, expectedAsArray = arrayOf(0L, 1L, 2L, 3L, 4L))
|
|
test("floatArrayOf", floatArrayOf(0.0f, 1.0f, 2.0f, 3.0f, 4.0f), "0.0, 1.0, 2.0, 3.0, 4.0")
|
|
test("doubleArrayOf", doubleArrayOf(0.0, 1.1, 2.2, 3.3, 4.4), "0.0, 1.1, 2.2, 3.3, 4.4")
|
|
}
|
|
catch (e: Fail) {
|
|
return e.message!!
|
|
}
|
|
|
|
return "OK"
|
|
}
|