summaryrefslogtreecommitdiff
path: root/deps/v8/tools/system-analyzer/view/helper.mjs
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/tools/system-analyzer/view/helper.mjs')
-rw-r--r--deps/v8/tools/system-analyzer/view/helper.mjs4
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/tools/system-analyzer/view/helper.mjs b/deps/v8/tools/system-analyzer/view/helper.mjs
index 4389a92317..de5abbd3dc 100644
--- a/deps/v8/tools/system-analyzer/view/helper.mjs
+++ b/deps/v8/tools/system-analyzer/view/helper.mjs
@@ -335,8 +335,8 @@ export class Debouncer {
}
call(...args) {
- this.clear() this._timeoutId =
- window.setTimeout(this._callback, this._timeout, ...args)
+ this.clear();
+ this._timeoutId = window.setTimeout(this._callback, this._timeout, ...args);
}
clear() {