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.
20 lines
510 B
20 lines
510 B
9 years ago
|
'use strict';
|
||
|
// Refs: https://github.com/nodejs/node/issues/2734
|
||
|
require('../common');
|
||
|
const assert = require('assert');
|
||
|
const vm = require('vm');
|
||
|
const sandbox = {};
|
||
|
|
||
|
Object.defineProperty(sandbox, 'prop', {
|
||
|
get() {
|
||
|
return 'foo';
|
||
|
}
|
||
|
});
|
||
|
|
||
|
const descriptor = Object.getOwnPropertyDescriptor(sandbox, 'prop');
|
||
|
const context = vm.createContext(sandbox);
|
||
|
const code = 'Object.getOwnPropertyDescriptor(this, "prop");';
|
||
|
const result = vm.runInContext(code, context);
|
||
|
|
||
|
assert.strictEqual(result, descriptor);
|