Files
kotlin-fork/js/js.translator/testData/box/native/passExtLambdaFromNative.js
T
2016-09-29 12:00:42 +03:00

8 lines
139 B
JavaScript
Vendored

function A(v) {
this.v = v;
}
function nativeBox(b) {
return b.bar(new A("foo"), function(i, s) { return "" + this.v + s + i })
}