%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
'use strict'; const { ObjectSetPrototypeOf, Symbol, } = primordials; const { codes: { ERR_ILLEGAL_CONSTRUCTOR, } } = require('internal/errors'); const { customInspectSymbol: kInspect, } = require('internal/util'); const { inspect } = require('util'); const kName = Symbol('kName'); const kType = Symbol('kType'); const kStart = Symbol('kStart'); const kDuration = Symbol('kDuration'); const kDetail = Symbol('kDetail'); function isPerformanceEntry(obj) { return obj?.[kName] !== undefined; } class PerformanceEntry { constructor() { throw new ERR_ILLEGAL_CONSTRUCTOR(); } get name() { return this[kName]; } get entryType() { return this[kType]; } get startTime() { return this[kStart]; } get duration() { return this[kDuration]; } get detail() { return this[kDetail]; } [kInspect](depth, options) { if (depth < 0) return this; const opts = { ...options, depth: options.depth == null ? null : options.depth - 1 }; return `${this.constructor.name} ${inspect(this.toJSON(), opts)}`; } toJSON() { return { name: this.name, entryType: this.entryType, startTime: this.startTime, duration: this.duration, detail: this.detail, }; } } class InternalPerformanceEntry { constructor(name, type, start, duration, detail) { this[kName] = name; this[kType] = type; this[kStart] = start; this[kDuration] = duration; this[kDetail] = detail; } } InternalPerformanceEntry.prototype.constructor = PerformanceEntry; ObjectSetPrototypeOf( InternalPerformanceEntry.prototype, PerformanceEntry.prototype); module.exports = { InternalPerformanceEntry, PerformanceEntry, isPerformanceEntry, };