mirror of
https://github.com/nodejs/node.git
synced 2025-04-29 06:19:07 +00:00

Refs: https://github.com/nodejs/node/issues/34606 PR-URL: https://github.com/nodejs/node/pull/34673 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
17 lines
418 B
JavaScript
17 lines
418 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const vm = require('vm');
|
|
|
|
// Regression test for https://github.com/nodejs/node/issues/34606
|
|
|
|
const handler = {
|
|
getOwnPropertyDescriptor: common.mustCallAtLeast(() => {
|
|
return {};
|
|
})
|
|
};
|
|
|
|
const proxy = new Proxy({}, handler);
|
|
assert.throws(() => vm.runInNewContext('p = 6', proxy),
|
|
/getOwnPropertyDescriptor/);
|