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