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

6 lines
109 B
JavaScript
Vendored

function A(value) {
this.value = value;
}
A.prototype.bar = function() { return "A.bar " + this.value; };