summaryrefslogtreecommitdiffstats
path: root/struct.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-12-01 06:42:41 -0800
committerKaz Kylheku <kaz@kylheku.com>2015-12-01 06:42:41 -0800
commitc4619219afbe5eb123322f3d7ddebffa5b3a5dff (patch)
tree9784d0057653bc8946d1f7109900b93a5ceda5fb /struct.c
parent4e92c2d19382340d8e6c8fe71013d02bbc6065f4 (diff)
downloadtxr-c4619219afbe5eb123322f3d7ddebffa5b3a5dff.tar.gz
txr-c4619219afbe5eb123322f3d7ddebffa5b3a5dff.tar.bz2
txr-c4619219afbe5eb123322f3d7ddebffa5b3a5dff.zip
static-slot-ensure always processes subtypes.
* struct.c (static_slot_ensure): Restructured function so that the subtypes of stype are processed even if stype already has the static slot. This way static-slot-ensure can be used to overwrite a static slot value, not only establish one. And thus defmeth can redefine methods. * txr.1: Revamped static-slot-ensure doc, and added notes about redefining to defmeth.
Diffstat (limited to 'struct.c')
-rw-r--r--struct.c33
1 files changed, 17 insertions, 16 deletions
diff --git a/struct.c b/struct.c
index 9ac312aa..b55c57be 100644
--- a/struct.c
+++ b/struct.c
@@ -764,6 +764,7 @@ val static_slot_ensure(val stype, val sym, val newval, val no_error_p)
{
val self = lit("static-slot-ensure");
struct struct_type *st = stype_handle(&stype, self);
+ loc ptr;
if (!bindable(sym))
uw_throwf(error_s, lit("~a: ~s isn't a valid slot name"),
@@ -774,24 +775,24 @@ val static_slot_ensure(val stype, val sym, val newval, val no_error_p)
if (st->eqmslot == -1)
st->eqmslot = 0;
- {
- loc ptr = lookup_static_slot(stype, st, sym);
- if (!nullocp(ptr))
- return set(ptr, newval);
+ if (nullocp((ptr = lookup_static_slot(stype, st, sym)))) {
+ if (!memq(sym, st->slots)) {
+ st->stslot = coerce(val *, chk_manage_vec(coerce(mem_t *, st->stslot),
+ st->nstslots, st->nstslots + 1,
+ sizeof (val),
+ coerce(mem_t *, &newval)));
+ set(mkloc(st->slots, stype), append2(st->slots, cons(sym, nil)));
+ sethash(slot_hash, cons(sym, num_fast(st->id)),
+ num(st->nstslots++ + STATIC_SLOT_BASE));
+ } else {
+ if (!no_error_p)
+ uw_throwf(error_s, lit("~a: ~s is an instance slot of ~s"),
+ self, sym, stype, nao);
+ }
+ } else {
+ set(ptr, newval);
}
- if (!no_error_p && memq(sym, st->slots))
- uw_throwf(error_s, lit("~a: ~s is an instance slot of ~s"),
- self, sym, stype, nao);
-
- st->stslot = coerce(val *, chk_manage_vec(coerce(mem_t *, st->stslot),
- st->nstslots, st->nstslots + 1,
- sizeof (val),
- coerce(mem_t *, &newval)));
- set(mkloc(st->slots, stype), append2(st->slots, cons(sym, nil)));
- sethash(slot_hash, cons(sym, num_fast(st->id)),
- num(st->nstslots++ + STATIC_SLOT_BASE));
-
{
val iter;
for (iter = st->dvtypes; iter; iter = cdr(iter))