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
If we have something like f <- function(x=y) { x }, and two calls: f(3) and f(). The first one, does not require y, while the second one does. Currently, the static slicer includes and traces y both times. However, for the first call this is not necessary! We can potentially flag saturated arguments when visiting a function call.
The text was updated successfully, but these errors were encountered:
If we have something like
f <- function(x=y) { x }
, and two calls:f(3)
andf()
. The first one, does not requirey
, while the second one does. Currently, the static slicer includes and tracesy
both times. However, for the first call this is not necessary! We can potentially flag saturated arguments when visiting a function call.The text was updated successfully, but these errors were encountered: