JS tests: fix testData files

This commit is contained in:
Zalim Bashorov
2014-09-30 23:18:48 +04:00
parent 9ac193407b
commit 5a63e34c19
18 changed files with 29 additions and 108 deletions
@@ -33,6 +33,4 @@ public fun Input.copyTo(output: Output, size: Int): Int {
return output.doOutput(this.data())
}
public inline fun <T, R> with(receiver: T, f: T.() -> R): R = receiver.f()
public inline fun with2<T>(receiver : T, inlineOptions(ONLY_LOCAL_RETURN) body : T.() -> Unit) : Unit = {receiver.body()}()