1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-17 16:47:22 +03:00
mal/impls/r/printer.r
Joel Martin 8a19f60386 Move implementations into impls/ dir
- Reorder README to have implementation list after "learning tool"
  bullet.

- This also moves tests/ and libs/ into impls. It would be preferrable
  to have these directories at the top level.  However, this causes
  difficulties with the wasm implementations which need pre-open
  directories and have trouble with paths starting with "../../". So
  in lieu of that, symlink those directories to the top-level.

- Move the run_argv_test.sh script into the tests directory for
  general hygiene.
2020-02-10 23:50:16 -06:00

58 lines
1.8 KiB
R

..printer.. <- TRUE
if(!exists("..types..")) source("types.r")
.pr_list <- function(lst, print_readably=TRUE, join="") {
concatl(lapply(lst,
function(e) .pr_str(e, print_readably)), sep=join)
}
.pr_str <- function(exp, print_readably=TRUE) {
pr <- print_readably
switch(class(exp),
"List"={
paste("(", .pr_list(exp, pr, " "), ")", sep="", collapse="")
},
"Vector"={
paste("[", .pr_list(exp, pr, " "), "]", sep="", collapse="")
},
"HashMap"={
hlst <- list()
if (length(exp) > 0) {
for(k in ls(exp)) {
hlst[[length(hlst)+1]] <- k
hlst[[length(hlst)+1]] <- exp[[k]]
}
}
paste("{", .pr_list(hlst, pr, " "), "}", sep="", collapse="")
},
"character"={
if (substring(exp,1,1) == "\u029e") {
concat(":", substring(exp,2))
} else if (substring(exp,1,8) == "<U+029E>") {
# terrible hack, appears in 3.1.1 on Utopic
concat(":", substring(exp,9))
} else if (print_readably) {
paste("\"",
gsub("\\n", "\\\\n",
gsub("\\\"", "\\\\\"",
gsub("\\\\", "\\\\\\\\", exp))),
"\"", sep="", collapse="")
} else {
exp
}
},
"Symbol"={ exp },
"nil"={ "nil" },
"logical"={ tolower(exp) },
"MalFunc"={
paste("(fn* ", .pr_str(exp$params,TRUE),
" ", .pr_str(exp$ast, TRUE), ")", sep="")
},
"function"={ "<#function>" },
"Atom"={
paste("(atom ", .pr_str(exp$val,TRUE), ")", sep="")
},
{ toString(exp) })
}