summaryrefslogtreecommitdiff
path: root/deps/v8/tools/system-analyzer/app-model.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/system-analyzer/app-model.mjs')
-rw-r--r--deps/v8/tools/system-analyzer/app-model.mjs7
1 files changed, 7 insertions, 0 deletions
diff --git a/deps/v8/tools/system-analyzer/app-model.mjs b/deps/v8/tools/system-analyzer/app-model.mjs
index 821d3a2c17..37fa5ae2f3 100644
--- a/deps/v8/tools/system-analyzer/app-model.mjs
+++ b/deps/v8/tools/system-analyzer/app-model.mjs
@@ -8,6 +8,7 @@ class State {
#ic;
#selectedMapLogEvents;
#selectedIcLogEvents;
+ #selectedSourcePositionLogEvents;
#nofChunks;
#chunks;
#icTimeline;
@@ -81,6 +82,12 @@ class State {
if (!value) return;
this.#selectedMapLogEvents = value;
}
+ get selectedSourcePositionLogEvents() {
+ return this.#selectedSourcePositionLogEvents;
+ }
+ set selectedSourcePositionLogEvents(value) {
+ this.#selectedSourcePositionLogEvents = value;
+ }
get selectedIcLogEvents() {
return this.#selectedIcLogEvents;
}