Tidy for release
[gitmo/Mouse.git] / lib / Mouse / Meta / Method / Accessor.pm
index 9c5b746..9b2d92b 100755 (executable)
@@ -94,8 +94,11 @@ sub _generate_accessor{
         }
         elsif(defined $constraint){
             $accessor .= "my \$tmp = $value;\n";
+            #XXX: The following 'defined and' check is for backward compatibility
+            $accessor .= "defined(\$tmp) and ";
+
             $accessor .= "\$compiled_type_constraint->(\$tmp)";
-            $accessor .= "or \$attribute->verify_type_constraint_error(\$name, \$tmp, \$constraint);\n";
+            $accessor .= " || \$attribute->verify_type_constraint_error(\$name, \$tmp, \$constraint);\n";
             $accessor .= "$slot = \$tmp;\n";
         }
         else{
@@ -184,3 +187,4 @@ sub _generate_delegation{
 
 
 1;
+__END__