-
Notifications
You must be signed in to change notification settings - Fork 129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Assess the feasibility of CodeDepends for all the static code analysis #41
Comments
Apparently, CodeDepends has been around since 2009. Maybe it is only now being revived. |
f <- function(){
b = get("x", envir = globalenv())
digest::digest(1234)
}
codetools::findGlobals(f) # Incorrectly ignores both x and digest().
CodeDepends::getInputs(body(f)) # Still ignores x but does find digest(). |
After more thought, I have decided against replacing
However, I am very eager to use |
I am considering reviving this issue after a recent conversation with @gmbecker at R/Pharma 2018.
But before I reopen this, I would strongly prefer to have
After I can confirm all the above is resolved, a couple initial steps on my end will be to
|
@wlandau The new way of installing bioconductor packages is via the As for 2, I'm extremely confident that The specific issue you linked to, though, is covered, I think. The behavior now should be that if |
To try to chip away at Lines 1 to 22 in 82ed556
Is this an approach you would be willing to consider for
|
Hmm... I just saw that |
A major priority and direction for development right now is to reduce the number of package dependencies, especially for components as central and sensitive as code analysis. (related: #562, #563). I may revisit On the other hand, I think people really appreciate functionality that converts |
Same as richfitz/remake#172.
The text was updated successfully, but these errors were encountered: