Print the JSON encoding of a vl-bind-p to ps.
(vl-jp-bind x &key (ps 'ps)) → ps
Function:
(defun vl-jp-bind-fn (x ps) (declare (xargs :stobjs (ps))) (declare (xargs :guard (vl-bind-p x))) (let ((__function__ 'vl-jp-bind)) (declare (ignorable __function__)) (vl-ps-seq (vl-print "{\"tag\": ") (jp-sym ':vl-bind) (vl-print ", ") (vl-print-str "\"scope\": ") (jp-maybe-string (vl-bind->scope x)) (vl-println? ", ") (vl-print-str "\"addto\": ") (vl-jp-exprlist (vl-bind->addto x)) (vl-println? ", ") (vl-print-str "\"modinsts\": ") (vl-jp-modinstlist (vl-bind->modinsts x)) (vl-println? ", ") (vl-print-str "\"loc\": ") (vl-jp-location (vl-bind->loc x)) (vl-println? ", ") (vl-print-str "\"atts\": ") (vl-jp-atts (vl-bind->atts x)) (vl-println? "}"))))