Skip to content
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

Can we avoid requiring .data$ to suppress R CMD check NOTEs? #1500

Open
hadley opened this issue Oct 3, 2022 · 0 comments
Open

Can we avoid requiring .data$ to suppress R CMD check NOTEs? #1500

hadley opened this issue Oct 3, 2022 · 0 comments
Labels
feature a feature request or enhancement tidyeval

Comments

@hadley
Copy link
Member

hadley commented Oct 3, 2022

R CMD check, calls codetools::checkUsageEnv, which calls codetools::checkUsage, which calls codetools::collectUsage with a bunch of arguments set (that's where all the work happens). The key function appears to be codetools:::checkUsageEnterGlobal():

function (type, n, e, w) 
{
    if (type == "function") {
        if (exists(n, envir = w$globalenv, mode = "function")) {
            def <- get(n, envir = w$globalenv, mode = "function")
            if (typeof(def) == "closure") 
                checkCall(def, e, function(m) w$signal(m, w))
            else {
                isBuiltin <- typeof(def) == "builtin"
                checkPrimopCall(n, e, isBuiltin, function(m) w$signal(m, 
                  w))
            }
        }
        else if (!suppressVar(n, w$suppressUndefined)) 
            w$signal(paste("no visible global function definition for", 
                sQuote(n)), w)
    }
    else if (type == "variable") {
        if (!exists(n, w$globalenv) && !suppressVar(n, w$suppressUndefined)) 
            w$signal(paste("no visible binding for global variable", 
                sQuote(n)), w)
    }
    else if (type == "<<-") {
        if (!exists(n, w$globalenv)) 
            w$signal(paste("no visible binding for '<<-' assignment to", 
                sQuote(n)), w)
    }
}

But I think that's too far down the tree in order to be able to special case tidy-evaluation using functions.

The handlers for special base R functions are stored in environment codetools:::collectUsageHandler, so one possible last resort hack would be to register handlers these on load if R CMD check is running.

@lionel- lionel- added tidyeval feature a feature request or enhancement labels Feb 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature a feature request or enhancement tidyeval
Projects
None yet
Development

No branches or pull requests

2 participants