From: gfx Date: Wed, 19 Aug 2009 10:34:41 +0000 (+0900) Subject: Clearify the role of "value" in moose_attr_get X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7eeae6c901c299c079d280c6e93ec512a57b04bc;p=gitmo%2FMoose.git Clearify the role of "value" in moose_attr_get --- diff --git a/xs/moose_accessor.c b/xs/moose_accessor.c index a1229a2..ab80d4b 100644 --- a/xs/moose_accessor.c +++ b/xs/moose_accessor.c @@ -275,10 +275,10 @@ moose_attr_get(pTHX_ SV* const self, MAGIC* const mg){ AV* const meta = MOP_mg_meta(mg); U16 const flags = mg->mg_private; SV* const key = MA_key(meta); - SV* value = NULL; /* check_lazy */ if( flags & MAf_ATTR_IS_LAZY && !(MOP_mg_vtbl(mg)->has_slot(aTHX_ self, key)) ){ + SV* value = NULL; SV* const attr = MA_attribute(meta); /* get default value by $attr->default or $attr->builder */ if(flags & MAf_ATTR_HAS_DEFAULT){ @@ -328,10 +328,7 @@ moose_attr_get(pTHX_ SV* const self, MAGIC* const mg){ } } - /* get slot value */ - value = MOP_mg_vtbl(mg)->get_slot(aTHX_ self, key); - - moose_push_values(aTHX_ meta, value, flags); + moose_push_values(aTHX_ meta, MOP_mg_vtbl(mg)->get_slot(aTHX_ self, key), flags); } static void