summaryrefslogtreecommitdiff
path: root/test/parallel/test-vm-static-this.js
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2016-04-01 22:20:55 -0700
committerRich Trott <rtrott@gmail.com>2016-04-04 20:25:09 -0700
commitd416a59f91b97410684e4b34c18f0e8ff6d92f0c (patch)
treedf24c20c9386407896072970d8ac950bae66c40f /test/parallel/test-vm-static-this.js
parentae2be27add3c0597a2555efab3cd9370199c945a (diff)
downloadandroid-node-v8-d416a59f91b97410684e4b34c18f0e8ff6d92f0c.tar.gz
android-node-v8-d416a59f91b97410684e4b34c18f0e8ff6d92f0c.tar.bz2
android-node-v8-d416a59f91b97410684e4b34c18f0e8ff6d92f0c.zip
test: make use of globals explicit
Use `global` to be explicit that a global variable is intended. PR-URL: https://github.com/nodejs/node/pull/6014 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/parallel/test-vm-static-this.js')
-rw-r--r--test/parallel/test-vm-static-this.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/parallel/test-vm-static-this.js b/test/parallel/test-vm-static-this.js
index a5f5ad9415..143e4e1221 100644
--- a/test/parallel/test-vm-static-this.js
+++ b/test/parallel/test-vm-static-this.js
@@ -14,25 +14,25 @@ assert.throws(function() {
vm.runInThisContext('throw new Error(\'test\');');
}, /test/);
-hello = 5;
+global.hello = 5;
vm.runInThisContext('hello = 2');
-assert.equal(2, hello);
+assert.equal(2, global.hello);
console.error('pass values');
-code = 'foo = 1;' +
+var code = 'foo = 1;' +
'bar = 2;' +
'if (typeof baz !== \'undefined\') throw new Error(\'test fail\');';
-foo = 2;
-obj = { foo: 0, baz: 3 };
+global.foo = 2;
+global.obj = { foo: 0, baz: 3 };
/* eslint-disable no-unused-vars */
var baz = vm.runInThisContext(code);
/* eslint-enable no-unused-vars */
-assert.equal(0, obj.foo);
-assert.equal(2, bar);
-assert.equal(1, foo);
+assert.equal(0, global.obj.foo);
+assert.equal(2, global.bar);
+assert.equal(1, global.foo);
console.error('call a function');
-f = function() { foo = 100; };
+global.f = function() { global.foo = 100; };
vm.runInThisContext('f()');
-assert.equal(100, foo);
+assert.equal(100, global.foo);