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