The comment is outdated, function declarations have nothing to do with defineProperties. PR-URL: https://github.com/nodejs/node/pull/12048 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: James M Snell <jasnell@gmail.com>
25 lines
889 B
JavaScript
25 lines
889 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const assert = require('assert');
|
|
|
|
const vm = require('vm');
|
|
const o = vm.createContext({ console: console });
|
|
|
|
// Function declaration and expression should both be copied to the
|
|
// sandboxed context.
|
|
let code = 'var a = function() {};\n';
|
|
code += 'function b(){}\n';
|
|
|
|
// Grab the global b function as the completion value, to ensure that
|
|
// we are getting the global function, and not some other thing
|
|
code += '(function(){return this})().b;\n';
|
|
|
|
const res = vm.runInContext(code, o, 'test');
|
|
|
|
assert.strictEqual(typeof res, 'function', 'result should be function');
|
|
assert.strictEqual(res.name, 'b', 'res should be named b');
|
|
assert.strictEqual(typeof o.a, 'function', 'a should be function');
|
|
assert.strictEqual(typeof o.b, 'function', 'b should be function');
|
|
assert.strictEqual(res, o.b, 'result should be global b function');
|
|
|
|
console.log('ok');
|