Function: comp-mvar-typeset

comp-mvar-typeset is a byte-compiled function defined in comp.el.gz.

Signature

(comp-mvar-typeset comp-mvar-typeset X)

Documentation

Access slot "typeset" of comp-mvar struct X.

List of possible types the mvar can assume. Each element cannot be a subtype of any other element of this slot.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/comp.el.gz
(cl-defstruct (comp-mvar (:constructor make--comp-mvar0)
                         (:include comp-cstr))
  "A meta-variable being a slot in the meta-stack."
  (id nil :type (or null number)
      :documentation "Unique id when in SSA form.")
  (slot nil :type (or fixnum symbol)
        :documentation "Slot number in the array if a number or
        `scratch' for scratch slot."))