Subject: | Duplicate property name |
The regexp that match if a property is already registered is /$label/
(line 225 in lib/Class/InsideOut.pm) but this match when I have two
properties like name and filename, because /$label/ matches the
file(name). The correct regexp should be /^$label$/.