Files
kotlin-fork/js/js.translator/testData/box/jsExport/dataClass.js
T
2021-10-25 00:14:19 +03:00

19 lines
460 B
JavaScript
Vendored

$kotlin_test_internal$.beginModule();
module.exports = function() {
var Point = require("main").api.Point;
var p = new Point(3, 7);
return {
"copy00": p.copy().toString(),
"copy01": p.copy(undefined, 11).toString(),
"copy10": p.copy(15).toString(),
"copy11": p.copy(13, 11).toString(),
"component1": p.component1(),
"component2": p.component2()
};
};
$kotlin_test_internal$.endModule("lib");