X-Git-Url: http://christophe.rhodes.io/gitweb/?p=swankr.git;a=blobdiff_plain;f=swank.R;h=1dc95b48800c305489292bc95f4cdb92f381e16e;hp=13164853c32efb8a4c0c4086229a7431c6d99516;hb=c15f7575dad3773f1f56e37f5943d8d277f76ee8;hpb=eb2756730af853555a941d7acb595c07169f3524 diff --git a/swank.R b/swank.R index 1316485..1dc95b4 100644 --- a/swank.R +++ b/swank.R @@ -418,3 +418,28 @@ computeRestartsForEmacs <- function (sldbState) { finally={sink(); output <- readLines(f); close(f)}) list(output, printToString(value)) } + +`swank:find-definitions-for-emacs` <- function(slimeConnection, sldbState, string) { + if(exists(string, envir = globalenv())) { + thing <- get(string, envir = globalenv()) + if(inherits(thing, "function")) { + body <- body(thing) + srcref <- attr(body, "srcref") + srcfile <- attr(body, "srcfile") + if(is.null(srcfile)) { + list() + } else { + filename <- get("filename", srcfile) + list(list(sprintf("function %s", string), + list(quote(`:location`), + list(quote(`:file`), sprintf("%s/%s", srcfile$wd, srcfile$filename)), + list(quote(`:line`), srcref[[2]][[1]], srcref[[2]][[2]]-1), + list()))) + } + } else { + list() + } + } else { + list() + } +}