Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^3: .vimrc for perl programmers

by mreece (Friar)
on Nov 01, 2006 at 17:11 UTC ( [id://581712]=note: print w/replies, xml ) Need Help??


in reply to Re^2: .vimrc for perl programmers
in thread .vimrc for perl programmers

can you provide an example where this (undocumented?) syntax makes a difference?

Replies are listed 'Best First'.
Re^4: .vimrc for perl programmers
by demerphq (Chancellor) on Nov 01, 2006 at 17:50 UTC

    Looks like its been superficially improved so there is no difference anymore, which is good. But the output is still wrong, which is bad. For $x=\$y; $y=\$x; the raw call to Data::Dumper->Dump([$x,$y]) used to produce:

    $VAR1 = [ \\$VAR1->[0], ${$VAR1->[0]} ];

    But now it produces what Data::Dumper::Dumper (and what the sub{\@_} trick does) produce:

    $VAR1 = \\$VAR1; $VAR2 = ${$VAR1};

    Wheras Data::Dump::Streamer::Dump produces the correct output:

    $REF1 = \$REF2; $REF2 = \$REF1;

    Hope that explains things.

    ---
    $world=~s/war/peace/g

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-20 13:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found