Print the JSON encoding of a vl-udpline-p to ps.
(vl-jp-udpline x &key (ps 'ps)) → ps
Function:
(defun vl-jp-udpline-fn (x ps) (declare (xargs :stobjs (ps))) (declare (xargs :guard (vl-udpline-p x))) (let ((__function__ 'vl-jp-udpline)) (declare (ignorable __function__)) (vl-ps-seq (vl-print "{\"tag\": ") (jp-sym ':vl-udpline) (vl-print ", ") (vl-print-str "\"inputs\": ") (vl-jp-udpentrylist (vl-udpline->inputs x)) (vl-println? ", ") (vl-print-str "\"output\": ") (vl-jp-udpsymbol (vl-udpline->output x)) (vl-println? ", ") (vl-print-str "\"current\": ") (vl-jp-maybe-udpsymbol (vl-udpline->current x)) (vl-println? "}"))))