Print the JSON encoding of a vl-always-p to ps.
(vl-jp-always x &key (ps 'ps)) → ps
Function:
(defun vl-jp-always-fn (x ps) (declare (xargs :stobjs (ps))) (declare (xargs :guard (vl-always-p x))) (let ((__function__ 'vl-jp-always)) (declare (ignorable __function__)) (vl-ps-seq (vl-print "{\"tag\": ") (jp-sym ':vl-always) (vl-print ", ") (vl-print-str "\"type\": ") (vl-jp-alwaystype (vl-always->type x)) (vl-println? ", ") (vl-print-str "\"stmt\": ") (vl-jp-stmt (vl-always->stmt x)) (vl-println? ", ") (vl-print-str "\"atts\": ") (vl-jp-atts (vl-always->atts x)) (vl-println? ", ") (vl-print-str "\"loc\": ") (vl-jp-location (vl-always->loc x)) (vl-println? "}"))))