@Ghazascanner
_2019runbot
Ghazascanner File Manager
server :Linux hosjweb-prod3 6.12.0-107.59.3.2.el9uek.x86_64 #1 SMP PREEMPT_DYNAMIC Mon Dec 22 10:16:59 PST 2025 x86_64
Current Path :
/
usr
/
local
/
lib
/
perl5
/
5.8.7
/
Test
/
Deep
/
Path :
Upload File :
New :
File
Dir
//usr/local/lib/perl5/5.8.7/Test/Deep/ScalarRefOnly.pm
use strict; use warnings; package Test::Deep::ScalarRefOnly; use Test::Deep::Cmp; sub init { my $self = shift; my $val = shift; $self->{val} = $val; } sub descend { my $self = shift; my $got = shift; my $exp = $self->{val}; return Test::Deep::descend($$got, $$exp); } sub render_stack { my $self = shift; my ($var, $data) = @_; return "\${$var}"; } 1;