mirror of https://github.com/lukechilds/node.git
Browse Source
This commit adds an internal util method that makes hidden values in the C++ layer visible in JS. PR-URL: https://github.com/nodejs/node/pull/3988 Reviewed-By: Trevor Norris <trev.norris@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Conflicts: lib/internal/util.jsv4.x
cjihrig
9 years ago
committed by
Myles Borins
3 changed files with 54 additions and 0 deletions
@ -0,0 +1,32 @@ |
|||
'use strict'; |
|||
// Flags: --expose_internals
|
|||
|
|||
const common = require('../common'); |
|||
const assert = require('assert'); |
|||
const internalUtil = require('internal/util'); |
|||
|
|||
function getHiddenValue(obj, name) { |
|||
return function() { |
|||
internalUtil.getHiddenValue(obj, name); |
|||
}; |
|||
} |
|||
|
|||
assert.throws(getHiddenValue(), /obj must be an object/); |
|||
assert.throws(getHiddenValue(null, 'foo'), /obj must be an object/); |
|||
assert.throws(getHiddenValue(undefined, 'foo'), /obj must be an object/); |
|||
assert.throws(getHiddenValue('bar', 'foo'), /obj must be an object/); |
|||
assert.throws(getHiddenValue(85, 'foo'), /obj must be an object/); |
|||
assert.throws(getHiddenValue({}), /name must be a string/); |
|||
assert.throws(getHiddenValue({}, null), /name must be a string/); |
|||
assert.throws(getHiddenValue({}, []), /name must be a string/); |
|||
assert.deepEqual(internalUtil.getHiddenValue({}, 'foo'), undefined); |
|||
|
|||
let arrowMessage; |
|||
|
|||
try { |
|||
require('../fixtures/syntax/bad_syntax'); |
|||
} catch (err) { |
|||
arrowMessage = internalUtil.getHiddenValue(err, 'arrowMessage'); |
|||
} |
|||
|
|||
assert(/bad_syntax\.js:1/.test(arrowMessage)); |
Loading…
Reference in new issue