Searched refs:recurseTimes (Results 1 – 6 of 6) sorted by relevance
/third_party/node/lib/internal/util/ |
D | inspect.js | 587 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/ |
D | url.js | 289 [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;
|
D | errors.js | 355 [SymbolFor('nodejs.util.inspect.custom')](recurseTimes, ctx) { argument
|
/third_party/node/lib/internal/assert/ |
D | assertion_error.js | 463 [inspect.custom](recurseTimes, ctx) { argument
|
/third_party/node/lib/ |
D | buffer.js | 885 Buffer.prototype[customInspectSymbol] = function inspect(recurseTimes, ctx) { argument
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V11.md | 1553 …https://github.com/nodejs/node/commit/7696d1fe84)] - **util**: switch recurseTimes counter (Ruben …
|