Files
cappuccino/Tests/Manual/CommonJSModules/tests/method/a.js
T

13 lines
205 B
JavaScript

exports.foo = function () {
return this;
};
exports.set = function (x) {
this.x = x;
};
exports.get = function () {
return this.x;
};
exports.getClosed = function () {
return exports.x;
};