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

8 lines
116 B
JavaScript
Vendored

function Wow() {
this.x = 1;
this.y = 2;
}
Wow.prototype.sum = function () {
return this.x + this.y;
};