mirror of https://github.com/lukechilds/node.git
Browse Source
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>v6.x
AnnaMag
8 years ago
committed by
Myles Borins
1 changed files with 20 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||
'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); |
Loading…
Reference in new issue