ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Devel-FindRef/FindRef.pm
(Generate patch)

Comparing Devel-FindRef/FindRef.pm (file contents):
Revision 1.19 by root, Mon Dec 1 13:47:09 2008 UTC vs.
Revision 1.20 by root, Sat Dec 6 12:42:49 2008 UTC

88It is a bit convoluted to read, but basically it says that the value 88It is a bit convoluted to read, but basically it says that the value
89stored in C<$var> is referenced by: 89stored in C<$var> is referenced by:
90 90
91=over 4 91=over 4
92 92
93=item - in the lexical C<$closure_var> (0x8abcc8), which is inside an instantiated 93=item - the lexical C<$closure_var> (0x8abcc8), which is inside an instantiated
94closure, which in turn is used quite a bit. 94closure, which in turn is used quite a bit.
95 95
96=item - in the package-level lexical C<$global_my>. 96=item - the package-level lexical C<$global_my>.
97 97
98=item - in the global package variable named C<$Test::var>. 98=item - the global package variable named C<$Test::var>.
99 99
100=item - in the hash element C<ukukey2>, in the hash in the my variable 100=item - the hash element C<ukukey2>, in the hash in the my variable
101C<$testsub_local> in the sub C<Test::testsub> and also in the hash 101C<$testsub_local> in the sub C<Test::testsub> and also in the hash
102C<$referenced by Test::hash2>. 102C<$referenced by Test::hash2>.
103 103
104=item - in the hash element with key C<ukukey> in the hash stored in 104=item - the hash element with key C<ukukey> in the hash stored in
105C<%Test::hash>. 105C<%Test::hash>.
106 106
107=item - some anonymous mortalised reference on the stack (which is caused 107=item - some anonymous mortalised reference on the stack (which is caused
108by calling C<track> with the expression C<\$var>, which creates the 108by calling C<track> with the expression C<\$var>, which creates the
109reference). 109reference).

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines