Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Getting back $object from eval(Dumper($object))

by broquaint (Abbot)
on Jul 27, 2005 at 08:56 UTC ( [id://478514]=note: print w/replies, xml ) Need Help??


in reply to Getting back $object from eval(Dumper($object))

Turn on $Data::Dumper::Terse and only use eval STRING as eval BLOCK is not what you want e.g
use warnings; use strict; use Data::Dumper; use Test::More qw(no_plan); package Foo; sub new {bless {'a' => 1}, $_[0]}; package main; my $foo = Foo->new(); my $foo_dumped_evaled; $Data::Dumper::Terse = 1; $foo_dumped_evaled = eval(Dumper($foo)); isa_ok($foo_dumped_evaled,'Foo'); #fails $foo_dumped_evaled = eval{Dumper($foo)}; isa_ok($foo_dumped_evaled,'Foo'); #fails print Dumper($foo); __output__ ok 1 - The object isa Foo not ok 2 - The object isa Foo # Failed test (pmsopw_478513.pl at line 19) # The object isn't a reference bless( { 'a' => 1 }, 'Foo' ) 1..2 # Looks like you failed 1 test of 2.
HTH

_________
broquaint

Replies are listed 'Best First'.
Re^2: Getting back $object from eval(Dumper($object))
by tphyahoo (Vicar) on Jul 27, 2005 at 09:03 UTC

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://478514]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (1)
As of 2024-04-25 01:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found