mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 21:35:31 -05:00
75 lines
1.3 KiB
JavaScript
75 lines
1.3 KiB
JavaScript
|
// deno-fmt-ignore-file
|
||
|
// deno-lint-ignore-file
|
||
|
|
||
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
||
|
// Taken from Node 20.11.1
|
||
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
require('../common');
|
||
|
|
||
|
// This test ensures that util.inspect logs getters
|
||
|
// which access this.
|
||
|
|
||
|
const assert = require('assert');
|
||
|
|
||
|
const { inspect } = require('util');
|
||
|
|
||
|
{
|
||
|
class X {
|
||
|
constructor() {
|
||
|
this._y = 123;
|
||
|
}
|
||
|
|
||
|
get y() {
|
||
|
return this._y;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const result = inspect(new X(), {
|
||
|
getters: true,
|
||
|
showHidden: true
|
||
|
});
|
||
|
|
||
|
assert.strictEqual(
|
||
|
result,
|
||
|
'X { _y: 123, [y]: [Getter: 123] }'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
// Regression test for https://github.com/nodejs/node/issues/37054
|
||
|
{
|
||
|
class A {
|
||
|
constructor(B) {
|
||
|
this.B = B;
|
||
|
}
|
||
|
get b() {
|
||
|
return this.B;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class B {
|
||
|
constructor() {
|
||
|
this.A = new A(this);
|
||
|
}
|
||
|
get a() {
|
||
|
return this.A;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
const result = inspect(new B(), {
|
||
|
depth: 1,
|
||
|
getters: true,
|
||
|
showHidden: true
|
||
|
});
|
||
|
|
||
|
assert.strictEqual(
|
||
|
result,
|
||
|
'<ref *1> B {\n' +
|
||
|
' A: A { B: [Circular *1], [b]: [Getter] [Circular *1] },\n' +
|
||
|
' [a]: [Getter] A { B: [Circular *1], [b]: [Getter] [Circular *1] }\n' +
|
||
|
'}',
|
||
|
);
|
||
|
}
|