@memlab/core 1.1.7 → 1.1.9

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 (119) hide show
  1. package/dist/__tests__/parser/HeapParser.test.d.ts +1 -1
  2. package/dist/__tests__/parser/HeapParser.test.js +1 -1
  3. package/dist/__tests__/parser/NodeHeap.test.d.ts +1 -1
  4. package/dist/__tests__/parser/NodeHeap.test.js +1 -1
  5. package/dist/__tests__/parser/StringNode.test.d.ts +1 -1
  6. package/dist/__tests__/parser/StringNode.test.js +1 -1
  7. package/dist/__tests__/parser/traverse/HeapNodeTraverse.test.d.ts +1 -1
  8. package/dist/__tests__/parser/traverse/HeapNodeTraverse.test.js +1 -1
  9. package/dist/__tests__/utils/utils.test.d.ts +1 -1
  10. package/dist/__tests__/utils/utils.test.js +1 -1
  11. package/dist/index.d.ts +3 -1
  12. package/dist/index.js +5 -2
  13. package/dist/lib/BaseOption.d.ts +1 -1
  14. package/dist/lib/BaseOption.js +1 -1
  15. package/dist/lib/BrowserInfo.d.ts +1 -1
  16. package/dist/lib/BrowserInfo.js +1 -1
  17. package/dist/lib/Config.d.ts +4 -1
  18. package/dist/lib/Config.js +11 -4
  19. package/dist/lib/Console.d.ts +1 -1
  20. package/dist/lib/Console.js +1 -1
  21. package/dist/lib/Constant.d.ts +1 -1
  22. package/dist/lib/Constant.js +1 -1
  23. package/dist/lib/FileManager.d.ts +1 -1
  24. package/dist/lib/FileManager.js +1 -1
  25. package/dist/lib/HeapAnalyzer.d.ts +1 -1
  26. package/dist/lib/HeapAnalyzer.js +1 -1
  27. package/dist/lib/HeapParser.d.ts +2 -2
  28. package/dist/lib/HeapParser.js +2 -2
  29. package/dist/lib/InternalValueSetter.d.ts +1 -1
  30. package/dist/lib/InternalValueSetter.js +1 -1
  31. package/dist/lib/NodeHeap.d.ts +1 -1
  32. package/dist/lib/NodeHeap.js +1 -1
  33. package/dist/lib/PackageInfoLoader.js +1 -1
  34. package/dist/lib/ProcessManager.d.ts +1 -1
  35. package/dist/lib/ProcessManager.js +1 -1
  36. package/dist/lib/Serializer.d.ts +1 -1
  37. package/dist/lib/Serializer.js +1 -1
  38. package/dist/lib/StringLoader.d.ts +2 -2
  39. package/dist/lib/StringLoader.js +2 -2
  40. package/dist/lib/Types.d.ts +6 -1
  41. package/dist/lib/Types.js +1 -1
  42. package/dist/lib/Utils.d.ts +1 -1
  43. package/dist/lib/Utils.js +31 -22
  44. package/dist/lib/heap-data/HeapEdge.d.ts +2 -2
  45. package/dist/lib/heap-data/HeapEdge.js +2 -2
  46. package/dist/lib/heap-data/HeapLocation.d.ts +2 -2
  47. package/dist/lib/heap-data/HeapLocation.js +2 -2
  48. package/dist/lib/heap-data/HeapNode.d.ts +3 -2
  49. package/dist/lib/heap-data/HeapNode.js +6 -2
  50. package/dist/lib/heap-data/HeapSnapshot.d.ts +2 -2
  51. package/dist/lib/heap-data/HeapSnapshot.js +3 -3
  52. package/dist/lib/heap-data/HeapStringNode.d.ts +2 -2
  53. package/dist/lib/heap-data/HeapStringNode.js +2 -2
  54. package/dist/lib/heap-data/HeapUtils.d.ts +2 -2
  55. package/dist/lib/heap-data/HeapUtils.js +2 -2
  56. package/dist/lib/heap-data/MemLabTagStore.d.ts +1 -1
  57. package/dist/lib/leak-filters/BaseLeakFilter.rule.d.ts +1 -1
  58. package/dist/lib/leak-filters/BaseLeakFilter.rule.js +1 -1
  59. package/dist/lib/leak-filters/LeakFilterRuleList.d.ts +1 -1
  60. package/dist/lib/leak-filters/LeakFilterRuleList.js +1 -1
  61. package/dist/lib/leak-filters/LeakObjectFilter.d.ts +1 -1
  62. package/dist/lib/leak-filters/LeakObjectFilter.js +1 -1
  63. package/dist/lib/leak-filters/rules/FilterByExternalFilter.rule.d.ts +1 -1
  64. package/dist/lib/leak-filters/rules/FilterByExternalFilter.rule.js +1 -1
  65. package/dist/lib/leak-filters/rules/FilterDetachedDOMElement.rule.d.ts +1 -1
  66. package/dist/lib/leak-filters/rules/FilterDetachedDOMElement.rule.js +1 -1
  67. package/dist/lib/leak-filters/rules/FilterHermesNode.rule.d.ts +1 -1
  68. package/dist/lib/leak-filters/rules/FilterHermesNode.rule.js +1 -1
  69. package/dist/lib/leak-filters/rules/FilterOverSizedNodeAsLeak.rule.d.ts +1 -1
  70. package/dist/lib/leak-filters/rules/FilterOverSizedNodeAsLeak.rule.js +1 -1
  71. package/dist/lib/leak-filters/rules/FilterStackTraceFrame.rule.d.ts +1 -1
  72. package/dist/lib/leak-filters/rules/FilterStackTraceFrame.rule.js +1 -1
  73. package/dist/lib/leak-filters/rules/FilterTrivialNode.rule.d.ts +1 -1
  74. package/dist/lib/leak-filters/rules/FilterTrivialNode.rule.js +1 -1
  75. package/dist/lib/leak-filters/rules/FilterUnmountedFiberNode.rule.d.ts +1 -1
  76. package/dist/lib/leak-filters/rules/FilterUnmountedFiberNode.rule.js +1 -1
  77. package/dist/logger/LeakClusterLogger.d.ts +1 -1
  78. package/dist/logger/LeakClusterLogger.js +1 -1
  79. package/dist/logger/LeakTraceDetailsLogger.d.ts +1 -1
  80. package/dist/logger/LeakTraceDetailsLogger.js +1 -1
  81. package/dist/modes/BaseMode.d.ts +1 -1
  82. package/dist/modes/BaseMode.js +1 -1
  83. package/dist/modes/InteractionTestMode.d.ts +1 -1
  84. package/dist/modes/InteractionTestMode.js +1 -1
  85. package/dist/modes/MeasureMode.d.ts +1 -1
  86. package/dist/modes/MeasureMode.js +1 -1
  87. package/dist/modes/RunningModes.d.ts +1 -1
  88. package/dist/modes/RunningModes.js +1 -1
  89. package/dist/paths/TraceFinder.d.ts +1 -1
  90. package/dist/paths/TraceFinder.js +41 -42
  91. package/dist/trace-cluster/ClusterUtils.d.ts +1 -1
  92. package/dist/trace-cluster/ClusterUtils.js +1 -1
  93. package/dist/trace-cluster/ClusterUtilsHelper.d.ts +1 -1
  94. package/dist/trace-cluster/ClusterUtilsHelper.js +1 -1
  95. package/dist/trace-cluster/ClusteringHeuristics.d.ts +1 -1
  96. package/dist/trace-cluster/ClusteringHeuristics.js +1 -1
  97. package/dist/trace-cluster/EvalutationMetric.d.ts +1 -1
  98. package/dist/trace-cluster/EvalutationMetric.js +1 -1
  99. package/dist/trace-cluster/SequentialClustering.d.ts +17 -0
  100. package/dist/trace-cluster/SequentialClustering.js +47 -0
  101. package/dist/trace-cluster/TraceBucket.d.ts +2 -1
  102. package/dist/trace-cluster/TraceBucket.js +4 -1
  103. package/dist/trace-cluster/TraceElement.d.ts +3 -1
  104. package/dist/trace-cluster/TraceElement.js +7 -1
  105. package/dist/trace-cluster/strategies/MLTraceSimilarityStrategy.d.ts +1 -1
  106. package/dist/trace-cluster/strategies/MLTraceSimilarityStrategy.js +1 -1
  107. package/dist/trace-cluster/strategies/TraceAsClusterStrategy.d.ts +1 -1
  108. package/dist/trace-cluster/strategies/TraceAsClusterStrategy.js +1 -1
  109. package/dist/trace-cluster/strategies/TraceSimilarityStrategy.d.ts +1 -1
  110. package/dist/trace-cluster/strategies/TraceSimilarityStrategy.js +1 -1
  111. package/dist/trace-cluster/strategies/machine-learning/DistanceMatrix.d.ts +1 -1
  112. package/dist/trace-cluster/strategies/machine-learning/DistanceMatrix.js +1 -1
  113. package/dist/trace-cluster/strategies/machine-learning/HAC.d.ts +1 -1
  114. package/dist/trace-cluster/strategies/machine-learning/HAC.js +1 -1
  115. package/dist/trace-cluster/strategies/machine-learning/Ngram.d.ts +1 -1
  116. package/dist/trace-cluster/strategies/machine-learning/Ngram.js +1 -1
  117. package/dist/trace-cluster/strategies/machine-learning/TfidfVectorizer.d.ts +1 -1
  118. package/dist/trace-cluster/strategies/machine-learning/TfidfVectorizer.js +1 -1
  119. package/package.json +1 -1
package/dist/lib/Utils.js CHANGED
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
12
12
  if (k2 === undefined) k2 = k;
@@ -136,10 +136,10 @@ function isDetachedFiberNode(node) {
136
136
  // any detached DOM nodes (e.g., HTMLXXElement, IntersectionObserver etc.)
137
137
  // that are not internal nodes.
138
138
  function isDetachedDOMNode(node, args = {}) {
139
- if (!node || typeof node.name !== 'string') {
139
+ let name = null;
140
+ if (!node || typeof (name = node.name) !== 'string') {
140
141
  return false;
141
142
  }
142
- const name = node.name;
143
143
  if (isFiberNode(node)) {
144
144
  return false;
145
145
  }
@@ -213,13 +213,16 @@ function isPendingActivityNode(node) {
213
213
  return node.type === 'synthetic' && node.name === 'Pending activities';
214
214
  }
215
215
  function isRootNode(node, opt = {}) {
216
- if (!node || !node.name) {
216
+ if (!node) {
217
217
  return false;
218
218
  }
219
219
  // consider Hermes snapshot GC roots
220
220
  if (Config_1.default.jsEngine === 'hermes') {
221
221
  return node.name === '(GC roots)' || node.name === '(GC Roots)';
222
222
  }
223
+ if (node.id === 0 || node.id === 1) {
224
+ return true;
225
+ }
223
226
  // the window object
224
227
  if (node.type === 'native' && node.name.indexOf('Window') === 0) {
225
228
  return true;
@@ -1335,7 +1338,8 @@ function isMeaningfulNode(node) {
1335
1338
  if (!node) {
1336
1339
  return false;
1337
1340
  }
1338
- if (Config_1.default.nodeNameBlockList.has(node.name)) {
1341
+ const nodeName = node.name;
1342
+ if (Config_1.default.nodeNameBlockList.has(nodeName)) {
1339
1343
  return false;
1340
1344
  }
1341
1345
  if (isFiberNode(node)) {
@@ -1346,13 +1350,13 @@ function isMeaningfulNode(node) {
1346
1350
  }
1347
1351
  // More details in https://github.com/ChromeDevTools/devtools-frontend
1348
1352
  // under front_end/heap_snapshot_worker/HeapSnapshot.ts
1349
- if (node.name === 'system / NativeContext') {
1353
+ if (nodeName === 'system / NativeContext') {
1350
1354
  return false;
1351
1355
  }
1352
- if (node.name === 'system / SourcePositionTableWithFrameCache') {
1356
+ if (nodeName === 'system / SourcePositionTableWithFrameCache') {
1353
1357
  return false;
1354
1358
  }
1355
- if (node.name === '(map descriptors)') {
1359
+ if (nodeName === '(map descriptors)') {
1356
1360
  return false;
1357
1361
  }
1358
1362
  if (node.type === 'code') {
@@ -1367,44 +1371,49 @@ function isMeaningfulEdge(edge, options = {}) {
1367
1371
  if (source.id === node.id) {
1368
1372
  return false;
1369
1373
  }
1370
- if (typeof edge.name_or_index === 'string' &&
1371
- Config_1.default.edgeNameBlockList.has(edge.name_or_index)) {
1374
+ const edgeNameOrIndex = edge.name_or_index;
1375
+ if (typeof edgeNameOrIndex === 'string' &&
1376
+ Config_1.default.edgeNameBlockList.has(edgeNameOrIndex)) {
1372
1377
  return false;
1373
1378
  }
1379
+ const edgeType = edge.type;
1374
1380
  // shortcut edge may be meaningful edges
1375
1381
  // --forceUpdate (variable)---> [native_bind]
1376
1382
  // --bound_argument_0 (shortcut)---> [FiberNode]
1377
- if (edge.type === 'weak' /* || edge.type === 'shortcut' */) {
1383
+ if (edgeType === 'weak' /* || edge.type === 'shortcut' */) {
1378
1384
  return false;
1379
1385
  }
1380
1386
  if (options.excludeWeakMapEdge && isWeakMapEdgeToKey(edge)) {
1381
1387
  return false;
1382
1388
  }
1383
- if (options.visited && options.visited[node.nodeIndex]) {
1389
+ const nodeIndex = node.nodeIndex;
1390
+ if (options.visited && options.visited[nodeIndex]) {
1384
1391
  return false;
1385
1392
  }
1386
- if (options.queued && options.queued[node.nodeIndex]) {
1393
+ if (options.queued && options.queued[nodeIndex]) {
1387
1394
  return false;
1388
1395
  }
1389
- if (!options.includeString && node.type === 'string') {
1396
+ const nodeType = node.type;
1397
+ if (!options.includeString && nodeType === 'string') {
1390
1398
  return false;
1391
1399
  }
1392
- if (edge.type === 'internal' && edge.name_or_index === 'code') {
1400
+ if (edgeType === 'internal' && edgeNameOrIndex === 'code') {
1393
1401
  return false;
1394
1402
  }
1395
1403
  // More details about the following three special cases are available
1396
1404
  // in https://github.com/ChromeDevTools/devtools-frontend
1397
1405
  // under front_end/heap_snapshot_worker/HeapSnapshot.ts
1398
- if (edge.type === 'hidden' && edge.name_or_index === 'sloppy_function_map') {
1406
+ if (edgeType === 'hidden' && edgeNameOrIndex === 'sloppy_function_map') {
1399
1407
  return false;
1400
1408
  }
1401
- if (edge.type === 'hidden' && node.name === 'system / NativeContext') {
1409
+ const nodeName = node.name;
1410
+ if (edgeType === 'hidden' && nodeName === 'system / NativeContext') {
1402
1411
  return false;
1403
1412
  }
1404
1413
  // In v8, (map descriptors) are fixed-length descriptors arrays used
1405
1414
  // to hold JS descriptors.
1406
- if (node.type === 'array' && node.name === '(map descriptors)') {
1407
- const index = edge.name_or_index;
1415
+ if (edgeType === 'array' && nodeName === '(map descriptors)') {
1416
+ const index = edgeNameOrIndex;
1408
1417
  // only elements at particular indexes of (map descriptors) are holding
1409
1418
  // representative references to objects.
1410
1419
  if (index >= 2 || (typeof index === 'number' && index % 3 === 1)) {
@@ -1417,12 +1426,12 @@ function isMeaningfulEdge(edge, options = {}) {
1417
1426
  if (Config_1.default.jsEngine === 'hermes' && isDirectPropEdge(edge)) {
1418
1427
  return false;
1419
1428
  }
1420
- if (Config_1.default.ignoreInternalNode && node.name.includes('InternalNode')) {
1429
+ if (Config_1.default.ignoreInternalNode && nodeName.includes('InternalNode')) {
1421
1430
  return false;
1422
1431
  }
1423
1432
  if (Config_1.default.ignoreDevToolsConsoleLeak) {
1424
- const name = edge.name_or_index;
1425
- if (typeof name === 'string' && name.includes('DevTools console')) {
1433
+ if (typeof edgeNameOrIndex === 'string' &&
1434
+ edgeNameOrIndex.includes('DevTools console')) {
1426
1435
  return false;
1427
1436
  }
1428
1437
  }
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  import type { IHeapEdge } from '../Types';
12
12
  import type HeapSnapshot from './HeapSnapshot';
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  'use strict';
12
12
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  import type { IHeapLocation } from '../Types';
12
12
  import type HeapSnapshot from './HeapSnapshot';
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  'use strict';
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  import type { IHeapNode, IHeapEdge, Nullable, EdgeIterationCallback, Predicator, IHeapStringNode } from '../Types';
12
12
  import type HeapSnapshot from './HeapSnapshot';
@@ -36,6 +36,7 @@ export default class HeapNode implements IHeapNode {
36
36
  findReferrers(predicate: Predicator<IHeapEdge>): IHeapEdge[];
37
37
  get referrers(): HeapEdge[];
38
38
  forEachReferrer(callback: EdgeIterationCallback): void;
39
+ get hasPathEdge(): boolean;
39
40
  get pathEdge(): Nullable<HeapEdge>;
40
41
  set pathEdge(edge: Nullable<HeapEdge>);
41
42
  get nodeIndex(): number;
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  'use strict';
12
12
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -189,6 +189,10 @@ class HeapNode {
189
189
  }
190
190
  }
191
191
  }
192
+ get hasPathEdge() {
193
+ const heapSnapshot = this.heapSnapshot;
194
+ return heapSnapshot._nodeIdxHasPathEdge[this.idx] !== 0;
195
+ }
192
196
  get pathEdge() {
193
197
  const heapSnapshot = this.heapSnapshot;
194
198
  if (heapSnapshot._nodeIdxHasPathEdge[this.idx] === 0) {
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  import type { IHeapNode, IHeapNodes, IHeapEdges, IHeapSnapshot, HeapNodeTypes, HeapEdgeTypes, HeapSnapshotMeta, RawHeapSnapshot, NumericDictionary, Nullable } from '../Types';
12
12
  import HeapNode from './HeapNode';
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  'use strict';
12
12
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -100,7 +100,7 @@ class HeapSnapshot {
100
100
  forEachTraceable(cb) {
101
101
  for (let i = 0; i < this.length; i++) {
102
102
  const node = this.get(i);
103
- if (!node.pathEdge) {
103
+ if (!node.hasPathEdge) {
104
104
  continue;
105
105
  }
106
106
  const ret = cb(node, i);
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  import type { IHeapStringNode } from '../Types';
12
12
  import type HeapSnapshot from './HeapSnapshot';
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  'use strict';
12
12
  var __importDefault = (this && this.__importDefault) || function (mod) {
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  export declare const NodeDetachState: {
12
12
  Unknown: number;
@@ -4,9 +4,9 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
- * @lightSyntaxTransform
9
7
  * @format
8
+ * @lightSyntaxTransform
9
+ * @oncall ws_labs
10
10
  */
11
11
  'use strict';
12
12
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -16,7 +16,7 @@ export default class MemLabTaggedStore {
16
16
  private static instance;
17
17
  readonly id: string;
18
18
  static getInstance(): MemLabTaggedStore;
19
- static tagObject<T>(o: T, tag: string): void;
19
+ static tagObject<T extends object>(o: T, tag: string): void;
20
20
  static hasObjectWithTag(heap: IHeapSnapshot, tag: string): boolean;
21
21
  }
22
22
  export {};
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { MemLabConfig } from '../Config';
11
11
  import type { HeapNodeIdSet, IHeapNode, IHeapSnapshot } from '../Types';
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.LeakDecision = void 0;
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import { ILeakObjectFilterRule } from './BaseLeakFilter.rule';
11
11
  declare const _default: ILeakObjectFilterRule[];
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { MemLabConfig } from '../Config';
11
11
  import type { HeapNodeIdSet, IHeapNode, IHeapSnapshot } from '../Types';
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { MemLabConfig } from '../../Config';
11
11
  import type { HeapNodeIdSet, IHeapNode, IHeapSnapshot } from '../../Types';
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.FilterByExternalFilterRule = void 0;
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { MemLabConfig } from '../../Config';
11
11
  import type { IHeapNode } from '../../Types';
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { MemLabConfig } from '../../Config';
11
11
  import type { IHeapNode } from '../../Types';
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { MemLabConfig } from '../../Config';
11
11
  import type { IHeapNode } from '../../Types';
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.FilterOverSizedNodeAsLeakRule = void 0;
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { MemLabConfig } from '../../Config';
11
11
  import type { IHeapNode } from '../../Types';
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { MemLabConfig } from '../../Config';
11
11
  import type { IHeapNode } from '../../Types';
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { MemLabConfig } from '../../Config';
11
11
  import type { IHeapNode } from '../../Types';
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import { E2EStepInfo, TraceCluster, TraceClusterDiff, TraceClusterMetaInfo } from '../lib/Types';
11
11
  declare class LeakClusterLogger {
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
12
12
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { IHeapSnapshot, ISerializedInfo, LeakTracePathItem, Nullable } from '../lib/Types';
11
11
  declare class LeakTraceDetailsLogger {
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import type { E2EStepInfo, Config, IE2EScenarioVisitPlan, Optional } from '../lib/Types';
11
11
  import type { Page } from 'puppeteer';
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
12
12
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
@@ -4,8 +4,8 @@
4
4
  * This source code is licensed under the MIT license found in the
5
5
  * LICENSE file in the root directory of this source tree.
6
6
  *
7
- * @emails oncall+ws_labs
8
7
  * @format
8
+ * @oncall ws_labs
9
9
  */
10
10
  import BaseMode from './BaseMode';
11
11
  declare class InteractionTestMode extends BaseMode {
@@ -5,8 +5,8 @@
5
5
  * This source code is licensed under the MIT license found in the
6
6
  * LICENSE file in the root directory of this source tree.
7
7
  *
8
- * @emails oncall+ws_labs
9
8
  * @format
9
+ * @oncall ws_labs
10
10
  */
11
11
  var __importDefault = (this && this.__importDefault) || function (mod) {
12
12
  return (mod && mod.__esModule) ? mod : { "default": mod };