mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

PR-URL: https://github.com/nodejs/node/pull/8622 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yorkie Liu <yorkiefixer@gmail.com> Reviewed-By: Jackson Tian <shvyo1987@gmail.com> Reviewed-By: Johan Bergström <bugs@bergstroem.nu> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Teddy Katz <teddy.katz@gmail.com>
17 lines
568 B
JavaScript
17 lines
568 B
JavaScript
'use strict';
|
|
require('../common');
|
|
var assert = require('assert');
|
|
var vm = require('vm');
|
|
|
|
// The sandbox should have its own Symbol constructor.
|
|
var sandbox = {};
|
|
vm.runInNewContext('this.Symbol = Symbol', sandbox);
|
|
assert.strictEqual(typeof sandbox.Symbol, 'function');
|
|
assert.notStrictEqual(sandbox.Symbol, Symbol);
|
|
|
|
// Unless we copy the Symbol constructor explicitly, of course.
|
|
sandbox = { Symbol: Symbol };
|
|
vm.runInNewContext('this.Symbol = Symbol', sandbox);
|
|
assert.strictEqual(typeof sandbox.Symbol, 'function');
|
|
assert.strictEqual(sandbox.Symbol, Symbol);
|