Subject: | Bug with @key? |
Running
% perl -MTPath::Forester::Ref -MData::Dump -E'
my $data=[0, 1, [], [30, 31, []], {}, {a=>50, b=>51, c=>[], d=>{}}, undef];
dd tfr->path(q{.//@key})->dsel($data)'
gives
("50", "51", [], {})
which looks like hash values. Shouldn't it be
("a", "b", "c", "d")
? Or did I misread the documentation?
Regards,
Steven