简体   繁体   中英

How to debug unexported functions from required packages?

A function, in a package I am using is giving me not so informative errors. I don't know what is going on. This function is called internally by the function I call. Something like this:

myres <- the.func(x)

the.func <-function(x){
    unexported.func(x)
}

How do I debug unexported.func ? Using debug doesn't work:

>debug(unexported.func)
Error in debug(undexported.func) : object 'unexported.func' not found

Update: Currently I do nested debug like the following. But I find it inconvenient:

>debug(the.func) # Initiate debugging for the outer function, so I get unexported.func loaded.
>myres <- the.func(x)
Browse[2]>debug(unexported.func) # Now I can call debug with this. 

You can access an unexported function via the ::: (triple-colon) operator, prefacing it with the package namespace name (ie the package name).

Assuming the pkgA contains the unexported function unexported.func() , we would set the debugging flag on unexported.func() using:

debug(pkgA:::unexported.func)

If you don't know which package (hence namespace) to use for a given unexported function, you can always determine this using getAnywhere() .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM