-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
util: fix to inspect getters that access this
Fixes: #36045 Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com> PR-URL: #36052 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
- Loading branch information
1 parent
63494e4
commit 4140f49
Showing
2 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
'use strict'; | ||
|
||
require('../common'); | ||
|
||
// This test ensures that util.inspect logs getters | ||
// which access this. | ||
|
||
const assert = require('assert'); | ||
|
||
const util = require('util'); | ||
|
||
class X { | ||
constructor() { | ||
this._y = 123; | ||
} | ||
|
||
get y() { | ||
return this._y; | ||
} | ||
} | ||
|
||
const result = util.inspect(new X(), { | ||
getters: true, | ||
showHidden: true | ||
}); | ||
|
||
assert.strictEqual( | ||
result, | ||
'X { _y: 123, [y]: [Getter: 123] }' | ||
); |