You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Based on a discussion with Mathias, we want to see how Bubbleprof handles common patterns where a callback is being called recursively, to see how we should best treat these in terms of sums, averages and quantiles.
So some application including something like (pseudocode)
fn a (n, callback)
if (n > 0) setTimeout(a, n--, callback)
else callback()
The text was updated successfully, but these errors were encountered:
Based on a discussion with Mathias, we want to see how Bubbleprof handles common patterns where a callback is being called recursively, to see how we should best treat these in terms of sums, averages and quantiles.
So some application including something like (pseudocode)
The text was updated successfully, but these errors were encountered: