summaryrefslogtreecommitdiff
path: root/lib/perf_hooks.js
diff options
context:
space:
mode:
authorKirill Fomichev <fanatid@ya.ru>2019-09-11 21:49:39 +0300
committerRich Trott <rtrott@gmail.com>2019-09-13 13:35:51 -0700
commit39eb894099f633dc1f3bc82888d4b92e603be679 (patch)
treeb99a6546a8b83434e0860fbddc5a2aedf1a04182 /lib/perf_hooks.js
parent7c9ee6dd88cc2908a3db70eba9c15eddd1112c50 (diff)
downloadandroid-node-v8-39eb894099f633dc1f3bc82888d4b92e603be679.tar.gz
android-node-v8-39eb894099f633dc1f3bc82888d4b92e603be679.tar.bz2
android-node-v8-39eb894099f633dc1f3bc82888d4b92e603be679.zip
perf_hooks: remove non-existent entries from inspect
Some of the milestones was removed in PR #21247 but entries not removed from function for inspect PerformanceNodeTiming. PR-URL: https://github.com/nodejs/node/pull/29528 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'lib/perf_hooks.js')
-rw-r--r--lib/perf_hooks.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/perf_hooks.js b/lib/perf_hooks.js
index 12909b047c..18b0332fea 100644
--- a/lib/perf_hooks.js
+++ b/lib/perf_hooks.js
@@ -205,15 +205,7 @@ class PerformanceNodeTiming extends PerformanceEntry {
bootstrapComplete: this.bootstrapComplete,
environment: this.environment,
loopStart: this.loopStart,
- loopExit: this.loopExit,
- thirdPartyMainStart: this.thirdPartyMainStart,
- thirdPartyMainEnd: this.thirdPartyMainEnd,
- clusterSetupStart: this.clusterSetupStart,
- clusterSetupEnd: this.clusterSetupEnd,
- moduleLoadStart: this.moduleLoadStart,
- moduleLoadEnd: this.moduleLoadEnd,
- preloadModuleLoadStart: this.preloadModuleLoadStart,
- preloadModuleLoadEnd: this.preloadModuleLoadEnd
+ loopExit: this.loopExit
};
}
}