[IR] add testdata for irJsText

This commit is contained in:
Zalim Bashorov
2020-11-10 15:50:58 +03:00
committed by teamcityserver
parent 68b17fe55b
commit cdc74304c7
27 changed files with 516 additions and 0 deletions
@@ -0,0 +1,25 @@
fun testBinaryPlus(d: dynamic): dynamic {
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
}
fun testBinaryMinus(d: dynamic): dynamic {
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
}
fun testMul(d: dynamic): dynamic {
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
}
fun testDiv(d: dynamic): dynamic {
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
}
fun testMod(d: dynamic): dynamic {
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
}