search for: codesym

Displaying 2 results from an estimated 2 matches for "codesym".

Did you mean: codesm
2016 May 01
2
Storage of byte code-compiled functions in sysdata.rda
Thanks, Luke, for having a look to it. Sure, I can give you some reproducible example -- even in two degrees of completeness ;-): see below. Thanks again, Peter %----------------------------------- (I) first example %----------------------------------- Just to reproduce the error, on r-devel, try: install.packages("RobAStRDA") require(RobAStRDA) getFromNamespace(".RMXE", ns
2016 May 05
0
Storage of byte code-compiled functions in sysdata.rda
...in this incompatible way. Something to look for might be whether a call from within your R-devel somehow manages to run an R process with an older R version. Let me know what you find out. luke Here is the little utility, adapted from compiler::disassemble: getbc <- function (code) { .CodeSym <- as.name(".Code") disasm.const <- function(x) if (typeof(x) == "list" && length(x) > 0 && identical(x[[1]], .CodeSym)) disasm(x) else x disasm <- function(code) { code[[2]] <- compiler:::bcDecode(code[[2]...