Home
last modified time | relevance | path

Searched refs:recurseTimes (Results 1 – 6 of 6) sorted by relevance

/third_party/node/lib/internal/util/
Dinspect.js587 function getConstructorName(obj, ctx, recurseTimes, protoProps) { argument
600 ctx, tmp, firstProto || tmp, recurseTimes, protoProps);
617 if (recurseTimes > ctx.depth && ctx.depth !== null) {
622 firstProto, ctx, recurseTimes + 1, protoProps);
638 function addPrototypeProperties(ctx, main, obj, recurseTimes, output) { argument
678 ctx, obj, recurseTimes, key, kObjectType, desc, main);
747 function formatProxy(ctx, proxy, recurseTimes) { argument
748 if (recurseTimes > ctx.depth && ctx.depth !== null) {
751 recurseTimes += 1;
754 formatValue(ctx, proxy[0], recurseTimes),
[all …]
/third_party/node/lib/internal/
Durl.js289 [inspect.custom](recurseTimes, ctx) { argument
293 if (typeof recurseTimes === 'number' && recurseTimes < 0)
298 if (recurseTimes !== null) {
299 innerOpts.depth = recurseTimes - 1;
1288 [inspect.custom](recurseTimes, ctx) { argument
1292 if (typeof recurseTimes === 'number' && recurseTimes < 0)
1296 if (recurseTimes !== null) {
1297 innerOpts.depth = recurseTimes - 1;
Derrors.js355 [SymbolFor('nodejs.util.inspect.custom')](recurseTimes, ctx) { argument
/third_party/node/lib/internal/assert/
Dassertion_error.js463 [inspect.custom](recurseTimes, ctx) { argument
/third_party/node/lib/
Dbuffer.js885 Buffer.prototype[customInspectSymbol] = function inspect(recurseTimes, ctx) { argument
/third_party/node/doc/changelogs/
DCHANGELOG_V11.md1553 …https://github.com/nodejs/node/commit/7696d1fe84)] - **util**: switch recurseTimes counter (Ruben …