diff options
Diffstat (limited to 'src/util')
-rw-r--r-- | src/util/html.js | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/src/util/html.js b/src/util/html.js index 040714ef..2229394d 100644 --- a/src/util/html.js +++ b/src/util/html.js @@ -929,7 +929,31 @@ export class Attributes { } [inspect.custom]() { - return `Attributes <${this.toString({color: true}) || 'no attributes'}>`; + const visiblePart = this.toString({color: true}); + + const numSymbols = Object.getOwnPropertySymbols(this.#attributes).length; + const numSymbolsPart = + (numSymbols >= 2 + ? `${numSymbols} symbol` + : numSymbols === 1 + ? `1 symbol` + : ``); + + const symbolPart = + (visiblePart && numSymbolsPart + ? `(+${numSymbolsPart})` + : numSymbols + ? `(${numSymbolsPart})` + : ``); + + const contentPart = + (visiblePart && symbolPart + ? `<${visiblePart} ${symbolPart}>` + : visiblePart || symbolPart + ? `<${visiblePart || symbolPart}>` + : `<no attributes>`); + + return `Attributes ${contentPart}`; } } |