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
the binding should be located in ... the global environment
I'd like the .Call to show in the graph, how to achieve this?
calling<-function() {
.Call(foo)
}
flow::flow_view_deps(calling)
#> Warning in read.dcf(system.file("DESCRIPTION", package = pkg)): cannot open#> compressed file '', probable reason 'No such file or directory'#> Error in read.dcf(system.file("DESCRIPTION", package = pkg)): cannot open the connection
flow::flow_view_deps(tibble::lst(calling))
#> Warning in read.dcf(system.file("DESCRIPTION", package = pkg)): cannot open#> compressed file '', probable reason 'No such file or directory'#> Error in read.dcf(system.file("DESCRIPTION", package = pkg)): cannot open the connection
This shouldn't be documented until it's working properly, that's a mistake.
The full citation has another error:
The binding should be located in a package namespace or the global environment
-> the package environment (on the search path), not the namespace
I don't remember the details, but I remember that treating the global env as a namespace was more difficult than we might think.
The second part of the request is #86 I think. Basically now we remove all base functions from our data, instead we'd need to hide them by default and then we could use "promote" to show them as nodes or "demote" to show them as extra info.
Is this supported according to the docs?
I'd like the
.Call
to show in the graph, how to achieve this?Created on 2024-06-24 with reprex v2.1.0
The text was updated successfully, but these errors were encountered: