Coverage report: /home/ellis/comp/core/lib/doc/reprex.lisp

KindCoveredAll%
expression06 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; reprex.lisp --- Reproducible Examples
2
 
3
 ;; Reproducible Examples API
4
 
5
 ;;; Commentary:
6
 
7
 ;; ref: https://reprex.tidyverse.org/
8
 
9
 ;;; Code:
10
 (in-package :doc)
11
 (defvar *reprex-format*)
12
 
13
 (defgeneric print-reprex (forms &optional stream))
14
 
15
 (defgeneric format-reprex (formatter forms &optional stream))
16
 
17
 (defmacro reprex (&body body)
18
   "Produce a 'reproducible example' from the forms in BODY."
19
   `(progn ,@body))