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

An upcoming custom lint rule will provide slightly more strict enforcement of argument alignment for multiline function calls. Adjust existing code to conform. PR-URL: https://github.com/nodejs/node/pull/8642 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
26 lines
553 B
JavaScript
26 lines
553 B
JavaScript
'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');
|