mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
535 B
25 lines
535 B
'use strict';
|
|
|
|
require('../common');
|
|
var assert = require('assert');
|
|
|
|
var vm = require('vm');
|
|
|
|
var symbol = Symbol();
|
|
|
|
function Document() {
|
|
this[symbol] = 'foo';
|
|
}
|
|
|
|
Document.prototype.getSymbolValue = function() {
|
|
return this[symbol];
|
|
};
|
|
|
|
var context = new Document();
|
|
vm.createContext(context);
|
|
|
|
assert.equal(context.getSymbolValue(), 'foo',
|
|
'should return symbol-keyed value from the outside');
|
|
|
|
assert.equal(vm.runInContext('this.getSymbolValue()', context), 'foo',
|
|
'should return symbol-keyed value from the inside');
|
|
|