MCPcopy Index your code
hub / github.com/nodejs/node / includeTick

Method includeTick

deps/v8/tools/tickprocessor.mjs:823–832  ·  view source on GitHub ↗
(vmState)

Source from the content-addressed store, hash-verified

821 }
822
823 includeTick(vmState) {
824 if (this.negativeStateFilter_ != null) {
825 return this.negativeStateFilter_ != vmState;
826 } else if (this.stateFilter_ !== null) {
827 return this.stateFilter_ == vmState;
828 } else if (this.runtimeTimerFilter_ !== null) {
829 return this.currentRuntimeTimer == this.runtimeTimerFilter_;
830 }
831 return true;
832 }
833
834 processRuntimeTimerEvent(name) {
835 this.currentRuntimeTimer = name;

Callers 1

processTickMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected