@memlab/cli 1.0.1 → 1.0.4

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 (100) hide show
  1. package/README.md +1 -1
  2. package/dist/BaseCommand.d.ts +1 -0
  3. package/dist/BaseCommand.js +21 -12
  4. package/dist/CommandLoader.d.ts +22 -0
  5. package/dist/CommandLoader.js +95 -0
  6. package/dist/Dispatcher.d.ts +1 -5
  7. package/dist/Dispatcher.js +8 -70
  8. package/dist/commands/MemLabRunCommand.d.ts +3 -1
  9. package/dist/commands/MemLabRunCommand.js +54 -2
  10. package/dist/commands/PrintSummaryCommand.js +1 -1
  11. package/dist/commands/RunMeasureCommand.d.ts +1 -0
  12. package/dist/commands/RunMeasureCommand.js +7 -0
  13. package/dist/commands/WarmupAppCommand.d.ts +1 -0
  14. package/dist/commands/WarmupAppCommand.js +6 -0
  15. package/dist/commands/heap/CheckLeakCommand.js +3 -1
  16. package/dist/commands/heap/GetRetainerTraceCommand.js +6 -2
  17. package/dist/commands/helper/GenerateCLIDocCommand.d.ts +31 -0
  18. package/dist/commands/helper/GenerateCLIDocCommand.js +207 -0
  19. package/dist/commands/helper/HelperCommand.js +2 -1
  20. package/dist/commands/snapshot/TakeSnapshotCommand.d.ts +1 -0
  21. package/dist/commands/snapshot/TakeSnapshotCommand.js +7 -0
  22. package/dist/options/HeapNodeIdOption.js +8 -9
  23. package/dist/options/heap/LeakClusterSizeThresholdOption.d.ts +19 -0
  24. package/dist/options/heap/LeakClusterSizeThresholdOption.js +43 -0
  25. package/dist/options/heap/OversizeThresholdOption.js +2 -2
  26. package/dist/options/heap/leak-filter/examples/large-object-as-leak.example.js +1 -0
  27. package/dist/options/lib/UniversalOptions.d.ts +17 -0
  28. package/dist/options/lib/UniversalOptions.js +27 -0
  29. package/package.json +2 -1
  30. package/dist/BaseCommand.d.ts.map +0 -1
  31. package/dist/Dispatcher.d.ts.map +0 -1
  32. package/dist/TypesThirdParty.d.ts.map +0 -1
  33. package/dist/commands/CleanLoggerDataCommand.d.ts.map +0 -1
  34. package/dist/commands/CleanRunDataCommand.d.ts.map +0 -1
  35. package/dist/commands/InitDirectoryCommand.d.ts.map +0 -1
  36. package/dist/commands/ListScenariosCommand.d.ts.map +0 -1
  37. package/dist/commands/MemLabRunCommand.d.ts.map +0 -1
  38. package/dist/commands/PrintSummaryCommand.d.ts.map +0 -1
  39. package/dist/commands/ResetDirectoryCommand.d.ts.map +0 -1
  40. package/dist/commands/RunMeasureCommand.d.ts.map +0 -1
  41. package/dist/commands/WarmupAppCommand.d.ts.map +0 -1
  42. package/dist/commands/heap/CheckLeakCommand.d.ts.map +0 -1
  43. package/dist/commands/heap/GetRetainerTraceCommand.d.ts.map +0 -1
  44. package/dist/commands/heap/HeapAnalysisCommand.d.ts.map +0 -1
  45. package/dist/commands/heap/HeapAnalysisSubCommandWrapper.d.ts.map +0 -1
  46. package/dist/commands/helper/HelperCommand.d.ts.map +0 -1
  47. package/dist/commands/helper/lib/CommandOrder.d.ts.map +0 -1
  48. package/dist/commands/helper/lib/Types.d.ts.map +0 -1
  49. package/dist/commands/query/QueryDefaultWorkDirCommand.d.ts.map +0 -1
  50. package/dist/commands/snapshot/CheckXvfbSupportCommand.d.ts.map +0 -1
  51. package/dist/commands/snapshot/Snapshot.d.ts.map +0 -1
  52. package/dist/commands/snapshot/TakeSnapshotCommand.d.ts.map +0 -1
  53. package/dist/commands/snapshot/WarmupAndSnapshotCommand.d.ts.map +0 -1
  54. package/dist/commands/test/BrowserTest.d.ts +0 -11
  55. package/dist/commands/test/BrowserTest.d.ts.map +0 -1
  56. package/dist/commands/test/BrowserTest.js +0 -41
  57. package/dist/commands/test/RunAllInteractionTestsCommand.d.ts +0 -19
  58. package/dist/commands/test/RunAllInteractionTestsCommand.d.ts.map +0 -1
  59. package/dist/commands/test/RunAllInteractionTestsCommand.js +0 -71
  60. package/dist/commands/test/RunInteractionTestCommand.d.ts +0 -19
  61. package/dist/commands/test/RunInteractionTestCommand.d.ts.map +0 -1
  62. package/dist/commands/test/RunInteractionTestCommand.js +0 -75
  63. package/dist/index.d.ts.map +0 -1
  64. package/dist/options/AppOption.d.ts.map +0 -1
  65. package/dist/options/DebugOption.d.ts.map +0 -1
  66. package/dist/options/DisableXvfbOption.d.ts.map +0 -1
  67. package/dist/options/FullExecutionOption.d.ts.map +0 -1
  68. package/dist/options/HeapNodeIdOption.d.ts.map +0 -1
  69. package/dist/options/HelperOption.d.ts.map +0 -1
  70. package/dist/options/InteractionOption.d.ts.map +0 -1
  71. package/dist/options/NumberOfRunsOption.d.ts.map +0 -1
  72. package/dist/options/RemoteBrowserDebugOption.d.ts.map +0 -1
  73. package/dist/options/RunningModeOption.d.ts.map +0 -1
  74. package/dist/options/ScenarioFileOption.d.ts.map +0 -1
  75. package/dist/options/SetContinuousTestOption.d.ts.map +0 -1
  76. package/dist/options/SetDeviceOption.d.ts.map +0 -1
  77. package/dist/options/SetWorkingDirectoryOption.d.ts.map +0 -1
  78. package/dist/options/SilentOption.d.ts.map +0 -1
  79. package/dist/options/SkipExtraOperationOption.d.ts.map +0 -1
  80. package/dist/options/SkipGCOption.d.ts.map +0 -1
  81. package/dist/options/SkipScreenshotOption.d.ts.map +0 -1
  82. package/dist/options/SkipScrollOption.d.ts.map +0 -1
  83. package/dist/options/SkipSnapshotOption.d.ts.map +0 -1
  84. package/dist/options/SkipWarmupOption.d.ts.map +0 -1
  85. package/dist/options/VerboseOption.d.ts.map +0 -1
  86. package/dist/options/heap/BaselineFileOption.d.ts.map +0 -1
  87. package/dist/options/heap/FinalFileOption.d.ts.map +0 -1
  88. package/dist/options/heap/JSEngineOption.d.ts.map +0 -1
  89. package/dist/options/heap/LogTraceAsClusterOption.d.ts.map +0 -1
  90. package/dist/options/heap/OversizeThresholdOption.d.ts.map +0 -1
  91. package/dist/options/heap/SnapshotDirectoryOption.d.ts.map +0 -1
  92. package/dist/options/heap/SnapshotFileOption.d.ts.map +0 -1
  93. package/dist/options/heap/TargetFileOption.d.ts.map +0 -1
  94. package/dist/options/heap/TraceAllObjectsOption.d.ts.map +0 -1
  95. package/dist/options/heap/leak-filter/LeakFilterFileOption.d.ts.map +0 -1
  96. package/dist/options/heap/leak-filter/examples/FilterLib.d.ts.map +0 -1
  97. package/dist/options/heap/leak-filter/examples/dup-string-as-leak.example-1.d.ts.map +0 -1
  98. package/dist/options/heap/leak-filter/examples/dup-string-as-leak.example-2.d.ts.map +0 -1
  99. package/dist/options/heap/leak-filter/examples/large-object-as-leak.example.d.ts.map +0 -1
  100. package/dist/runner.d.ts.map +0 -1
@@ -1,71 +0,0 @@
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
- * @format
10
- */
11
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
12
- if (k2 === undefined) k2 = k;
13
- var desc = Object.getOwnPropertyDescriptor(m, k);
14
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
15
- desc = { enumerable: true, get: function() { return m[k]; } };
16
- }
17
- Object.defineProperty(o, k2, desc);
18
- }) : (function(o, m, k, k2) {
19
- if (k2 === undefined) k2 = k;
20
- o[k2] = m[k];
21
- }));
22
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
23
- Object.defineProperty(o, "default", { enumerable: true, value: v });
24
- }) : function(o, v) {
25
- o["default"] = v;
26
- });
27
- var __importStar = (this && this.__importStar) || function (mod) {
28
- if (mod && mod.__esModule) return mod;
29
- var result = {};
30
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
31
- __setModuleDefault(result, mod);
32
- return result;
33
- };
34
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
35
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
36
- return new (P || (P = Promise))(function (resolve, reject) {
37
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
38
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
39
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
40
- step((generator = generator.apply(thisArg, _arguments || [])).next());
41
- });
42
- };
43
- var __importDefault = (this && this.__importDefault) || function (mod) {
44
- return (mod && mod.__esModule) ? mod : { "default": mod };
45
- };
46
- Object.defineProperty(exports, "__esModule", { value: true });
47
- const BaseCommand_1 = __importStar(require("../../BaseCommand"));
48
- const InitDirectoryCommand_1 = __importDefault(require("../InitDirectoryCommand"));
49
- const CleanRunDataCommand_1 = __importDefault(require("../CleanRunDataCommand"));
50
- const BrowserTest_1 = require("./BrowserTest");
51
- class RunAllInteractionTestsCommand extends BaseCommand_1.default {
52
- getCommandName() {
53
- return 'quick-interaction-test';
54
- }
55
- getDescription() {
56
- return 'Run all test scenarios in quick test mode';
57
- }
58
- getCategory() {
59
- return BaseCommand_1.CommandCategory.DEV;
60
- }
61
- getPrerequisites() {
62
- return [new CleanRunDataCommand_1.default(), new InitDirectoryCommand_1.default()];
63
- }
64
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
65
- run(_options) {
66
- return __awaiter(this, void 0, void 0, function* () {
67
- (0, BrowserTest_1.startInteractionTests)();
68
- });
69
- }
70
- }
71
- exports.default = RunAllInteractionTestsCommand;
@@ -1,19 +0,0 @@
1
- /**
2
- * Copyright (c) Meta Platforms, Inc. and affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- *
7
- * @emails oncall+ws_labs
8
- * @format
9
- */
10
- import type { CLIOptions } from '@memlab/core';
11
- import BaseCommand, { CommandCategory } from '../../BaseCommand';
12
- export default class RunInteractionTestCommand extends BaseCommand {
13
- getCommandName(): string;
14
- getDescription(): string;
15
- getCategory(): CommandCategory;
16
- getPrerequisites(): BaseCommand[];
17
- run(_options: CLIOptions): Promise<void>;
18
- }
19
- //# sourceMappingURL=RunInteractionTestCommand.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"RunInteractionTestCommand.d.ts","sourceRoot":"","sources":["../../../src/commands/test/RunInteractionTestCommand.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAC7C,OAAO,WAAW,EAAE,EAAC,eAAe,EAAC,MAAM,mBAAmB,CAAC;AAO/D,MAAM,CAAC,OAAO,OAAO,yBAA0B,SAAQ,WAAW;IAChE,cAAc,IAAI,MAAM;IAIxB,cAAc,IAAI,MAAM;IAIxB,WAAW,IAAI,eAAe;IAI9B,gBAAgB,IAAI,WAAW,EAAE;IAK3B,GAAG,CAAC,QAAQ,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAK/C"}
@@ -1,75 +0,0 @@
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
- * @format
10
- */
11
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
12
- if (k2 === undefined) k2 = k;
13
- var desc = Object.getOwnPropertyDescriptor(m, k);
14
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
15
- desc = { enumerable: true, get: function() { return m[k]; } };
16
- }
17
- Object.defineProperty(o, k2, desc);
18
- }) : (function(o, m, k, k2) {
19
- if (k2 === undefined) k2 = k;
20
- o[k2] = m[k];
21
- }));
22
- var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
23
- Object.defineProperty(o, "default", { enumerable: true, value: v });
24
- }) : function(o, v) {
25
- o["default"] = v;
26
- });
27
- var __importStar = (this && this.__importStar) || function (mod) {
28
- if (mod && mod.__esModule) return mod;
29
- var result = {};
30
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
31
- __setModuleDefault(result, mod);
32
- return result;
33
- };
34
- var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
35
- function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
36
- return new (P || (P = Promise))(function (resolve, reject) {
37
- function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
38
- function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
39
- function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
40
- step((generator = generator.apply(thisArg, _arguments || [])).next());
41
- });
42
- };
43
- var __importDefault = (this && this.__importDefault) || function (mod) {
44
- return (mod && mod.__esModule) ? mod : { "default": mod };
45
- };
46
- Object.defineProperty(exports, "__esModule", { value: true });
47
- const BaseCommand_1 = __importStar(require("../../BaseCommand"));
48
- const InitDirectoryCommand_1 = __importDefault(require("../InitDirectoryCommand"));
49
- const core_1 = require("@memlab/core");
50
- const CleanRunDataCommand_1 = __importDefault(require("../CleanRunDataCommand"));
51
- const Snapshot_1 = require("../snapshot/Snapshot");
52
- const api_1 = require("@memlab/api");
53
- class RunInteractionTestCommand extends BaseCommand_1.default {
54
- getCommandName() {
55
- return 'quick-interaction-test-single';
56
- }
57
- getDescription() {
58
- return 'Run test scenario in quick test mode';
59
- }
60
- getCategory() {
61
- return BaseCommand_1.CommandCategory.DEV;
62
- }
63
- getPrerequisites() {
64
- return [new CleanRunDataCommand_1.default(), new InitDirectoryCommand_1.default()];
65
- }
66
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
67
- run(_options) {
68
- return __awaiter(this, void 0, void 0, function* () {
69
- core_1.config.runningMode = core_1.modes.get('interaction-test', core_1.config);
70
- yield (0, api_1.warmup)();
71
- yield (0, Snapshot_1.runPageInteractionFromCLI)();
72
- });
73
- }
74
- }
75
- exports.default = RunInteractionTestCommand;
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,cAAc,UAAU,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"AppOption.d.ts","sourceRoot":"","sources":["../../src/options/AppOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,SAAU,SAAQ,UAAU;IAC/C,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAOnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DebugOption.d.ts","sourceRoot":"","sources":["../../src/options/DebugOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,WAAY,SAAQ,UAAU;IACjD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"DisableXvfbOption.d.ts","sourceRoot":"","sources":["../../src/options/DisableXvfbOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,iBAAkB,SAAQ,UAAU;IACvD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"FullExecutionOption.d.ts","sourceRoot":"","sources":["../../src/options/FullExecutionOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,mBAAoB,SAAQ,UAAU;IACzD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"HeapNodeIdOption.d.ts","sourceRoot":"","sources":["../../src/options/HeapNodeIdOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,UAAU;IACtD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAWnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"HelperOption.d.ts","sourceRoot":"","sources":["../../src/options/HelperOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,UAAU;IAClD,aAAa,IAAI,MAAM;IAIvB,iBAAiB,IAAI,MAAM;IAI3B,cAAc,IAAI,MAAM;IAKlB,KAAK,CAAC,OAAO,EAAE,YAAY,EAAE,KAAK,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAGrE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"InteractionOption.d.ts","sourceRoot":"","sources":["../../src/options/InteractionOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,iBAAkB,SAAQ,UAAU;IACvD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAOnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"NumberOfRunsOption.d.ts","sourceRoot":"","sources":["../../src/options/NumberOfRunsOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,SAAS,EAAE,YAAY,EAAC,MAAM,cAAc,CAAC;AAC1D,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,UAAU;IACxD,OAAc,gBAAgB,SAAM;IACpC,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,SAAS,CAAC;CAQxE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"RemoteBrowserDebugOption.d.ts","sourceRoot":"","sources":["../../src/options/RemoteBrowserDebugOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,wBAAyB,SAAQ,UAAU;IAC9D,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"RunningModeOption.d.ts","sourceRoot":"","sources":["../../src/options/RunningModeOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAQ,MAAM,cAAc,CAAC;AAE/C,MAAM,CAAC,OAAO,OAAO,iBAAkB,SAAQ,UAAU;IACvD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"ScenarioFileOption.d.ts","sourceRoot":"","sources":["../../src/options/ScenarioFileOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAQ,MAAM,cAAc,CAAC;AAG/C,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,UAAU;IACxD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAQnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SetContinuousTestOption.d.ts","sourceRoot":"","sources":["../../src/options/SetContinuousTestOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,UAAU;IAC7D,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SetDeviceOption.d.ts","sourceRoot":"","sources":["../../src/options/SetDeviceOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAW,MAAM,cAAc,CAAC;AASlD,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,UAAU;IACrD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SetWorkingDirectoryOption.d.ts","sourceRoot":"","sources":["../../src/options/SetWorkingDirectoryOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAY,YAAY,EAAC,MAAM,cAAc,CAAC;AAC1D,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,yBAA0B,SAAQ,UAAU;IAC/D,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CACT,MAAM,EAAE,YAAY,EACpB,IAAI,EAAE,UAAU,GACf,OAAO,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAC,CAAC;CAQ/B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SilentOption.d.ts","sourceRoot":"","sources":["../../src/options/SilentOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,UAAU;IAClD,aAAa,IAAI,MAAM;IAIvB,iBAAiB,IAAI,MAAM;IAI3B,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SkipExtraOperationOption.d.ts","sourceRoot":"","sources":["../../src/options/SkipExtraOperationOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,wBAAyB,SAAQ,UAAU;IAC9D,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SkipGCOption.d.ts","sourceRoot":"","sources":["../../src/options/SkipGCOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,YAAa,SAAQ,UAAU;IAClD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SkipScreenshotOption.d.ts","sourceRoot":"","sources":["../../src/options/SkipScreenshotOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,oBAAqB,SAAQ,UAAU;IAC1D,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SkipScrollOption.d.ts","sourceRoot":"","sources":["../../src/options/SkipScrollOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,UAAU;IACtD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SkipSnapshotOption.d.ts","sourceRoot":"","sources":["../../src/options/SkipSnapshotOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,UAAU;IACxD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SkipWarmupOption.d.ts","sourceRoot":"","sources":["../../src/options/SkipWarmupOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,UAAU;IACtD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"VerboseOption.d.ts","sourceRoot":"","sources":["../../src/options/VerboseOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,aAAc,SAAQ,UAAU;IACnD,aAAa,IAAI,MAAM;IAIvB,iBAAiB,IAAI,MAAM,GAAG,IAAI;IAIlC,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"BaselineFileOption.d.ts","sourceRoot":"","sources":["../../../src/options/heap/BaselineFileOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AAGzC,OAAO,EAAC,UAAU,EAAE,YAAY,EAAQ,MAAM,cAAc,CAAC;AAE7D,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,UAAU;IACxD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAcnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"FinalFileOption.d.ts","sourceRoot":"","sources":["../../../src/options/heap/FinalFileOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AAGzC,OAAO,EAAC,UAAU,EAAE,YAAY,EAAQ,MAAM,cAAc,CAAC;AAE7D,MAAM,CAAC,OAAO,OAAO,eAAgB,SAAQ,UAAU;IACrD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAcnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"JSEngineOption.d.ts","sourceRoot":"","sources":["../../../src/options/heap/JSEngineOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AAEzC,OAAO,EAAC,UAAU,EAAE,YAAY,EAAkB,MAAM,cAAc,CAAC;AAEvE,MAAM,CAAC,OAAO,OAAO,cAAe,SAAQ,UAAU;IACpD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAanE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"LogTraceAsClusterOption.d.ts","sourceRoot":"","sources":["../../../src/options/heap/LogTraceAsClusterOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,UAAU;IAC7D,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAKnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"OversizeThresholdOption.d.ts","sourceRoot":"","sources":["../../../src/options/heap/OversizeThresholdOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,UAAU;IAC7D,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAOxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CASnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SnapshotDirectoryOption.d.ts","sourceRoot":"","sources":["../../../src/options/heap/SnapshotDirectoryOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AAGzC,OAAO,EAAC,UAAU,EAAE,YAAY,EAAQ,MAAM,cAAc,CAAC;AAE7D,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,UAAU;IAC7D,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAWnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"SnapshotFileOption.d.ts","sourceRoot":"","sources":["../../../src/options/heap/SnapshotFileOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AAGzC,OAAO,EAAC,UAAU,EAAE,YAAY,EAAQ,MAAM,cAAc,CAAC;AAE7D,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,UAAU;IACxD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAWnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"TargetFileOption.d.ts","sourceRoot":"","sources":["../../../src/options/heap/TargetFileOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AAGzC,OAAO,EAAC,UAAU,EAAE,YAAY,EAAQ,MAAM,cAAc,CAAC;AAE7D,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,UAAU;IACtD,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAcnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"TraceAllObjectsOption.d.ts","sourceRoot":"","sources":["../../../src/options/heap/TraceAllObjectsOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AAExC,MAAM,CAAC,OAAO,OAAO,qBAAsB,SAAQ,UAAU;IAC3D,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIlB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAMnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"LeakFilterFileOption.d.ts","sourceRoot":"","sources":["../../../../src/options/heap/leak-filter/LeakFilterFileOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAC,UAAU,EAAC,MAAM,UAAU,CAAC;AACzC,OAAO,KAAK,EAAC,YAAY,EAAC,MAAM,cAAc,CAAC;AAC/C,OAAO,EAAC,UAAU,EAAQ,MAAM,cAAc,CAAC;AAE/C,MAAM,CAAC,OAAO,OAAO,oBAAqB,SAAQ,UAAU;IAC1D,aAAa,IAAI,MAAM;IAIvB,cAAc,IAAI,MAAM;IAIxB,gBAAgB,IAAI,MAAM,EAAE;IAItB,KAAK,CAAC,MAAM,EAAE,YAAY,EAAE,IAAI,EAAE,UAAU,GAAG,OAAO,CAAC,IAAI,CAAC;CAMnE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"FilterLib.d.ts","sourceRoot":"","sources":["../../../../../src/options/heap/leak-filter/examples/FilterLib.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAC,aAAa,EAAQ,MAAM,cAAc,CAAC;AAElD,wBAAgB,OAAO,CAAC,QAAQ,EAAE,aAAa,GAAG,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAcvE"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"dup-string-as-leak.example-1.d.ts","sourceRoot":"","sources":["../../../../../src/options/heap/leak-filter/examples/dup-string-as-leak.example-1.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAC,SAAS,EAAE,aAAa,EAAE,aAAa,EAAQ,MAAM,cAAc,CAAC;AAK5E,wBAAgB,gBAAgB,CAC9B,QAAQ,EAAE,aAAa,EAEvB,cAAc,EAAE,aAAa,GAC5B,IAAI,CAEN;AAGD,wBAAgB,UAAU,CAAC,IAAI,EAAE,SAAS,GAAG,OAAO,CAMnD"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"dup-string-as-leak.example-2.d.ts","sourceRoot":"","sources":["../../../../../src/options/heap/leak-filter/examples/dup-string-as-leak.example-2.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EAAC,SAAS,EAAE,aAAa,EAAE,aAAa,EAAQ,MAAM,cAAc,CAAC;;;;;AAsB5E,wBAA8C"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"large-object-as-leak.example.d.ts","sourceRoot":"","sources":["../../../../../src/options/heap/leak-filter/examples/large-object-as-leak.example.js"],"names":[],"mappings":"AAUiB,mFAEhB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"runner.d.ts","sourceRoot":"","sources":["../src/runner.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAMH,wBAAsB,GAAG,IAAI,OAAO,CAAC,IAAI,CAAC,CAGzC"}