Coverage report: /development/source/library/org/datagraph/spocq-shard/src/core/patches/sbcl-20181008.lisp
| Kind | Covered | All | % |
| expression | 0 | 52 | 0.0 |
| branch | 0 | 2 | 0.0 |
Key
Not instrumented
Conditionalized out
Executed
Not executed
Both branches taken
One branch taken
Neither branch taken
1
;;; -*- package: sb-kernel; -*-
7
(handler-case (SB-EXT:ASSERT-VERSION->= 1 4)
9
(defun stream-misc-dispatch (stream operation &optional arg1 arg2)
10
(declare (type stream stream) (ignore arg2))
13
;; Return T if input available, :EOF for end-of-file, otherwise NIL.
14
(let ((char (read-char-no-hang stream nil :eof)))
15
(when (characterp char)
16
(unread-char char stream))
19
(unread-char arg1 stream))
25
(clear-output stream))
27
(force-output stream))
29
(finish-output stream))
31
(stream-element-type stream))
33
(stream-element-type-stream-element-mode
34
(stream-element-type stream)))
35
(:stream-external-format
36
(stream-external-format stream))
38
(interactive-stream-p stream))
46
(file-string-length stream arg1))
48
(file-position stream arg1))))