Function: nrepl-sync-request:eval

nrepl-sync-request:eval is a byte-compiled function defined in nrepl-client.el.

Signature

(nrepl-sync-request:eval INPUT CONNECTION &optional NS TOOLING)

Documentation

Send the INPUT to the nREPL server synchronously.

The request is dispatched via CONNECTION. If NS is non-nil, include it in the request If TOOLING is non-nil the evaluation is done using the tooling nREPL session.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl-sync-request:eval (input connection &optional ns tooling)
  "Send the INPUT to the nREPL server synchronously.
The request is dispatched via CONNECTION.
If NS is non-nil, include it in the request
If TOOLING is non-nil the evaluation is done using the tooling nREPL
session."
  (nrepl-send-sync-request
   (nrepl--eval-request input ns)
   connection
   nil
   tooling))