You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/modules/ROOT/pages/nrepl-api/ops.adoc
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -442,6 +442,8 @@ Returns::
442
442
443
443
Return a map of information about the specified symbol.
444
444
445
+
Note: Documentation may be incomplete; not all return keys are described.
446
+
445
447
Required parameters::
446
448
{blank}
447
449
@@ -460,9 +462,15 @@ If specified, the value will be concatenated to that of ``orchard.meta/var-meta-
460
462
461
463
462
464
Returns::
465
+
* `:arglists-str` The arguments list(s) accepted by the symbol, as a string, if applicable.
466
+
* `:column` The column number where the symbol is defined.
463
467
* `:doc-block-tags-fragments` May be absent. Represent the 'param', 'returns' and 'throws' sections a Java doc comment. It's a vector of fragments, where fragment is a map with ``:type`` ('text' or 'html') and ``:content`` plain text or html markup, respectively
464
468
* `:doc-first-sentence-fragments` May be absent. Represents the first sentence of a Java doc comment. It's a vector of fragments, where fragment is a map with ``:type`` ('text' or 'html') and ``:content`` plain text or html markup, respectively
465
469
* `:doc-fragments` May be absent. Represents the body of a Java doc comment, including the first sentence and excluding any block tags. It's a vector of fragments, where fragment is a map with ``:type`` ('text' or 'html') and ``:content`` plain text or html markup, respectively
470
+
* `:file` Either a URI or a relative path where the symbol is defined.
471
+
* `:line` The line number the symbol is defined.
472
+
* `:name` The unqualitfied name of the symbol.
473
+
* `:ns` The namespace the symbol belongs to.
466
474
* `:status` done
467
475
468
476
@@ -879,7 +887,7 @@ Required parameters::
879
887
880
888
Optional parameters::
881
889
* `:display-namespaces` How to print namespace-qualified symbols in the result. Possible values are "qualified" to leave all namespaces qualified, "none" to elide all namespaces, or "tidy" to replace namespaces with their aliases in the given namespace. Defaults to "qualified".
882
-
* `:expander` The macroexpansion function to use. Possible values are "macroexpand-1", "macroexpand", or "macroexpand-all". Defaults to "macroexpand".
890
+
* `:expander` The macroexpansion function to use. Possible values are "macroexpand-1", "macroexpand", "macroexpand-step", or "macroexpand-all". Defaults to "macroexpand".
883
891
* `:ns` The namespace in which to perform the macroexpansion. Defaults to 'user for Clojure and 'cljs.user for ClojureScript.
884
892
* `:print-meta` If truthy, also print metadata of forms.
0 commit comments