Kind | Covered | All | % |
expression | 2 | 2 | 100.0 |
branch | 0 | 0 | nil |
1
;; -*- mode: Lisp; Syntax: Common-Lisp; -*-
2
;;;
3
;;; Copyright (c) 2006 by the authors.
4
;;;
5
;;; See LICENCE for details.
6
7
(in-package :cl-perec)
8
9
(define-copy-protocol copy-query)
10
11
(define-copy-method (copy-one copy-query) ((thing t) htable)
12
thing)
13