mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
614 B
26 lines
614 B
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
|
|
var vm = require('vm');
|
|
|
|
var code =
|
|
'Object.defineProperty(this, "f", {\n' +
|
|
' get: function() { return x; },\n' +
|
|
' set: function(k) { x = k; },\n' +
|
|
' configurable: true,\n' +
|
|
' enumerable: true\n' +
|
|
'});\n' +
|
|
'g = f;\n' +
|
|
'f;\n';
|
|
|
|
var x = {};
|
|
var o = vm.createContext({ console: console, x: x });
|
|
|
|
var res = vm.runInContext(code, o, 'test');
|
|
|
|
assert(res);
|
|
assert.equal(typeof res, 'object');
|
|
assert.equal(res, x);
|
|
assert.equal(o.f, res);
|
|
assert.deepStrictEqual(Object.keys(o), ['console', 'x', 'g', 'f']);
|
|
|