value_path will work fine for dependencies, identity_path not required
Matt S Trout [Sat, 17 Sep 2016 17:34:11 +0000 (17:34 +0000)]
lib/DX/Step/ResolveProposition.pm

index 9efd8b3..6292ba5 100644 (file)
@@ -25,7 +25,7 @@ has depends_on => (is => 'ro', required => 1, coerce => sub {
       my ($type, @path) = @$dep;
       push @exp, [
         $type,
-        map { ref() ? @{$_->identity_path or next DEP} : $_ } @path
+        map { ref() ? @{$_->value_path or next DEP} : $_ } @path
       ];
     }
     (@exp ? [ $on, @exp ] : ());