(defstruct (approximate-fun-type (:copier nil))
;; the smallest and largest numbers of arguments that this function
;; has been called with.
- (min-args sb!xc:call-arguments-limit :type fixnum)
- (max-args 0 :type fixnum)
+ (min-args sb!xc:call-arguments-limit
+ :type (integer 0 #.sb!xc:call-arguments-limit))
+ (max-args 0
+ :type (integer 0 #.sb!xc:call-arguments-limit))
;; a list of lists of the all the types that have been used in each
;; argument position
(types () :type list)
(name (missing-arg) :type keyword)
;; The position at which this keyword appeared. 0 if it appeared as the
;; first argument, etc.
- (position (missing-arg) :type fixnum)
+ (position (missing-arg)
+ :type (integer 0 #.sb!xc:call-arguments-limit))
;; a list of all the argument types that have been used with this keyword
(types nil :type list)
;; true if this keyword has appeared only in calls with an obvious
;;; checkins which aren't released. (And occasionally for internal
;;; versions, especially for internal versions off the main CVS
;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"0.9.0.4"
+"0.9.0.5"