Coverage report: /home/ellis/comp/core/lib/syn/gen/js/pkg.lisp

KindCoveredAll%
expression02 0.0
branch00nil
Key
Not instrumented
Conditionalized out
Executed
Not executed
 
Both branches taken
One branch taken
Neither branch taken
1
 ;;; js/pkg.lisp --- Javascript Code Generator
2
 
3
 ;; Simple JS Codegen
4
 
5
 ;;; Commentary:
6
 
7
 ;; The current state-of-the-art in CL is Parenscript.
8
 
9
 ;; ref: https://parenscript.common-lisp.dev
10
 ;;; Code:
11
 (defpackage :syn/gen/js
12
   (:nicknames :genjs :js)
13
   (:use :cl :syn/gen))
14
 
15
 (in-package :syn/gen/js)