blob: e2b500daa7006098d6ff3446a5e44d537a0ee191 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
'use strict';
// Flags: --expose-internals
require('../common');
const assert = require('assert');
const fixtures = require('../common/fixtures');
const { internalBinding } = require('internal/test/binding');
const {
privateSymbols: {
arrow_message_private_symbol,
},
} = internalBinding('util');
const obj = {};
assert.strictEqual(obj[arrow_message_private_symbol], undefined);
obj[arrow_message_private_symbol] = 'bar';
assert.strictEqual(obj[arrow_message_private_symbol], 'bar');
assert.deepStrictEqual(Reflect.ownKeys(obj), []);
let arrowMessage;
try {
require(fixtures.path('syntax', 'bad_syntax'));
} catch (err) {
arrowMessage = err[arrow_message_private_symbol];
}
assert.match(arrowMessage, /bad_syntax\.js:1/);
|