Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/tests/iojs/method/a.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/tests/iojs/method/a.js')
-rwxr-xr-xutils/tests/iojs/method/a.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/utils/tests/iojs/method/a.js b/utils/tests/iojs/method/a.js
deleted file mode 100755
index 69c48af..0000000
--- a/utils/tests/iojs/method/a.js
+++ /dev/null
@@ -1,12 +0,0 @@
-exports.foo = function () {
- return this;
-};
-exports.set = function (x) {
- this.x = x;
-};
-exports.get = function () {
- return this.x;
-};
-exports.getClosed = function () {
- return exports.x;
-};