mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
bb29405904
PR-URL: https://github.com/nodejs/node/pull/14162 Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Timothy Gu <timothygu99@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
21 lines
410 B
JavaScript
21 lines
410 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);
|