1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

Remove unneeded fixme

* doc/ref/goops.texi (Class Definition Protocol): Removed `*fixme
  Need to insert something here about checking that the value is not
  unbound'.  It's a fine detail, and also I imagine there could be a
  valid application that would choose to allow SCM_GOOPS_UNBOUND
  values to escape through here.
This commit is contained in:
Neil Jerram 2011-02-18 22:53:57 +00:00
parent bba1a2c73d
commit 27643d7097

View file

@ -2387,15 +2387,14 @@ calls@dots{}
@item @item
@code{compute-getter-method @var{class} @var{gns}} (generic) @code{compute-getter-method @var{class} @var{gns}} (generic)
@code{initialize} calls @code{compute-getter-method} for each of the class's @code{initialize} calls @code{compute-getter-method} for each of the
slots (as determined by @code{compute-slots}) that includes a class's slots (as determined by @code{compute-slots}) that includes a
@code{#:getter} or @code{#:accessor} slot option. @var{gns} is the @code{#:getter} or @code{#:accessor} slot option. @var{gns} is the
element of the @var{class} metaobject's @code{getters-n-setters} slot that element of the @var{class} metaobject's @code{getters-n-setters} slot
specifies how the slot in question is referenced and set, as described that specifies how the slot in question is referenced and set, as
above under @code{compute-get-n-set}. The applied method should create described above under @code{compute-get-n-set}. The applied method
and return a method that is specialized for instances of type @var{class} should create and return a method that is specialized for instances of
and uses the get closure to retrieve the slot's value. [ *fixme Need type @var{class} and uses the get closure to retrieve the slot's value.
to insert something here about checking that the value is not unbound. ]
@code{initialize} uses @code{add-method!} to add the returned method to @code{initialize} uses @code{add-method!} to add the returned method to
the generic function named by the slot definition's @code{#:getter} or the generic function named by the slot definition's @code{#:getter} or
@code{#:accessor} option. @code{#:accessor} option.