Skip to content

Fix #1710 Undocumented S3 Method Check Fails #1711

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix #1710 Undocumented S3 Method Check Fails
  • Loading branch information
Sadao committed Apr 20, 2025
commit 21962f5b8035a96092e9454a4583760a676d98bb
4 changes: 2 additions & 2 deletions R/utils-warn.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ warn_roxy_block <- function(block, message, parent = NULL, envir = parent.frame(

warn_roxy_function <- function(fun, message, parent = NULL, envir = parent.frame()) {
srcref <- attr(fun, "srcref")
file <- attr(srcref, "srcfile")$filename
line <- as.vector(srcref)[[1]]
file <- attr(srcref, "srcfile")$filename %||% '<unknown-file>'
line <- as.vector(srcref)[[1]] %||% 0

warn_roxy(file, line, message, parent = parent, envir = envir)
}
Expand Down
Loading