@memlab/heap-analysis 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. package/README.md +11 -0
  2. package/dist/BaseAnalysis.d.ts +26 -0
  3. package/dist/BaseAnalysis.d.ts.map +1 -0
  4. package/dist/BaseAnalysis.js +112 -0
  5. package/dist/HeapAnalysisLoader.d.ts +19 -0
  6. package/dist/HeapAnalysisLoader.d.ts.map +1 -0
  7. package/dist/HeapAnalysisLoader.js +59 -0
  8. package/dist/PluginUtils.d.ts +48 -0
  9. package/dist/PluginUtils.d.ts.map +1 -0
  10. package/dist/PluginUtils.js +283 -0
  11. package/dist/__tests__/HeapAnalysis.test.d.ts +11 -0
  12. package/dist/__tests__/HeapAnalysis.test.d.ts.map +1 -0
  13. package/dist/__tests__/HeapAnalysis.test.js +32 -0
  14. package/dist/index.d.ts +23 -0
  15. package/dist/index.d.ts.map +1 -0
  16. package/dist/index.js +41 -0
  17. package/dist/options/HeapAnalysisSnapshotDirectoryOption.d.ts +18 -0
  18. package/dist/options/HeapAnalysisSnapshotDirectoryOption.d.ts.map +1 -0
  19. package/dist/options/HeapAnalysisSnapshotDirectoryOption.js +50 -0
  20. package/dist/options/HeapAnalysisSnapshotFileOption.d.ts +18 -0
  21. package/dist/options/HeapAnalysisSnapshotFileOption.d.ts.map +1 -0
  22. package/dist/options/HeapAnalysisSnapshotFileOption.js +50 -0
  23. package/dist/plugins/CollectionsHoldingStaleAnalysis.d.ts +22 -0
  24. package/dist/plugins/CollectionsHoldingStaleAnalysis.d.ts.map +1 -0
  25. package/dist/plugins/CollectionsHoldingStaleAnalysis.js +132 -0
  26. package/dist/plugins/DetachedDOMElementAnalysis.d.ts +22 -0
  27. package/dist/plugins/DetachedDOMElementAnalysis.d.ts.map +1 -0
  28. package/dist/plugins/DetachedDOMElementAnalysis.js +53 -0
  29. package/dist/plugins/GlobalVariableAnalysis/BuiltInGlobalVariables.d.ts +13 -0
  30. package/dist/plugins/GlobalVariableAnalysis/BuiltInGlobalVariables.d.ts.map +1 -0
  31. package/dist/plugins/GlobalVariableAnalysis/BuiltInGlobalVariables.js +1073 -0
  32. package/dist/plugins/GlobalVariableAnalysis/GlobalVariableAnalysis.d.ts +22 -0
  33. package/dist/plugins/GlobalVariableAnalysis/GlobalVariableAnalysis.d.ts.map +1 -0
  34. package/dist/plugins/GlobalVariableAnalysis/GlobalVariableAnalysis.js +78 -0
  35. package/dist/plugins/ObjectFanoutAnalysis.d.ts +21 -0
  36. package/dist/plugins/ObjectFanoutAnalysis.d.ts.map +1 -0
  37. package/dist/plugins/ObjectFanoutAnalysis.js +69 -0
  38. package/dist/plugins/ObjectShallowAnalysis.d.ts +42 -0
  39. package/dist/plugins/ObjectShallowAnalysis.d.ts.map +1 -0
  40. package/dist/plugins/ObjectShallowAnalysis.js +233 -0
  41. package/dist/plugins/ObjectShapeAnalysis.d.ts +20 -0
  42. package/dist/plugins/ObjectShapeAnalysis.d.ts.map +1 -0
  43. package/dist/plugins/ObjectShapeAnalysis.js +45 -0
  44. package/dist/plugins/ObjectSizeAnalysis.d.ts +20 -0
  45. package/dist/plugins/ObjectSizeAnalysis.d.ts.map +1 -0
  46. package/dist/plugins/ObjectSizeAnalysis.js +45 -0
  47. package/dist/plugins/ObjectUnboundGrowthAnalysis.d.ts +20 -0
  48. package/dist/plugins/ObjectUnboundGrowthAnalysis.d.ts.map +1 -0
  49. package/dist/plugins/ObjectUnboundGrowthAnalysis.js +47 -0
  50. package/dist/plugins/ShapeUnboundGrowthAnalysis.d.ts +42 -0
  51. package/dist/plugins/ShapeUnboundGrowthAnalysis.d.ts.map +1 -0
  52. package/dist/plugins/ShapeUnboundGrowthAnalysis.js +164 -0
  53. package/dist/plugins/StringAnalysis.d.ts +40 -0
  54. package/dist/plugins/StringAnalysis.d.ts.map +1 -0
  55. package/dist/plugins/StringAnalysis.js +217 -0
  56. package/dist/plugins/UnmountedReactFiberNodesAnalysis.d.ts +19 -0
  57. package/dist/plugins/UnmountedReactFiberNodesAnalysis.d.ts.map +1 -0
  58. package/dist/plugins/UnmountedReactFiberNodesAnalysis.js +46 -0
  59. package/package.json +55 -0
@@ -0,0 +1,1073 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright (c) Meta Platforms, Inc. and affiliates.
4
+ *
5
+ * This source code is licensed under the MIT license found in the
6
+ * LICENSE file in the root directory of this source tree.
7
+ *
8
+ * @emails oncall+ws_labs
9
+ * @lightSyntaxTransform
10
+ * @format
11
+ */
12
+ Object.defineProperty(exports, "__esModule", { value: true });
13
+ exports.default = new Set([
14
+ 'Object',
15
+ 'Function',
16
+ 'Array',
17
+ 'Number',
18
+ 'parseFloat',
19
+ 'parseInt',
20
+ 'Infinity',
21
+ 'NaN',
22
+ 'undefined',
23
+ 'Boolean',
24
+ 'String',
25
+ 'Symbol',
26
+ 'Date',
27
+ 'Promise',
28
+ 'RegExp',
29
+ 'Error',
30
+ 'AggregateError',
31
+ 'EvalError',
32
+ 'RangeError',
33
+ 'ReferenceError',
34
+ 'SyntaxError',
35
+ 'TypeError',
36
+ 'URIError',
37
+ 'globalThis',
38
+ 'JSON',
39
+ 'Math',
40
+ 'console',
41
+ 'Intl',
42
+ 'ArrayBuffer',
43
+ 'Uint8Array',
44
+ 'Int8Array',
45
+ 'Uint16Array',
46
+ 'Int16Array',
47
+ 'Uint32Array',
48
+ 'Int32Array',
49
+ 'Float32Array',
50
+ 'Float64Array',
51
+ 'Uint8ClampedArray',
52
+ 'BigUint64Array',
53
+ 'BigInt64Array',
54
+ 'DataView',
55
+ 'Map',
56
+ 'BigInt',
57
+ 'Set',
58
+ 'WeakMap',
59
+ 'WeakSet',
60
+ 'Proxy',
61
+ 'Reflect',
62
+ 'FinalizationRegistry',
63
+ 'WeakRef',
64
+ 'decodeURI',
65
+ 'decodeURIComponent',
66
+ 'encodeURI',
67
+ 'encodeURIComponent',
68
+ 'escape',
69
+ 'unescape',
70
+ 'eval',
71
+ 'isFinite',
72
+ 'isNaN',
73
+ 'Option',
74
+ 'Image',
75
+ 'Audio',
76
+ 'webkitURL',
77
+ 'webkitRTCPeerConnection',
78
+ 'webkitMediaStream',
79
+ 'WebKitMutationObserver',
80
+ 'WebKitCSSMatrix',
81
+ 'XPathResult',
82
+ 'XPathExpression',
83
+ 'XPathEvaluator',
84
+ 'XMLSerializer',
85
+ 'XMLHttpRequestUpload',
86
+ 'XMLHttpRequestEventTarget',
87
+ 'XMLHttpRequest',
88
+ 'XMLDocument',
89
+ 'WritableStreamDefaultWriter',
90
+ 'WritableStreamDefaultController',
91
+ 'WritableStream',
92
+ 'Worker',
93
+ 'Window',
94
+ 'WheelEvent',
95
+ 'WebSocket',
96
+ 'WebGLVertexArrayObject',
97
+ 'WebGLUniformLocation',
98
+ 'WebGLTransformFeedback',
99
+ 'WebGLTexture',
100
+ 'WebGLSync',
101
+ 'WebGLShaderPrecisionFormat',
102
+ 'WebGLShader',
103
+ 'WebGLSampler',
104
+ 'WebGLRenderingContext',
105
+ 'WebGLRenderbuffer',
106
+ 'WebGLQuery',
107
+ 'WebGLProgram',
108
+ 'WebGLFramebuffer',
109
+ 'WebGLContextEvent',
110
+ 'WebGLBuffer',
111
+ 'WebGLActiveInfo',
112
+ 'WebGL2RenderingContext',
113
+ 'WaveShaperNode',
114
+ 'VisualViewport',
115
+ 'ValidityState',
116
+ 'VTTCue',
117
+ 'UserActivation',
118
+ 'URLSearchParams',
119
+ 'URL',
120
+ 'UIEvent',
121
+ 'TreeWalker',
122
+ 'TransitionEvent',
123
+ 'TransformStream',
124
+ 'TrackEvent',
125
+ 'TouchList',
126
+ 'TouchEvent',
127
+ 'Touch',
128
+ 'TimeRanges',
129
+ 'TextTrackList',
130
+ 'TextTrackCueList',
131
+ 'TextTrackCue',
132
+ 'TextTrack',
133
+ 'TextMetrics',
134
+ 'TextEvent',
135
+ 'TextEncoderStream',
136
+ 'TextEncoder',
137
+ 'TextDecoderStream',
138
+ 'TextDecoder',
139
+ 'Text',
140
+ 'TaskAttributionTiming',
141
+ 'SyncManager',
142
+ 'SubmitEvent',
143
+ 'StyleSheetList',
144
+ 'StyleSheet',
145
+ 'StylePropertyMapReadOnly',
146
+ 'StylePropertyMap',
147
+ 'StorageEvent',
148
+ 'Storage',
149
+ 'StereoPannerNode',
150
+ 'StaticRange',
151
+ 'ShadowRoot',
152
+ 'Selection',
153
+ 'SecurityPolicyViolationEvent',
154
+ 'ScriptProcessorNode',
155
+ 'ScreenOrientation',
156
+ 'Screen',
157
+ 'SVGViewElement',
158
+ 'SVGUseElement',
159
+ 'SVGUnitTypes',
160
+ 'SVGTransformList',
161
+ 'SVGTransform',
162
+ 'SVGTitleElement',
163
+ 'SVGTextPositioningElement',
164
+ 'SVGTextPathElement',
165
+ 'SVGTextElement',
166
+ 'SVGTextContentElement',
167
+ 'SVGTSpanElement',
168
+ 'SVGSymbolElement',
169
+ 'SVGSwitchElement',
170
+ 'SVGStyleElement',
171
+ 'SVGStringList',
172
+ 'SVGStopElement',
173
+ 'SVGSetElement',
174
+ 'SVGScriptElement',
175
+ 'SVGSVGElement',
176
+ 'SVGRectElement',
177
+ 'SVGRect',
178
+ 'SVGRadialGradientElement',
179
+ 'SVGPreserveAspectRatio',
180
+ 'SVGPolylineElement',
181
+ 'SVGPolygonElement',
182
+ 'SVGPointList',
183
+ 'SVGPoint',
184
+ 'SVGPatternElement',
185
+ 'SVGPathElement',
186
+ 'SVGNumberList',
187
+ 'SVGNumber',
188
+ 'SVGMetadataElement',
189
+ 'SVGMatrix',
190
+ 'SVGMaskElement',
191
+ 'SVGMarkerElement',
192
+ 'SVGMPathElement',
193
+ 'SVGLinearGradientElement',
194
+ 'SVGLineElement',
195
+ 'SVGLengthList',
196
+ 'SVGLength',
197
+ 'SVGImageElement',
198
+ 'SVGGraphicsElement',
199
+ 'SVGGradientElement',
200
+ 'SVGGeometryElement',
201
+ 'SVGGElement',
202
+ 'SVGForeignObjectElement',
203
+ 'SVGFilterElement',
204
+ 'SVGFETurbulenceElement',
205
+ 'SVGFETileElement',
206
+ 'SVGFESpotLightElement',
207
+ 'SVGFESpecularLightingElement',
208
+ 'SVGFEPointLightElement',
209
+ 'SVGFEOffsetElement',
210
+ 'SVGFEMorphologyElement',
211
+ 'SVGFEMergeNodeElement',
212
+ 'SVGFEMergeElement',
213
+ 'SVGFEImageElement',
214
+ 'SVGFEGaussianBlurElement',
215
+ 'SVGFEFuncRElement',
216
+ 'SVGFEFuncGElement',
217
+ 'SVGFEFuncBElement',
218
+ 'SVGFEFuncAElement',
219
+ 'SVGFEFloodElement',
220
+ 'SVGFEDropShadowElement',
221
+ 'SVGFEDistantLightElement',
222
+ 'SVGFEDisplacementMapElement',
223
+ 'SVGFEDiffuseLightingElement',
224
+ 'SVGFEConvolveMatrixElement',
225
+ 'SVGFECompositeElement',
226
+ 'SVGFEComponentTransferElement',
227
+ 'SVGFEColorMatrixElement',
228
+ 'SVGFEBlendElement',
229
+ 'SVGEllipseElement',
230
+ 'SVGElement',
231
+ 'SVGDescElement',
232
+ 'SVGDefsElement',
233
+ 'SVGComponentTransferFunctionElement',
234
+ 'SVGClipPathElement',
235
+ 'SVGCircleElement',
236
+ 'SVGAnimationElement',
237
+ 'SVGAnimatedTransformList',
238
+ 'SVGAnimatedString',
239
+ 'SVGAnimatedRect',
240
+ 'SVGAnimatedPreserveAspectRatio',
241
+ 'SVGAnimatedNumberList',
242
+ 'SVGAnimatedNumber',
243
+ 'SVGAnimatedLengthList',
244
+ 'SVGAnimatedLength',
245
+ 'SVGAnimatedInteger',
246
+ 'SVGAnimatedEnumeration',
247
+ 'SVGAnimatedBoolean',
248
+ 'SVGAnimatedAngle',
249
+ 'SVGAnimateTransformElement',
250
+ 'SVGAnimateMotionElement',
251
+ 'SVGAnimateElement',
252
+ 'SVGAngle',
253
+ 'SVGAElement',
254
+ 'Response',
255
+ 'ResizeObserverSize',
256
+ 'ResizeObserverEntry',
257
+ 'ResizeObserver',
258
+ 'Request',
259
+ 'ReportingObserver',
260
+ 'ReadableStreamDefaultReader',
261
+ 'ReadableStreamDefaultController',
262
+ 'ReadableStreamBYOBRequest',
263
+ 'ReadableStreamBYOBReader',
264
+ 'ReadableStream',
265
+ 'ReadableByteStreamController',
266
+ 'Range',
267
+ 'RadioNodeList',
268
+ 'RTCTrackEvent',
269
+ 'RTCStatsReport',
270
+ 'RTCSessionDescription',
271
+ 'RTCSctpTransport',
272
+ 'RTCRtpTransceiver',
273
+ 'RTCRtpSender',
274
+ 'RTCRtpReceiver',
275
+ 'RTCPeerConnectionIceEvent',
276
+ 'RTCPeerConnectionIceErrorEvent',
277
+ 'RTCPeerConnection',
278
+ 'RTCIceCandidate',
279
+ 'RTCErrorEvent',
280
+ 'RTCError',
281
+ 'RTCEncodedVideoFrame',
282
+ 'RTCEncodedAudioFrame',
283
+ 'RTCDtlsTransport',
284
+ 'RTCDataChannelEvent',
285
+ 'RTCDataChannel',
286
+ 'RTCDTMFToneChangeEvent',
287
+ 'RTCDTMFSender',
288
+ 'RTCCertificate',
289
+ 'PromiseRejectionEvent',
290
+ 'ProgressEvent',
291
+ 'ProcessingInstruction',
292
+ 'PopStateEvent',
293
+ 'PointerEvent',
294
+ 'PluginArray',
295
+ 'Plugin',
296
+ 'PeriodicWave',
297
+ 'PerformanceTiming',
298
+ 'PerformanceServerTiming',
299
+ 'PerformanceResourceTiming',
300
+ 'PerformancePaintTiming',
301
+ 'PerformanceObserverEntryList',
302
+ 'PerformanceObserver',
303
+ 'PerformanceNavigationTiming',
304
+ 'PerformanceNavigation',
305
+ 'PerformanceMeasure',
306
+ 'PerformanceMark',
307
+ 'PerformanceLongTaskTiming',
308
+ 'PerformanceEventTiming',
309
+ 'PerformanceEntry',
310
+ 'PerformanceElementTiming',
311
+ 'Performance',
312
+ 'Path2D',
313
+ 'PannerNode',
314
+ 'PageTransitionEvent',
315
+ 'OverconstrainedError',
316
+ 'OscillatorNode',
317
+ 'OffscreenCanvasRenderingContext2D',
318
+ 'OffscreenCanvas',
319
+ 'OfflineAudioContext',
320
+ 'OfflineAudioCompletionEvent',
321
+ 'NodeList',
322
+ 'NodeIterator',
323
+ 'NodeFilter',
324
+ 'Node',
325
+ 'NetworkInformation',
326
+ 'Navigator',
327
+ 'NamedNodeMap',
328
+ 'MutationRecord',
329
+ 'MutationObserver',
330
+ 'MutationEvent',
331
+ 'MouseEvent',
332
+ 'MimeTypeArray',
333
+ 'MimeType',
334
+ 'MessagePort',
335
+ 'MessageEvent',
336
+ 'MessageChannel',
337
+ 'MediaStreamTrackEvent',
338
+ 'MediaStreamTrack',
339
+ 'MediaStreamEvent',
340
+ 'MediaStreamAudioSourceNode',
341
+ 'MediaStreamAudioDestinationNode',
342
+ 'MediaStream',
343
+ 'MediaRecorder',
344
+ 'MediaQueryListEvent',
345
+ 'MediaQueryList',
346
+ 'MediaList',
347
+ 'MediaError',
348
+ 'MediaEncryptedEvent',
349
+ 'MediaElementAudioSourceNode',
350
+ 'MediaCapabilities',
351
+ 'Location',
352
+ 'LayoutShiftAttribution',
353
+ 'LayoutShift',
354
+ 'LargestContentfulPaint',
355
+ 'KeyframeEffect',
356
+ 'KeyboardEvent',
357
+ 'IntersectionObserverEntry',
358
+ 'IntersectionObserver',
359
+ 'InputEvent',
360
+ 'InputDeviceInfo',
361
+ 'InputDeviceCapabilities',
362
+ 'ImageData',
363
+ 'ImageCapture',
364
+ 'ImageBitmapRenderingContext',
365
+ 'ImageBitmap',
366
+ 'IdleDeadline',
367
+ 'IIRFilterNode',
368
+ 'IDBVersionChangeEvent',
369
+ 'IDBTransaction',
370
+ 'IDBRequest',
371
+ 'IDBOpenDBRequest',
372
+ 'IDBObjectStore',
373
+ 'IDBKeyRange',
374
+ 'IDBIndex',
375
+ 'IDBFactory',
376
+ 'IDBDatabase',
377
+ 'IDBCursorWithValue',
378
+ 'IDBCursor',
379
+ 'History',
380
+ 'Headers',
381
+ 'HashChangeEvent',
382
+ 'HTMLVideoElement',
383
+ 'HTMLUnknownElement',
384
+ 'HTMLUListElement',
385
+ 'HTMLTrackElement',
386
+ 'HTMLTitleElement',
387
+ 'HTMLTimeElement',
388
+ 'HTMLTextAreaElement',
389
+ 'HTMLTemplateElement',
390
+ 'HTMLTableSectionElement',
391
+ 'HTMLTableRowElement',
392
+ 'HTMLTableElement',
393
+ 'HTMLTableColElement',
394
+ 'HTMLTableCellElement',
395
+ 'HTMLTableCaptionElement',
396
+ 'HTMLStyleElement',
397
+ 'HTMLSpanElement',
398
+ 'HTMLSourceElement',
399
+ 'HTMLSlotElement',
400
+ 'HTMLSelectElement',
401
+ 'HTMLScriptElement',
402
+ 'HTMLQuoteElement',
403
+ 'HTMLProgressElement',
404
+ 'HTMLPreElement',
405
+ 'HTMLPictureElement',
406
+ 'HTMLParamElement',
407
+ 'HTMLParagraphElement',
408
+ 'HTMLOutputElement',
409
+ 'HTMLOptionsCollection',
410
+ 'HTMLOptionElement',
411
+ 'HTMLOptGroupElement',
412
+ 'HTMLObjectElement',
413
+ 'HTMLOListElement',
414
+ 'HTMLModElement',
415
+ 'HTMLMeterElement',
416
+ 'HTMLMetaElement',
417
+ 'HTMLMenuElement',
418
+ 'HTMLMediaElement',
419
+ 'HTMLMarqueeElement',
420
+ 'HTMLMapElement',
421
+ 'HTMLLinkElement',
422
+ 'HTMLLegendElement',
423
+ 'HTMLLabelElement',
424
+ 'HTMLLIElement',
425
+ 'HTMLInputElement',
426
+ 'HTMLImageElement',
427
+ 'HTMLIFrameElement',
428
+ 'HTMLHtmlElement',
429
+ 'HTMLHeadingElement',
430
+ 'HTMLHeadElement',
431
+ 'HTMLHRElement',
432
+ 'HTMLFrameSetElement',
433
+ 'HTMLFrameElement',
434
+ 'HTMLFormElement',
435
+ 'HTMLFormControlsCollection',
436
+ 'HTMLFontElement',
437
+ 'HTMLFieldSetElement',
438
+ 'HTMLEmbedElement',
439
+ 'HTMLElement',
440
+ 'HTMLDocument',
441
+ 'HTMLDivElement',
442
+ 'HTMLDirectoryElement',
443
+ 'HTMLDialogElement',
444
+ 'HTMLDetailsElement',
445
+ 'HTMLDataListElement',
446
+ 'HTMLDataElement',
447
+ 'HTMLDListElement',
448
+ 'HTMLCollection',
449
+ 'HTMLCanvasElement',
450
+ 'HTMLButtonElement',
451
+ 'HTMLBodyElement',
452
+ 'HTMLBaseElement',
453
+ 'HTMLBRElement',
454
+ 'HTMLAudioElement',
455
+ 'HTMLAreaElement',
456
+ 'HTMLAnchorElement',
457
+ 'HTMLAllCollection',
458
+ 'GeolocationPositionError',
459
+ 'GeolocationPosition',
460
+ 'GeolocationCoordinates',
461
+ 'Geolocation',
462
+ 'GamepadHapticActuator',
463
+ 'GamepadEvent',
464
+ 'GamepadButton',
465
+ 'Gamepad',
466
+ 'GainNode',
467
+ 'FormDataEvent',
468
+ 'FormData',
469
+ 'FontFaceSetLoadEvent',
470
+ 'FontFace',
471
+ 'FocusEvent',
472
+ 'FileReader',
473
+ 'FileList',
474
+ 'File',
475
+ 'FeaturePolicy',
476
+ 'External',
477
+ 'EventTarget',
478
+ 'EventSource',
479
+ 'EventCounts',
480
+ 'Event',
481
+ 'ErrorEvent',
482
+ 'ElementInternals',
483
+ 'Element',
484
+ 'DynamicsCompressorNode',
485
+ 'DragEvent',
486
+ 'DocumentType',
487
+ 'DocumentFragment',
488
+ 'Document',
489
+ 'DelayNode',
490
+ 'DecompressionStream',
491
+ 'DataTransferItemList',
492
+ 'DataTransferItem',
493
+ 'DataTransfer',
494
+ 'DOMTokenList',
495
+ 'DOMStringMap',
496
+ 'DOMStringList',
497
+ 'DOMRectReadOnly',
498
+ 'DOMRectList',
499
+ 'DOMRect',
500
+ 'DOMQuad',
501
+ 'DOMPointReadOnly',
502
+ 'DOMPoint',
503
+ 'DOMParser',
504
+ 'DOMMatrixReadOnly',
505
+ 'DOMMatrix',
506
+ 'DOMImplementation',
507
+ 'DOMException',
508
+ 'DOMError',
509
+ 'CustomEvent',
510
+ 'CustomElementRegistry',
511
+ 'Crypto',
512
+ 'CountQueuingStrategy',
513
+ 'ConvolverNode',
514
+ 'ConstantSourceNode',
515
+ 'CompressionStream',
516
+ 'CompositionEvent',
517
+ 'Comment',
518
+ 'CloseEvent',
519
+ 'ClipboardEvent',
520
+ 'CharacterData',
521
+ 'ChannelSplitterNode',
522
+ 'ChannelMergerNode',
523
+ 'CanvasRenderingContext2D',
524
+ 'CanvasPattern',
525
+ 'CanvasGradient',
526
+ 'CanvasCaptureMediaStreamTrack',
527
+ 'CSSVariableReferenceValue',
528
+ 'CSSUnparsedValue',
529
+ 'CSSUnitValue',
530
+ 'CSSTranslate',
531
+ 'CSSTransformValue',
532
+ 'CSSTransformComponent',
533
+ 'CSSSupportsRule',
534
+ 'CSSStyleValue',
535
+ 'CSSStyleSheet',
536
+ 'CSSStyleRule',
537
+ 'CSSStyleDeclaration',
538
+ 'CSSSkewY',
539
+ 'CSSSkewX',
540
+ 'CSSSkew',
541
+ 'CSSScale',
542
+ 'CSSRuleList',
543
+ 'CSSRule',
544
+ 'CSSRotate',
545
+ 'CSSPropertyRule',
546
+ 'CSSPositionValue',
547
+ 'CSSPerspective',
548
+ 'CSSPageRule',
549
+ 'CSSNumericValue',
550
+ 'CSSNumericArray',
551
+ 'CSSNamespaceRule',
552
+ 'CSSMediaRule',
553
+ 'CSSMatrixComponent',
554
+ 'CSSMathValue',
555
+ 'CSSMathSum',
556
+ 'CSSMathProduct',
557
+ 'CSSMathNegate',
558
+ 'CSSMathMin',
559
+ 'CSSMathMax',
560
+ 'CSSMathInvert',
561
+ 'CSSKeywordValue',
562
+ 'CSSKeyframesRule',
563
+ 'CSSKeyframeRule',
564
+ 'CSSImportRule',
565
+ 'CSSImageValue',
566
+ 'CSSGroupingRule',
567
+ 'CSSFontFaceRule',
568
+ 'CSSCounterStyleRule',
569
+ 'CSSConditionRule',
570
+ 'CSS',
571
+ 'CDATASection',
572
+ 'ByteLengthQueuingStrategy',
573
+ 'BroadcastChannel',
574
+ 'BlobEvent',
575
+ 'Blob',
576
+ 'BiquadFilterNode',
577
+ 'BeforeUnloadEvent',
578
+ 'BeforeInstallPromptEvent',
579
+ 'BatteryManager',
580
+ 'BaseAudioContext',
581
+ 'BarProp',
582
+ 'AudioWorkletNode',
583
+ 'AudioScheduledSourceNode',
584
+ 'AudioProcessingEvent',
585
+ 'AudioParamMap',
586
+ 'AudioParam',
587
+ 'AudioNode',
588
+ 'AudioListener',
589
+ 'AudioDestinationNode',
590
+ 'AudioContext',
591
+ 'AudioBufferSourceNode',
592
+ 'AudioBuffer',
593
+ 'Attr',
594
+ 'AnimationEvent',
595
+ 'AnimationEffect',
596
+ 'Animation',
597
+ 'AnalyserNode',
598
+ 'AbstractRange',
599
+ 'AbortSignal',
600
+ 'AbortController',
601
+ 'window',
602
+ 'self',
603
+ 'document',
604
+ 'name',
605
+ 'location',
606
+ 'customElements',
607
+ 'history',
608
+ 'locationbar',
609
+ 'menubar',
610
+ 'personalbar',
611
+ 'scrollbars',
612
+ 'statusbar',
613
+ 'toolbar',
614
+ 'status',
615
+ 'closed',
616
+ 'frames',
617
+ 'length',
618
+ 'top',
619
+ 'opener',
620
+ 'parent',
621
+ 'frameElement',
622
+ 'navigator',
623
+ 'origin',
624
+ 'external',
625
+ 'screen',
626
+ 'innerWidth',
627
+ 'innerHeight',
628
+ 'scrollX',
629
+ 'pageXOffset',
630
+ 'scrollY',
631
+ 'pageYOffset',
632
+ 'visualViewport',
633
+ 'screenX',
634
+ 'screenY',
635
+ 'outerWidth',
636
+ 'outerHeight',
637
+ 'devicePixelRatio',
638
+ 'event',
639
+ 'clientInformation',
640
+ 'offscreenBuffering',
641
+ 'screenLeft',
642
+ 'screenTop',
643
+ 'defaultStatus',
644
+ 'defaultstatus',
645
+ 'styleMedia',
646
+ 'onsearch',
647
+ 'isSecureContext',
648
+ 'performance',
649
+ 'onappinstalled',
650
+ 'onbeforeinstallprompt',
651
+ 'crypto',
652
+ 'indexedDB',
653
+ 'webkitStorageInfo',
654
+ 'sessionStorage',
655
+ 'localStorage',
656
+ 'onbeforexrselect',
657
+ 'onabort',
658
+ 'onblur',
659
+ 'oncancel',
660
+ 'oncanplay',
661
+ 'oncanplaythrough',
662
+ 'onchange',
663
+ 'onclick',
664
+ 'onclose',
665
+ 'oncontextmenu',
666
+ 'oncuechange',
667
+ 'ondblclick',
668
+ 'ondrag',
669
+ 'ondragend',
670
+ 'ondragenter',
671
+ 'ondragleave',
672
+ 'ondragover',
673
+ 'ondragstart',
674
+ 'ondrop',
675
+ 'ondurationchange',
676
+ 'onemptied',
677
+ 'onended',
678
+ 'onerror',
679
+ 'onfocus',
680
+ 'onformdata',
681
+ 'oninput',
682
+ 'oninvalid',
683
+ 'onkeydown',
684
+ 'onkeypress',
685
+ 'onkeyup',
686
+ 'onload',
687
+ 'onloadeddata',
688
+ 'onloadedmetadata',
689
+ 'onloadstart',
690
+ 'onmousedown',
691
+ 'onmouseenter',
692
+ 'onmouseleave',
693
+ 'onmousemove',
694
+ 'onmouseout',
695
+ 'onmouseover',
696
+ 'onmouseup',
697
+ 'onmousewheel',
698
+ 'onpause',
699
+ 'onplay',
700
+ 'onplaying',
701
+ 'onprogress',
702
+ 'onratechange',
703
+ 'onreset',
704
+ 'onresize',
705
+ 'onscroll',
706
+ 'onseeked',
707
+ 'onseeking',
708
+ 'onselect',
709
+ 'onstalled',
710
+ 'onsubmit',
711
+ 'onsuspend',
712
+ 'ontimeupdate',
713
+ 'ontoggle',
714
+ 'onvolumechange',
715
+ 'onwaiting',
716
+ 'onwebkitanimationend',
717
+ 'onwebkitanimationiteration',
718
+ 'onwebkitanimationstart',
719
+ 'onwebkittransitionend',
720
+ 'onwheel',
721
+ 'onauxclick',
722
+ 'ongotpointercapture',
723
+ 'onlostpointercapture',
724
+ 'onpointerdown',
725
+ 'onpointermove',
726
+ 'onpointerup',
727
+ 'onpointercancel',
728
+ 'onpointerover',
729
+ 'onpointerout',
730
+ 'onpointerenter',
731
+ 'onpointerleave',
732
+ 'onselectstart',
733
+ 'onselectionchange',
734
+ 'onanimationend',
735
+ 'onanimationiteration',
736
+ 'onanimationstart',
737
+ 'ontransitionrun',
738
+ 'ontransitionstart',
739
+ 'ontransitionend',
740
+ 'ontransitioncancel',
741
+ 'onafterprint',
742
+ 'onbeforeprint',
743
+ 'onbeforeunload',
744
+ 'onhashchange',
745
+ 'onlanguagechange',
746
+ 'onmessage',
747
+ 'onmessageerror',
748
+ 'onoffline',
749
+ 'ononline',
750
+ 'onpagehide',
751
+ 'onpageshow',
752
+ 'onpopstate',
753
+ 'onrejectionhandled',
754
+ 'onstorage',
755
+ 'onunhandledrejection',
756
+ 'onunload',
757
+ 'alert',
758
+ 'atob',
759
+ 'blur',
760
+ 'btoa',
761
+ 'cancelAnimationFrame',
762
+ 'cancelIdleCallback',
763
+ 'captureEvents',
764
+ 'clearInterval',
765
+ 'clearTimeout',
766
+ 'close',
767
+ 'confirm',
768
+ 'createImageBitmap',
769
+ 'fetch',
770
+ 'find',
771
+ 'focus',
772
+ 'getComputedStyle',
773
+ 'getSelection',
774
+ 'matchMedia',
775
+ 'moveBy',
776
+ 'moveTo',
777
+ 'open',
778
+ 'postMessage',
779
+ 'print',
780
+ 'prompt',
781
+ 'queueMicrotask',
782
+ 'releaseEvents',
783
+ 'reportError',
784
+ 'requestAnimationFrame',
785
+ 'requestIdleCallback',
786
+ 'resizeBy',
787
+ 'resizeTo',
788
+ 'scroll',
789
+ 'scrollBy',
790
+ 'scrollTo',
791
+ 'setInterval',
792
+ 'setTimeout',
793
+ 'stop',
794
+ 'webkitCancelAnimationFrame',
795
+ 'webkitRequestAnimationFrame',
796
+ 'Atomics',
797
+ 'chrome',
798
+ 'WebAssembly',
799
+ 'caches',
800
+ 'cookieStore',
801
+ 'ondevicemotion',
802
+ 'ondeviceorientation',
803
+ 'ondeviceorientationabsolute',
804
+ 'AbsoluteOrientationSensor',
805
+ 'Accelerometer',
806
+ 'AudioWorklet',
807
+ 'Cache',
808
+ 'CacheStorage',
809
+ 'Clipboard',
810
+ 'ClipboardItem',
811
+ 'CookieChangeEvent',
812
+ 'CookieStore',
813
+ 'CookieStoreManager',
814
+ 'Credential',
815
+ 'CredentialsContainer',
816
+ 'CryptoKey',
817
+ 'DeviceMotionEvent',
818
+ 'DeviceMotionEventAcceleration',
819
+ 'DeviceMotionEventRotationRate',
820
+ 'DeviceOrientationEvent',
821
+ 'FederatedCredential',
822
+ 'Gyroscope',
823
+ 'Keyboard',
824
+ 'KeyboardLayoutMap',
825
+ 'LinearAccelerationSensor',
826
+ 'Lock',
827
+ 'LockManager',
828
+ 'MIDIAccess',
829
+ 'MIDIConnectionEvent',
830
+ 'MIDIInput',
831
+ 'MIDIInputMap',
832
+ 'MIDIMessageEvent',
833
+ 'MIDIOutput',
834
+ 'MIDIOutputMap',
835
+ 'MIDIPort',
836
+ 'MediaDeviceInfo',
837
+ 'MediaDevices',
838
+ 'MediaKeyMessageEvent',
839
+ 'MediaKeySession',
840
+ 'MediaKeyStatusMap',
841
+ 'MediaKeySystemAccess',
842
+ 'MediaKeys',
843
+ 'NavigationPreloadManager',
844
+ 'NavigatorManagedData',
845
+ 'OrientationSensor',
846
+ 'PasswordCredential',
847
+ 'RTCIceTransport',
848
+ 'RelativeOrientationSensor',
849
+ 'Sensor',
850
+ 'SensorErrorEvent',
851
+ 'ServiceWorker',
852
+ 'ServiceWorkerContainer',
853
+ 'ServiceWorkerRegistration',
854
+ 'StorageManager',
855
+ 'SubtleCrypto',
856
+ 'Worklet',
857
+ 'XRDOMOverlayState',
858
+ 'XRLayer',
859
+ 'XRWebGLBinding',
860
+ 'AudioData',
861
+ 'EncodedAudioChunk',
862
+ 'EncodedVideoChunk',
863
+ 'ImageTrack',
864
+ 'ImageTrackList',
865
+ 'VideoColorSpace',
866
+ 'VideoFrame',
867
+ 'AudioDecoder',
868
+ 'AudioEncoder',
869
+ 'ImageDecoder',
870
+ 'VideoDecoder',
871
+ 'VideoEncoder',
872
+ 'AuthenticatorAssertionResponse',
873
+ 'AuthenticatorAttestationResponse',
874
+ 'AuthenticatorResponse',
875
+ 'PublicKeyCredential',
876
+ 'BarcodeDetector',
877
+ 'Bluetooth',
878
+ 'BluetoothCharacteristicProperties',
879
+ 'BluetoothDevice',
880
+ 'BluetoothRemoteGATTCharacteristic',
881
+ 'BluetoothRemoteGATTDescriptor',
882
+ 'BluetoothRemoteGATTServer',
883
+ 'BluetoothRemoteGATTService',
884
+ 'FileSystemDirectoryHandle',
885
+ 'FileSystemFileHandle',
886
+ 'FileSystemHandle',
887
+ 'FileSystemWritableFileStream',
888
+ 'FragmentDirective',
889
+ 'GravitySensor',
890
+ 'HID',
891
+ 'HIDConnectionEvent',
892
+ 'HIDDevice',
893
+ 'HIDInputReportEvent',
894
+ 'IdleDetector',
895
+ 'MediaStreamTrackGenerator',
896
+ 'MediaStreamTrackProcessor',
897
+ 'OTPCredential',
898
+ 'PaymentAddress',
899
+ 'PaymentRequest',
900
+ 'PaymentResponse',
901
+ 'PaymentMethodChangeEvent',
902
+ 'Presentation',
903
+ 'PresentationAvailability',
904
+ 'PresentationConnection',
905
+ 'PresentationConnectionAvailableEvent',
906
+ 'PresentationConnectionCloseEvent',
907
+ 'PresentationConnectionList',
908
+ 'PresentationReceiver',
909
+ 'PresentationRequest',
910
+ 'Profiler',
911
+ 'Scheduling',
912
+ 'Serial',
913
+ 'SerialPort',
914
+ 'USB',
915
+ 'USBAlternateInterface',
916
+ 'USBConfiguration',
917
+ 'USBConnectionEvent',
918
+ 'USBDevice',
919
+ 'USBEndpoint',
920
+ 'USBInTransferResult',
921
+ 'USBInterface',
922
+ 'USBIsochronousInTransferPacket',
923
+ 'USBIsochronousInTransferResult',
924
+ 'USBIsochronousOutTransferPacket',
925
+ 'USBIsochronousOutTransferResult',
926
+ 'USBOutTransferResult',
927
+ 'VirtualKeyboard',
928
+ 'WakeLock',
929
+ 'WakeLockSentinel',
930
+ 'XRAnchor',
931
+ 'XRAnchorSet',
932
+ 'XRBoundedReferenceSpace',
933
+ 'XRFrame',
934
+ 'XRInputSource',
935
+ 'XRInputSourceArray',
936
+ 'XRInputSourceEvent',
937
+ 'XRInputSourcesChangeEvent',
938
+ 'XRPose',
939
+ 'XRReferenceSpace',
940
+ 'XRReferenceSpaceEvent',
941
+ 'XRRenderState',
942
+ 'XRRigidTransform',
943
+ 'XRSession',
944
+ 'XRSessionEvent',
945
+ 'XRSpace',
946
+ 'XRSystem',
947
+ 'XRView',
948
+ 'XRViewerPose',
949
+ 'XRViewport',
950
+ 'XRWebGLLayer',
951
+ 'XRCPUDepthInformation',
952
+ 'XRDepthInformation',
953
+ 'XRWebGLDepthInformation',
954
+ 'XRHitTestResult',
955
+ 'XRHitTestSource',
956
+ 'XRRay',
957
+ 'XRTransientInputHitTestResult',
958
+ 'XRTransientInputHitTestSource',
959
+ 'XRLightEstimate',
960
+ 'XRLightProbe',
961
+ 'showDirectoryPicker',
962
+ 'showOpenFilePicker',
963
+ 'showSaveFilePicker',
964
+ 'originAgentCluster',
965
+ 'trustedTypes',
966
+ 'speechSynthesis',
967
+ 'onpointerrawupdate',
968
+ 'crossOriginIsolated',
969
+ 'scheduler',
970
+ 'AnimationPlaybackEvent',
971
+ 'AnimationTimeline',
972
+ 'CSSAnimation',
973
+ 'CSSTransition',
974
+ 'DocumentTimeline',
975
+ 'BackgroundFetchManager',
976
+ 'BackgroundFetchRecord',
977
+ 'BackgroundFetchRegistration',
978
+ 'BluetoothUUID',
979
+ 'CustomStateSet',
980
+ 'DelegatedInkTrailPresenter',
981
+ 'Ink',
982
+ 'EyeDropper',
983
+ 'MediaMetadata',
984
+ 'MediaSession',
985
+ 'MediaSource',
986
+ 'SourceBuffer',
987
+ 'SourceBufferList',
988
+ 'NavigatorUAData',
989
+ 'Notification',
990
+ 'PaymentInstruments',
991
+ 'PaymentManager',
992
+ 'PaymentRequestUpdateEvent',
993
+ 'PeriodicSyncManager',
994
+ 'PermissionStatus',
995
+ 'Permissions',
996
+ 'PictureInPictureEvent',
997
+ 'PictureInPictureWindow',
998
+ 'PushManager',
999
+ 'PushSubscription',
1000
+ 'PushSubscriptionOptions',
1001
+ 'RemotePlayback',
1002
+ 'Scheduler',
1003
+ 'TaskController',
1004
+ 'TaskPriorityChangeEvent',
1005
+ 'TaskSignal',
1006
+ 'SharedWorker',
1007
+ 'SpeechSynthesisErrorEvent',
1008
+ 'SpeechSynthesisEvent',
1009
+ 'SpeechSynthesisUtterance',
1010
+ 'TrustedHTML',
1011
+ 'TrustedScript',
1012
+ 'TrustedScriptURL',
1013
+ 'TrustedTypePolicy',
1014
+ 'TrustedTypePolicyFactory',
1015
+ 'URLPattern',
1016
+ 'VideoPlaybackQuality',
1017
+ 'VirtualKeyboardGeometryChangeEvent',
1018
+ 'XSLTProcessor',
1019
+ 'webkitSpeechGrammar',
1020
+ 'webkitSpeechGrammarList',
1021
+ 'webkitSpeechRecognition',
1022
+ 'webkitSpeechRecognitionError',
1023
+ 'webkitSpeechRecognitionEvent',
1024
+ 'openDatabase',
1025
+ 'webkitRequestFileSystem',
1026
+ 'webkitResolveLocalFileSystemURL',
1027
+ 'dir',
1028
+ 'dirxml',
1029
+ 'profile',
1030
+ 'profileEnd',
1031
+ 'clear',
1032
+ 'table',
1033
+ 'keys',
1034
+ 'values',
1035
+ 'debug',
1036
+ 'undebug',
1037
+ 'monitor',
1038
+ 'unmonitor',
1039
+ 'inspect',
1040
+ 'copy',
1041
+ 'queryObjects',
1042
+ '$_',
1043
+ '$0',
1044
+ '$1',
1045
+ '$2',
1046
+ '$3',
1047
+ '$4',
1048
+ 'getEventListeners',
1049
+ 'getAccessibleName',
1050
+ 'getAccessibleRole',
1051
+ 'monitorEvents',
1052
+ 'unmonitorEvents',
1053
+ '$',
1054
+ '$$',
1055
+ '$x',
1056
+ 'TEMPORARY',
1057
+ 'PERSISTENT',
1058
+ 'constructor',
1059
+ 'addEventListener',
1060
+ 'dispatchEvent',
1061
+ 'removeEventListener',
1062
+ '__defineGetter__',
1063
+ '__defineSetter__',
1064
+ 'hasOwnProperty',
1065
+ '__lookupGetter__',
1066
+ '__lookupSetter__',
1067
+ 'isPrototypeOf',
1068
+ 'propertyIsEnumerable',
1069
+ 'toString',
1070
+ 'valueOf',
1071
+ '__proto__',
1072
+ 'toLocaleString',
1073
+ ]);