mirror of
https://github.com/nodejs/node.git
synced 2024-11-25 16:34:05 +01:00
b73402d97a
PR-URL: https://github.com/nodejs/node/pull/10319 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
21 lines
408 B
JavaScript
21 lines
408 B
JavaScript
'use strict';
|
|
// Ref: https://github.com/nodejs/node/issues/5350
|
|
|
|
require('../common');
|
|
const vm = require('vm');
|
|
const assert = require('assert');
|
|
|
|
const base = {
|
|
propBase: 1
|
|
};
|
|
|
|
const sandbox = Object.create(base, {
|
|
propSandbox: {value: 3}
|
|
});
|
|
|
|
const context = vm.createContext(sandbox);
|
|
|
|
const result = vm.runInContext('this.hasOwnProperty("propBase");', context);
|
|
|
|
assert.strictEqual(result, false);
|