Subject: | 2 members with Type(list) |
Hi Jerry
We are quite fan of your Object::InsideOut module (In fact, I pushed
most of our dev team to use when it comes to the perl part of our projects).
Indeed, I discovered a little problem which is embarassing...
See OIMod.pm attached: if If have 2 member with :type(List)
I get a rather antipathetic message
CHECK failed--call queue aborted.
I tested on two machines:
macOSX perl 5.8.8
3.54 & 3.55
linux box perl 5.10.0
3.54
bon courage!
I had not the courage to dive into Object::InsideOut code in fact...
thanks a lot for your modules anyway
Alex
Subject: | OIMod.pm |
package OIMod;
use strict;
use warnings;
{
use Object::InsideOut ;
my @ref : Field : Type(list) : Accessor(ref);
my @pubmedIds : Field : Type(list) : Accessor(pubmedIds);
sub init : Init {
my ( $self, $args ) = @_;
}
}
1;
Subject: | oimod.pl |
use strict;
use warnings;
use OIMod;
warn "OK";