Skip to content
Snippets Groups Projects
Commit c23651e9 authored by Chris Lamb's avatar Chris Lamb :eyes:
Browse files

Alias the actual object instance.

Gbp-Dch: ignore
parent 895f3987
No related branches found
No related tags found
No related merge requests found
......@@ -35,10 +35,11 @@ HEADER = binascii.a2b_hex("580a000000020003")
DUMP_RDB = r"""
hideOutput = lazyLoad(commandArgs(TRUE));
for (obj in ls(all.names = TRUE, sorted = TRUE)) {
cat("\n", obj, " (", typeof(get(obj)), ") = ", sep = "");
for (x in ls(all.names = TRUE, sorted = TRUE)) {
obj = get(x)
cat("\n", x, " (", typeof(obj), ") = ", sep = "");
for (line in deparse(get(obj)))
for (line in deparse(obj))
cat(line,"\n");
}"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment