blob: 69c48af67a8111d53aff8fd056d370c607b92538 [file] [log] [blame]
exports.foo = function () {
return this;
};
exports.set = function (x) {
this.x = x;
};
exports.get = function () {
return this.x;
};
exports.getClosed = function () {
return exports.x;
};