runHandler<R> method
- Zone self,
- ZoneDelegate parent,
- Zone zone,
- R f(
runHandler Handler to profile runHandler zone events
Implementation
R runHandler<R>(Zone self, ZoneDelegate parent, Zone zone, R Function()f) {
try {
return parent.run(zone, f);
} finally {
_makeStackFrames(Trace.current(stackDepth));
}
}